misc/migration/3.15.0_Any.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 06 May 2013 16:05:51 +0200
changeset 8972 771337c3a754
parent 8483 4ba11607d84a
permissions -rw-r--r--
[testlib] update htmlparsers.VALMAP: stop using SaxOnlyValidator and add an entry for html

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