summaryrefslogtreecommitdiffstats
path: root/ipalib
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-214-15/+191
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Implement group member add/removeRob Crittenden2008-10-211-2/+149
| | | | | | | | Add gidNumber to the group command-line
| * Don't import servercoreRob Crittenden2008-10-211-3/+0
| |
| * Update the command-line options to more closely match v1Rob Crittenden2008-10-211-6/+24
| |
| * Gracefully handle keyboard interrupts (^C)Rob Crittenden2008-10-211-1/+4
| |
| * Implement --all option to display all attributes.Rob Crittenden2008-10-211-2/+8
| | | | | | | | Still need to strip the dn when not doing all.
| * Make boolean options work like standard OptionParser booleansRob Crittenden2008-10-211-1/+6
| |
* | In second example in NameSpace docstring, renamed 'member' class to 'Member' ↵Jason Gerard DeRose2008-10-211-4/+4
| | | | | | | | to make the example clearer
* | Fixed typos in tables in docstrings for Attribute and MethodJason Gerard DeRose2008-10-211-8/+8
|/
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-201-0/+82
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Framework for doing password changesRob Crittenden2008-10-201-0/+82
| | | | | | | | Need mechanism to prompt for new password twice and verify they are the same
* | Added docstring (with example) to frontend.Attribute classJason Gerard DeRose2008-10-201-0/+34
| |
* | Added docstring (with examples) to frontend.Method classJason Gerard DeRose2008-10-201-0/+62
| |
* | Reworked 'plugins' command to use output_for_cli()Jason Gerard DeRose2008-10-201-8/+11
| |
* | Fixed bug in DefaultFrom where impleied keys were using entire ↵Jason Gerard DeRose2008-10-201-1/+2
|/ | | | func_code.co_varnames instead of an approprate slice
* Port pwpolicy plugin to use b_ldapRob Crittenden2008-10-202-42/+79
| | | | Add basic output_for_cli() function to user-show
* Add comments in config.py and fix Environment.get()Martin Nagy2008-10-201-2/+52
|
* Some PEP-257 and reStructuredText cleanup in plugable.pyJason Gerard DeRose2008-10-181-37/+52
|
* Added some more examples to Param docstringsJason Gerard DeRose2008-10-181-1/+23
|
* Some PEP-257 and reStructuredText fixes in ipalib/aci.py, ipa_server/ipaldap.pyJason Gerard DeRose2008-10-171-7/+16
|
* Reworked load_plugins so it doesn't use imp.load_module() to load from the ↵Jason Gerard DeRose2008-10-171-14/+23
| | | | plugins/ sub-packages, which previously caused them to be loaded multiple times when runnig the doctests
* Removed generic Command.output_for_cli() method; CLI.run_interactive() now ↵Jason Gerard DeRose2008-10-172-9/+4
| | | | only calls output_for_cli() if it has been implemented
* make-test now runs doctests also; fixed several broken doctestsJason Gerard DeRose2008-10-173-64/+35
|
* Added new Param.flags attribute (set with flags=foo kwarg)Jason Gerard DeRose2008-10-171-0/+3
|
* Cleaned up ipalib package-level docstring, removed broken cross-referce toJason Gerard DeRose2008-10-171-5/+3
|
* Reworking Environment, moved it to config.pyMartin Nagy2008-10-173-129/+179
|
* Port f_service to LDAP backendRob Crittenden2008-10-173-47/+94
| | | | | Add new keyword, 'filter', that can be passed to the search function. This is globbed onto the filter that is auto-created.
* Add mod_python-based XML-RPC server.Rob Crittenden2008-10-162-4/+45
| | | | | Use -e kerberos on the command-line to use the mod_python server, otherwise it defaults to use the simple-server URL.
* Use the search fields from the configuration when searchingRob Crittenden2008-10-162-9/+31
| | | | Generalize the attribute -> objectclass search helper
* Remove references to ipa_server.* and port group plugin to ldap backendRob Crittenden2008-10-161-59/+85
|
* Remove all references to ipa_server.* from user pluginRob Crittenden2008-10-161-34/+30
|
* Port group-add to use LDAP backendRob Crittenden2008-10-151-30/+27
| | | | Have create and update return the record that was just added/modified
* Fix some remaining merge issues and don't use forward() in user-*lock()Rob Crittenden2008-10-151-8/+4
|
* Initial implementation of a generic search routine.Rob Crittenden2008-10-151-5/+4
|
* Resolved conficts in Rob's mergeJason Gerard DeRose2008-10-154-45/+72
|\
| * Port user-mod to use ldap update() methodRob Crittenden2008-10-151-17/+21
| |
| * Add missing * to *kw to make it pass named arguments instead of positionalRob Crittenden2008-10-151-2/+2
| |
| * Port user_del to CrudBackendRob Crittenden2008-10-141-10/+22
| | | | | | | | Override output_for_cli() to generate nicer output
| * Port user-show to new CrudBackend frameworkRob Crittenden2008-10-144-17/+27
| |
| * Move some functionality from user-add to the backend ldap create functionRob Crittenden2008-10-141-50/+23
| |
* | Merge branch 'master' of ↵Jason Gerard DeRose2008-10-141-50/+23
|\ \ | |/ |/| | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Move some functionality from user-add to the backend ldap create functionRob Crittenden2008-10-141-50/+23
| |
* | Convert string values to boolean when generating environmentMartin Nagy2008-10-142-10/+29
|/
* More work on making user-add use Backend.ldapJason Gerard DeRose2008-10-141-18/+24
|
* Started roughing out user_add() using api.Backend.ldap; added ↵Jason Gerard DeRose2008-10-143-10/+29
| | | | Command.output_for_cli() to take care of formatting print output
* Some small cleanup on Environment, filled in docstringsJason Gerard DeRose2008-10-141-10/+32
|
* Added ldap.get_user_dn() methodJason Gerard DeRose2008-10-141-1/+3
|
* Added Object.get_dn() method; added corresponding unit testsJason Gerard DeRose2008-10-131-0/+7
|
* CLI.run_interactive() now uses Param.cli_name instead of Param.name for ↵Jason Gerard DeRose2008-10-131-3/+3
| | | | prompts and errors
* Command.params are now sorted the same way as Object.params (make user-add ↵Jason Gerard DeRose2008-10-131-1/+8
| | | | prompt for first, last before login)