misc/migration/3.15.0_Any.py
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 25 Sep 2014 17:38:51 +0200
changeset 9991 3e7f1e9f3adc
parent 8483 4ba11607d84a
permissions -rw-r--r--
[devtools] allow cross-origin requests for qunit We have a mix of file:// html and http:// ajax calls. Which we should at some point fix to all be http, but. Related to #4294727.

sync_schema_props_perms('EmailAddress')

for source in rql('CWSource X WHERE X type "ldapuser"').entities():
    config = source.dictconfig
    host = config.pop('host', u'ldap')
    protocol = config.pop('protocol', u'ldap')
    source.cw_set(url=u'%s://%s' % (protocol, host))
    source.update_config(skip_unknown=True, **config)

commit()