[adapters] Use an adapter for serializing entities to a bare python structure
which may be used for e.g. JSON export or other and allow to have different
serializations for each entity types.
Closes #6378035
from__future__importprint_functionfromlogilab.common.shellutilsimportgenerate_passwordfromcubicweb.server.utilsimportcrypt_passwordforuserinrql('CWUser U WHERE U cw_source S, S name "system", U upassword P, U login L').entities():salt=user.upassword.getvalue()ifcrypt_password('',salt)==salt:passwd=generate_password()print('setting random password for user %s'%user.login)user.set_attributes(upassword=passwd)commit()