| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 tes... | Jason Gerard DeRose | 2008-09-25 | 2 | -31/+12 |
* | 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(); update... | Jason Gerard DeRose | 2008-09-25 | 3 | -55/+47 |
* | 355: Object.set_api() now creates Object.params namespace by merging takes_pa... | Jason Gerard DeRose | 2008-09-25 | 2 | -10/+19 |
* | 354: Added NameSpace.__todict__() method that returns copy of NameSpace.__map... | Jason Gerard DeRose | 2008-09-24 | 3 | -8/+20 |
* | 353: The Object.parms instance attribute is now created in Object.set_api() i... | Jason Gerard DeRose | 2008-09-24 | 2 | -14/+17 |
* | 352: Now removed Object.Property property and added in its place Object.prope... | Jason Gerard DeRose | 2008-09-24 | 2 | -16/+13 |
* | 351: Removed Object.Method property and added in its place Object.methods ins... | Jason Gerard DeRose | 2008-09-24 | 2 | -11/+7 |
* | 350: If Param default_from kwarg is callable but not a DefaltFrom instances, ... | Jason Gerard DeRose | 2008-09-24 | 2 | -4/+12 |
* | 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 callback.... | Jason Gerard DeRose | 2008-09-24 | 2 | -8/+19 |
* | 347: Added primary_key instance attribute to Param and corresponding kwarg; e... | Jason Gerard DeRose | 2008-09-24 | 2 | -4/+24 |
* | 346: Added skeleton framework for crud.py module and corresponding test_crud.... | Jason Gerard DeRose | 2008-09-24 | 2 | -0/+124 |
* | 345: Moved server code from Rob into ipa_server/ package | Jason Gerard DeRose | 2008-09-24 | 4 | -1037/+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 relie... | Jason Gerard DeRose | 2008-09-24 | 1 | -22/+4 |
* | 342: Added unit test that TypeError is raised when Param() is created with ex... | Jason Gerard DeRose | 2008-09-24 | 2 | -1/+6 |
* | 341: Param now only takes type_=ipa_types.Unicode() as an optional positional... | Jason Gerard DeRose | 2008-09-24 | 2 | -17/+48 |
* | 340: Changed default for Param.required to True | Jason Gerard DeRose | 2008-09-24 | 2 | -2/+12 |
* | 339: Added parse_param_spec() function and corresponding unit tests | Jason Gerard DeRose | 2008-09-24 | 2 | -0/+44 |
* | 337: Some cleanup in Params; added docstrings for most all Param methods | Jason Gerard DeRose | 2008-09-24 | 1 | -12/+55 |
* | 336: Param.__dispatch() now returns None for any in (None, '', u'', tuple(), ... | Jason Gerard DeRose | 2008-09-24 | 2 | -10/+20 |
* | 335: If Command.__convert_scalar() is called with None, it now returns None i... | Jason Gerard DeRose | 2008-09-24 | 2 | -9/+11 |
* | 334: Renamed Command.__multivalue() helper method to Command.dispatch() | Jason Gerard DeRose | 2008-09-24 | 1 | -3/+3 |
* | 333: Param.convert() now uses name Param.__multivalue() helper method as Para... | Jason Gerard DeRose | 2008-09-24 | 2 | -12/+9 |
* | 332: Param.normalize() now returns None if multivalue and len() == 0 | Jason Gerard DeRose | 2008-09-24 | 2 | -10/+17 |
* | 331: Param.normalize() no longer raises a TypeError when value in not a bases... | Jason Gerard DeRose | 2008-09-24 | 2 | -18/+35 |
* | 330: Command.normalize() now normalizes all keys, not just keys in params | Jason Gerard DeRose | 2008-09-24 | 2 | -9/+3 |
* | 329: Command.convert() now converts all keys, not just keys in params | Jason Gerard DeRose | 2008-09-24 | 2 | -10/+3 |
* | 328: Command.get_default() now returns defaults for all values not present, n... | Jason Gerard DeRose | 2008-09-24 | 1 | -4/+2 |
* | 327: Improved formatting on show-api cli command | Jason Gerard DeRose | 2008-09-24 | 2 | -10/+32 |
* | 326: Made output of plugins cli command nicer | Jason Gerard DeRose | 2008-09-24 | 1 | -5/+27 |
* | 325: API.finalize() now creates instance attribtue 'plugins', which is a tupl... | Jason Gerard DeRose | 2008-09-24 | 2 | -18/+79 |
* | 324: Removed 'smart_option_order' from Command.__public__; cli commands help,... | Jason Gerard DeRose | 2008-09-24 | 2 | -4/+4 |
* | 323: Added Command.run() method that dispatches to execute() or forward(); ad... | Jason Gerard DeRose | 2008-09-24 | 3 | -3/+52 |
* | 322: Updated ipalib package docstring, replacing cross reference to 'public' ... | Jason Gerard DeRose | 2008-09-24 | 1 | -2/+4 |
* | 321: Standard ipalib.api attribute now accepts plugins from the Backend base ... | Jason Gerard DeRose | 2008-09-24 | 1 | -0/+2 |
* | 320: plugable.API now respects the Plugin.__proxy__ flag; added test for plug... | Jason Gerard DeRose | 2008-09-24 | 4 | -2/+30 |
* | 319: Added new backend and tests.test_backend modules; added place-holder Bac... | Jason Gerard DeRose | 2008-09-24 | 4 | -3/+65 |
* | 318: Renamed all references to 'public' module to 'frontend' | Jason Gerard DeRose | 2008-09-24 | 5 | -112/+111 |
* | 317: Renamed public.py to frontend.py; renamed test_public.py to test_fronten... | Jason Gerard DeRose | 2008-09-23 | 2 | -0/+0 |
* | 315: Renamed Property.option instance attribute to Property.param | Jason Gerard DeRose | 2008-09-22 | 2 | -10/+9 |
* | 314: Completed some missing features in Command.__call__(); removed depreciat... | Jason Gerard DeRose | 2008-09-22 | 2 | -13/+8 |
* | 313: Added Object.params instance attribute | Jason Gerard DeRose | 2008-09-22 | 2 | -1/+29 |
* | 312: Cleaned up docstring for create_param(); Command.finalize() now uses cre... | Jason Gerard DeRose | 2008-09-21 | 2 | -31/+35 |
* | 311: Renamed generate_option() to create_param() | Jason Gerard DeRose | 2008-09-21 | 2 | -7/+12 |
* | 310: generate_option() function now can accept a Param object, which it retur... | Jason Gerard DeRose | 2008-09-21 | 2 | -0/+3 |