summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Make boolean options work like standard OptionParser booleansRob Crittenden2008-10-211-1/+6
| | |
* | | Added MANIFEST.in; setup.py now includes kid templates in package_dataJason Gerard DeRose2008-10-222-2/+8
| |/ |/|
* | Added a very basic setup.py using distutilsJason Gerard DeRose2008-10-211-0/+39
| |
* | Merge branch 'master' of ↵Jason Gerard DeRose2008-10-216-35/+235
|\ \ | |/ |/| | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Implement group member add/removeRob Crittenden2008-10-213-22/+193
| | | | | | | | 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-203-1/+89
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Framework for doing password changesRob Crittenden2008-10-203-1/+89
| | | | | | | | 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-202-1/+12
|/ | | | 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-202-2/+57
|
* Put Rob's name at top Author in b_ldap.py as he has written most of itJason Gerard DeRose2008-10-181-0/+1
|
* 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-172-24/+41
|
* Changed ldap.dn class attribute (on backend plugin) to an instance attribute ↵Jason Gerard DeRose2008-10-171-2/+3
| | | | so epydoc doesn't document it
* 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-174-65/+36
|
* Added new Param.flags attribute (set with flags=foo kwarg)Jason Gerard DeRose2008-10-172-0/+6
|
* Cleaned up ipalib package-level docstring, removed broken cross-referce toJason Gerard DeRose2008-10-171-5/+3
|
* Fixed unit test for CrudBacked.retrieve()Jason Gerard DeRose2008-10-171-1/+1
|
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-171-15/+5
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Remove local references to things that are now in api.envRob Crittenden2008-10-171-15/+5
| |
* | Reworking Environment, moved it to config.pyMartin Nagy2008-10-178-224/+278
|/
* Port f_service to LDAP backendRob Crittenden2008-10-174-49/+113
| | | | | Add new keyword, 'filter', that can be passed to the search function. This is globbed onto the filter that is auto-created.
* Some xml-rpc server code cleanup. Make system.* functions to work with pluginsRob Crittenden2008-10-171-74/+34
|
* Add mod_python-based XML-RPC server.Rob Crittenden2008-10-163-4/+444
| | | | | 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-164-19/+51
| | | | 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-162-36/+44
|
* Port group-add to use LDAP backendRob Crittenden2008-10-152-32/+42
| | | | 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-152-13/+4
|
* Initial implementation of a generic search routine.Rob Crittenden2008-10-153-87/+92
|
* Resolved conficts in Rob's mergeJason Gerard DeRose2008-10-155-47/+122
|\
| * Port user-mod to use ldap update() methodRob Crittenden2008-10-152-20/+33
| |
| * 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-145-19/+63
| |
| * Move some functionality from user-add to the backend ldap create functionRob Crittenden2008-10-145-71/+63
| |
* | Added GPL v2 in LICENSE fileJason Gerard DeRose2008-10-141-0/+339
| |