misc/migration/3.15.0_Any.py
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 14 Feb 2013 15:21:23 +0100
changeset 8692 40d4ba3589be
parent 8483 4ba11607d84a
permissions -rw-r--r--
devtools: improve qunit timeout message Make the message clearer, shorter and properly wrapped.

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()