Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Backend.xmlrpc and simple-server.py now use the xmlrpc_marshal() and ↵ | Jason Gerard DeRose | 2008-10-02 | 4 | -11/+22 |
| | | | | xmlrpc_unmarshal() functions respectively | ||||
* | Added ipalib/util.py with xmlrpc_marshal() and xmlrpc_unmarshal() functions; ↵ | Jason Gerard DeRose | 2008-10-02 | 2 | -0/+90 |
| | | | | added corresponding unit tests | ||||
* | Added docstring to simple-server.py | Jason Gerard DeRose | 2008-10-02 | 1 | -0/+6 |
| | |||||
* | -m | Jason Gerard DeRose | 2008-10-02 | 1 | -1/+0 |
| | |||||
* | Command.get_default() now only returns a defaults for required values | Jason Gerard DeRose | 2008-10-02 | 1 | -1/+1 |
| | |||||
* | Environment is now subclassed from object, rather then dict. Added tests for ↵ | Martin Nagy | 2008-10-02 | 8 | -51/+152 |
| | | | | Environment and config.py | ||||
* | Implemented basic Command.forward() method | Jason Gerard DeRose | 2008-10-02 | 3 | -18/+18 |
| | |||||
* | Started on skeleton for xmlrcp client/server | Jason Gerard DeRose | 2008-10-02 | 2 | -0/+85 |
| | |||||
* | Clarified docstrings in */plugins/__init__.py; renamed ↵ | Jason Gerard DeRose | 2008-10-01 | 3 | -3/+7 |
| | | | | ipa_server/plugins/ipa_ldap.py to b_ldap.py | ||||
* | Removed the everything except the envtest command and the user related ↵ | Jason Gerard DeRose | 2008-10-01 | 1 | -107/+28 |
| | | | | plugins from f_user.py | ||||
* | Renamed plugins/example.py to plugins/f_user.py | Jason Gerard DeRose | 2008-10-01 | 1 | -0/+0 |
| | |||||
* | Removed depreciated override.py module | Jason Gerard DeRose | 2008-10-01 | 1 | -33/+0 |
| | |||||
* | Added skeleton for kerberos backend | Jason Gerard DeRose | 2008-10-01 | 2 | -0/+47 |
| | |||||
* | Fixed unit tests; changed example.py so it doesn't import servercore | Jason Gerard DeRose | 2008-09-30 | 3 | -5/+3 |
| | |||||
* | Migrate to new source tree layoute | Rob Crittenden | 2008-09-30 | 6 | -18/+50 |
| | |||||
* | Rebase XML-RPC client and server | Rob Crittenden | 2008-09-30 | 4 | -17/+62 |
| | | | | Fix error handling in server to return exceptions generated in library code | ||||
* | Add support for environment variables, change tests accordingly | Martin Nagy | 2008-09-29 | 9 | -13/+148 |
| | |||||
* | 373: Replaced type_ optional arg to Param.__init__() with pure kw arg type; ↵ | Jason Gerard DeRose | 2008-09-27 | 2 | -27/+27 |
| | | | | updated unit tests and related code | ||||
* | 372: Started work on docstring for Param class | Jason Gerard DeRose | 2008-09-27 | 1 | -2/+15 |
| | |||||
* | 371: Added examples to parse_param_spec() docstring and changed syntax guide ↵ | Jason Gerard DeRose | 2008-09-26 | 1 | -4/+19 |
| | | | | into a reStructuredText table | ||||
* | 370: Added detailed examples to decstring for DefaultFrom class | Jason Gerard DeRose | 2008-09-26 | 1 | -10/+66 |
| | |||||
* | 369: Added Object.backend attribute used to associated it with a particular ↵ | Jason Gerard DeRose | 2008-09-26 | 2 | -7/+43 |
| | | | | backend component | ||||
* | 368: Added place holder ipa_server/plugins subpackage | Jason Gerard DeRose | 2008-09-26 | 2 | -0/+45 |
| | |||||
* | 367: Implementing basics of loading plugins out of tree | Jason Gerard DeRose | 2008-09-25 | 2 | -4/+44 |
| | |||||
* | 366: Ported user_* example Commands to crud base classes; added user_show ↵ | Jason Gerard DeRose | 2008-09-25 | 1 | -4/+9 |
| | | | | example command | ||||
* | 365: Implemented find.get_args(), find.get_options(); added corresponding ↵ | Jason Gerard DeRose | 2008-09-25 | 2 | -2/+22 |
| | | | | unit tests | ||||
* | 364: Implemented Mod.get_args, Mod.get_options(); added corresponding unit tests | Jason Gerard DeRose | 2008-09-25 | 2 | -2/+25 |
| | |||||
* | 363: Added Object.params_minus_pk instance attribute | Jason Gerard DeRose | 2008-09-25 | 2 | -0/+10 |
| | |||||
* | 362: Implemented Get.get_args() and Del.get_args(); added corresponding unit ↵ | Jason Gerard DeRose | 2008-09-25 | 2 | -5/+30 |
| | | | | tests | ||||
* | 361: Implemented crud.Add.get_options() method; added corresponding unit tests | Jason Gerard DeRose | 2008-09-25 | 4 | -5/+37 |
| | |||||
* | 360: Removed Method.get_options() default implementation; cleaned up unit ↵ | Jason Gerard DeRose | 2008-09-25 | 2 | -31/+12 |
| | | | | tests for Method | ||||
* | 359: Added Object.primary_key instance attribute; added corresponding unit tests | Jason Gerard DeRose | 2008-09-25 | 2 | -0/+63 |
| | |||||
* | 358: Cleaned up private methods in Object | Jason Gerard DeRose | 2008-09-25 | 1 | -8/+9 |
| | |||||
* | 357: Some experimenting with the example plugins | Jason Gerard DeRose | 2008-09-25 | 1 | -10/+20 |
| | |||||
* | 356: Modified Method.get_options() to now pull from self.obj.params(); ↵ | Jason Gerard DeRose | 2008-09-25 | 3 | -55/+47 |
| | | | | updated unit tests for Method.get_options() | ||||
* | 355: Object.set_api() now creates Object.params namespace by merging ↵ | Jason Gerard DeRose | 2008-09-25 | 2 | -10/+19 |
| | | | | takes_params and properties together intelegintly | ||||
* | 354: Added NameSpace.__todict__() method that returns copy of ↵ | Jason Gerard DeRose | 2008-09-24 | 3 | -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 DeRose | 2008-09-24 | 2 | -14/+17 |
| | | | | instead of in Object.__init__() | ||||
* | 352: Now removed Object.Property property and added in its place ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -16/+13 |
| | | | | Object.properties instance attribute | ||||
* | 351: Removed Object.Method property and added in its place Object.methods ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -11/+7 |
| | | | | instance attribute | ||||
* | 350: If Param default_from kwarg is callable but not a DefaltFrom instances, ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -4/+12 |
| | | | | the instance is created implicity | ||||
* | 349: Improved clarity of local variables in Param.__init__() | Jason Gerard DeRose | 2008-09-24 | 1 | -10/+10 |
| | |||||
* | 348: If no keys are passed to DefaultFrom.__init__(), the keys from ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -8/+19 |
| | | | | callback.func_code.co_varnames are used; updated DefaultFrom unit tests to test this usage | ||||
* | 347: Added primary_key instance attribute to Param and corresponding kwarg; ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -4/+24 |
| | | | | expanded unit tests for Param.__init__() | ||||
* | 346: Added skeleton framework for crud.py module and corresponding ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -0/+124 |
| | | | | test_crud.py module | ||||
* | 345: Moved server code from Rob into ipa_server/ package | Jason Gerard DeRose | 2008-09-24 | 4 | -0/+0 |
| | |||||
* | 344: Added Param.__clone__() method; added corresponding unit tests | Jason Gerard DeRose | 2008-09-24 | 2 | -3/+44 |
| | |||||
* | 343: create_param() function no longer parses the param spec itself but ↵ | Jason Gerard DeRose | 2008-09-24 | 1 | -22/+4 |
| | | | | relies on Param.__init__() to do it | ||||
* | 342: Added unit test that TypeError is raised when Param() is created with ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -1/+6 |
| | | | | extra kw args | ||||
* | 341: Param now only takes type_=ipa_types.Unicode() as an optional ↵ | Jason Gerard DeRose | 2008-09-24 | 2 | -17/+48 |
| | | | | positional arg, and the rest as pure kwargs |