summaryrefslogtreecommitdiffstats
path: root/ipalib
Commit message (Collapse)AuthorAgeFilesLines
* Moved ipalib/tests/ into tests/test_ipalib/Jason Gerard DeRose2008-10-0712-3431/+0
|
* Made package-level docstrings more consistent so they read better in ↵Jason Gerard DeRose2008-10-073-4/+5
| | | | generated documentation
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-073-8/+270
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Implement a real user_find and move existing user_find to user_showRob Crittenden2008-10-071-4/+22
| |
| * Implement user-modRob Crittenden2008-10-071-1/+20
| |
| * Add some more supporting functionsRob Crittenden2008-10-073-6/+19
| | | | | | | | Do a little bit more error handling and checking
| * Add group plugin, routine to get cn=ipaconfigRob Crittenden2008-10-042-13/+145
| |
| * Implement user-find and user-add backend functions so they work over XML-RPCRob Crittenden2008-10-042-7/+87
| | | | | | | | | | Change port to 8880 to not conflict with a running IPA v1 instance Encode incoming values from unicode as utf-8 before sending to LDAP
* | Add tests for config.pyMartin Nagy2008-10-081-0/+101
| |
* | Implement argument parsing for the CLIMartin Nagy2008-10-082-11/+58
| |
* | Implement config file readingMartin Nagy2008-10-083-9/+31
|/
* Backend.xmlrpc and simple-server.py now use the xmlrpc_marshal() and ↵Jason Gerard DeRose2008-10-023-4/+16
| | | | xmlrpc_unmarshal() functions respectively
* Added ipalib/util.py with xmlrpc_marshal() and xmlrpc_unmarshal() functions; ↵Jason Gerard DeRose2008-10-022-0/+90
| | | | added corresponding unit tests
* -mJason Gerard DeRose2008-10-021-1/+0
|
* Command.get_default() now only returns a defaults for required valuesJason Gerard DeRose2008-10-021-1/+1
|
* Environment is now subclassed from object, rather then dict. Added tests for ↵Martin Nagy2008-10-028-51/+152
| | | | Environment and config.py
* Implemented basic Command.forward() methodJason Gerard DeRose2008-10-022-7/+7
|
* Started on skeleton for xmlrcp client/serverJason Gerard DeRose2008-10-021-0/+39
|
* Clarified docstrings in */plugins/__init__.py; renamed ↵Jason Gerard DeRose2008-10-011-1/+4
| | | | ipa_server/plugins/ipa_ldap.py to b_ldap.py
* Removed the everything except the envtest command and the user related ↵Jason Gerard DeRose2008-10-011-107/+28
| | | | plugins from f_user.py
* Renamed plugins/example.py to plugins/f_user.pyJason Gerard DeRose2008-10-011-0/+0
|
* Removed depreciated override.py moduleJason Gerard DeRose2008-10-011-33/+0
|
* Added skeleton for kerberos backendJason Gerard DeRose2008-10-011-0/+34
|
* Fixed unit tests; changed example.py so it doesn't import servercoreJason Gerard DeRose2008-09-303-5/+3
|
* Migrate to new source tree layouteRob Crittenden2008-09-301-2/+1
|
* Rebase XML-RPC client and serverRob Crittenden2008-09-302-2/+13
| | | | Fix error handling in server to return exceptions generated in library code
* Add support for environment variables, change tests accordinglyMartin Nagy2008-09-299-13/+148
|
* 373: Replaced type_ optional arg to Param.__init__() with pure kw arg type; ↵Jason Gerard DeRose2008-09-272-27/+27
| | | | updated unit tests and related code
* 372: Started work on docstring for Param classJason Gerard DeRose2008-09-271-2/+15
|
* 371: Added examples to parse_param_spec() docstring and changed syntax guide ↵Jason Gerard DeRose2008-09-261-4/+19
| | | | into a reStructuredText table
* 370: Added detailed examples to decstring for DefaultFrom classJason Gerard DeRose2008-09-261-10/+66
|
* 369: Added Object.backend attribute used to associated it with a particular ↵Jason Gerard DeRose2008-09-262-7/+43
| | | | backend component
* 367: Implementing basics of loading plugins out of treeJason Gerard DeRose2008-09-252-4/+44
|
* 366: Ported user_* example Commands to crud base classes; added user_show ↵Jason Gerard DeRose2008-09-251-4/+9
| | | | example command
* 365: Implemented find.get_args(), find.get_options(); added corresponding ↵Jason Gerard DeRose2008-09-252-2/+22
| | | | unit tests
* 364: Implemented Mod.get_args, Mod.get_options(); added corresponding unit testsJason Gerard DeRose2008-09-252-2/+25
|
* 363: Added Object.params_minus_pk instance attributeJason Gerard DeRose2008-09-252-0/+10
|
* 362: Implemented Get.get_args() and Del.get_args(); added corresponding unit ↵Jason Gerard DeRose2008-09-252-5/+30
| | | | tests
* 361: Implemented crud.Add.get_options() method; added corresponding unit testsJason Gerard DeRose2008-09-254-5/+37
|
* 360: Removed Method.get_options() default implementation; cleaned up unit ↵Jason Gerard DeRose2008-09-252-31/+12
| | | | tests for Method
* 359: Added Object.primary_key instance attribute; added corresponding unit testsJason Gerard DeRose2008-09-252-0/+63
|
* 358: Cleaned up private methods in ObjectJason Gerard DeRose2008-09-251-8/+9
|
* 357: Some experimenting with the example pluginsJason Gerard DeRose2008-09-251-10/+20
|
* 356: Modified Method.get_options() to now pull from self.obj.params(); ↵Jason Gerard DeRose2008-09-253-55/+47
| | | | updated unit tests for Method.get_options()
* 355: Object.set_api() now creates Object.params namespace by merging ↵Jason Gerard DeRose2008-09-252-10/+19
| | | | takes_params and properties together intelegintly
* 354: Added NameSpace.__todict__() method that returns copy of ↵Jason Gerard DeRose2008-09-243-8/+20
| | | | NameSpace.__map; updated NameSpace unit test to also test __todict__()
* 353: The Object.parms instance attribute is now created in Object.set_api() ↵Jason Gerard DeRose2008-09-242-14/+17
| | | | instead of in Object.__init__()
* 352: Now removed Object.Property property and added in its place ↵Jason Gerard DeRose2008-09-242-16/+13
| | | | Object.properties instance attribute
* 351: Removed Object.Method property and added in its place Object.methods ↵Jason Gerard DeRose2008-09-242-11/+7
| | | | instance attribute
* 350: If Param default_from kwarg is callable but not a DefaltFrom instances, ↵Jason Gerard DeRose2008-09-242-4/+12
| | | | the instance is created implicity