Browse Source

Merge pull request #45 from dreispt/port-users-ldap-populate

Port users ldap populate
pull/69/head
Sandy 10 years ago
parent
commit
ae8b0afa10
  1. 2
      __unported__/users_ldap_populate/model/__init__.py
  2. 0
      users_ldap_populate/__init__.py
  3. 11
      users_ldap_populate/__openerp__.py
  4. 0
      users_ldap_populate/i18n/nl.po
  5. 0
      users_ldap_populate/i18n/users_ldap_populate.pot
  6. 2
      users_ldap_populate/model/__init__.py
  7. 2
      users_ldap_populate/model/populate_wizard.py
  8. 0
      users_ldap_populate/model/users_ldap.py
  9. 4
      users_ldap_populate/view/populate_wizard.xml
  10. 1
      users_ldap_populate/view/users_ldap.xml

2
__unported__/users_ldap_populate/model/__init__.py

@ -1,2 +0,0 @@
import users_ldap
import populate_wizard

0
__unported__/users_ldap_populate/__init__.py → users_ldap_populate/__init__.py

11
__unported__/users_ldap_populate/__openerp__.py → users_ldap_populate/__openerp__.py

@ -24,8 +24,8 @@
"author": "Therp BV", "author": "Therp BV",
"category": 'Tools', "category": 'Tools',
"description": """ "description": """
This module allows to prepopulate the user database with all entries in the LDAP
database.
This module allows to prepopulate the user database with all entries in the
LDAP database.
In order to schedule the population of the user database on a regular basis, In order to schedule the population of the user database on a regular basis,
create a new scheduled action with the following properties: create a new scheduled action with the following properties:
@ -34,8 +34,8 @@ create a new scheduled action with the following properties:
- Function: action_populate - Function: action_populate
- Arguments: [res.company.ldap.id] - Arguments: [res.company.ldap.id]
Substitute res.company.ldap.id with the actual id of the res.company.ldap object you want to query.
Substitute res.company.ldap.id with the actual id of the res.company.ldap
object you want to query.
""", """,
"depends": [ "depends": [
'auth_ldap', 'auth_ldap',
@ -44,6 +44,5 @@ Substitute res.company.ldap.id with the actual id of the res.company.ldap object
'view/users_ldap.xml', 'view/users_ldap.xml',
'view/populate_wizard.xml', 'view/populate_wizard.xml',
], ],
'installable': False,
'installable': True,
} }
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

0
__unported__/users_ldap_populate/i18n/nl.po → users_ldap_populate/i18n/nl.po

0
__unported__/users_ldap_populate/i18n/users_ldap_populate.pot → users_ldap_populate/i18n/users_ldap_populate.pot

2
users_ldap_populate/model/__init__.py

@ -0,0 +1,2 @@
from . import users_ldap
from . import populate_wizard

2
__unported__/users_ldap_populate/model/populate_wizard.py → users_ldap_populate/model/populate_wizard.py

@ -19,7 +19,7 @@
# #
############################################################################## ##############################################################################
from osv import orm, fields
from openerp.osv import orm, fields
class CompanyLDAPPopulateWizard(orm.TransientModel): class CompanyLDAPPopulateWizard(orm.TransientModel):

0
__unported__/users_ldap_populate/model/users_ldap.py → users_ldap_populate/model/users_ldap.py

4
__unported__/users_ldap_populate/view/populate_wizard.xml → users_ldap_populate/view/populate_wizard.xml

@ -5,8 +5,8 @@
<field name="name">Add populate button to ldap view</field> <field name="name">Add populate button to ldap view</field>
<field name="model">res.company.ldap.populate_wizard</field> <field name="model">res.company.ldap.populate_wizard</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Add populate button to ldap view" version="7.0">
<group col="4">
<form string="Add populate button to ldap view">
<group>
<field name="users_created"/> <field name="users_created"/>
<button icon="gtk-ok" string="OK" special="cancel"/> <button icon="gtk-ok" string="OK" special="cancel"/>
</group> </group>

1
__unported__/users_ldap_populate/view/users_ldap.xml → users_ldap_populate/view/users_ldap.xml

@ -17,4 +17,3 @@
</record> </record>
</data> </data>
</openerp> </openerp>
Loading…
Cancel
Save