| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | API.bootstrap() now calls Env._finalize_core(); updated unit tests | Jason Gerard DeRose | 2008-10-27 | 1 | -0/+1 |
* | Implemented basic CLI.bootstrap(); added corresponding unit tests | Jason Gerard DeRose | 2008-10-27 | 1 | -1/+2 |
* | API.env is now an Env instance rather than an Environment instance | Jason Gerard DeRose | 2008-10-27 | 1 | -2/+3 |
* | Copied plugin loading function from load_plugins.py to util.py; API.load_plug... | Jason Gerard DeRose | 2008-10-27 | 1 | -0/+5 |
* | Added API.load_plugins() place-holder, which cascades call to API.bootstrap() | Jason Gerard DeRose | 2008-10-26 | 1 | -0/+13 |
* | Implemented placeholder API.bootstrap() method; added API __doing(), __do_if_... | Jason Gerard DeRose | 2008-10-26 | 1 | -2/+23 |
* | In second example in NameSpace docstring, renamed 'member' class to 'Member' ... | Jason Gerard DeRose | 2008-10-21 | 1 | -4/+4 |
* | Some PEP-257 and reStructuredText cleanup in plugable.py | Jason Gerard DeRose | 2008-10-18 | 1 | -37/+52 |
* | make-test now runs doctests also; fixed several broken doctests | Jason Gerard DeRose | 2008-10-17 | 1 | -36/+31 |
* | Reworking Environment, moved it to config.py | Martin Nagy | 2008-10-17 | 1 | -71/+1 |
* | Some small cleanup on Environment, filled in docstrings | Jason Gerard DeRose | 2008-10-14 | 1 | -10/+32 |
* | Enable the verbose flag to pass thru xmlrpc | Rob Crittenden | 2008-10-10 | 1 | -0/+2 |
* | Environment is now subclassed from object, rather then dict. Added tests for ... | Martin Nagy | 2008-10-02 | 1 | -18/+36 |
* | Add support for environment variables, change tests accordingly | Martin Nagy | 2008-09-29 | 1 | -6/+31 |
* | 361: Implemented crud.Add.get_options() method; added corresponding unit tests | Jason Gerard DeRose | 2008-09-25 | 1 | -2/+2 |
* | 354: Added NameSpace.__todict__() method that returns copy of NameSpace.__map... | Jason Gerard DeRose | 2008-09-24 | 1 | -6/+12 |
* | 325: API.finalize() now creates instance attribtue 'plugins', which is a tupl... | Jason Gerard DeRose | 2008-09-24 | 1 | -13/+48 |
* | 323: Added Command.run() method that dispatches to execute() or forward(); ad... | Jason Gerard DeRose | 2008-09-24 | 1 | -2/+6 |
* | 320: plugable.API now respects the Plugin.__proxy__ flag; added test for plug... | Jason Gerard DeRose | 2008-09-24 | 1 | -1/+5 |
* | 314: Completed some missing features in Command.__call__(); removed depreciat... | Jason Gerard DeRose | 2008-09-22 | 1 | -0/+1 |
* | 307: Split Plugin.finalize() into two steps 1) Plugin.set_api() and 2) Plugin... | Jason Gerard DeRose | 2008-09-21 | 1 | -11/+6 |
* | 306: Added Plugin.set_api() method; added corresponding unit tests | Jason Gerard DeRose | 2008-09-21 | 1 | -0/+8 |
* | 299: Cleaned up unit tests for ReadOnly class | Jason Gerard DeRose | 2008-09-18 | 1 | -1/+1 |
* | 298: Cleaned up docstrings in ReadOnly methods | Jason Gerard DeRose | 2008-09-18 | 1 | -7/+11 |
* | 297: Added a better example in docstring for ReadOnly | Jason Gerard DeRose | 2008-09-18 | 1 | -19/+18 |
* | 296: Added more to docstrings for NameSpace.__iter_() and NameSpace.__call__() | Jason Gerard DeRose | 2008-09-18 | 1 | -0/+4 |
* | 294: NameSpace no longer subclasses from DictProxy; NameSpace.__getitem__() n... | Jason Gerard DeRose | 2008-09-18 | 1 | -16/+49 |
* | 274: NameSpace.__init__() now takes sort=True keyword arument to allow for no... | Jason Gerard DeRose | 2008-09-09 | 1 | -9/+27 |
* | 271: Improved __repr__ methods for better output from the show-plugins command | Jason Gerard DeRose | 2008-09-08 | 1 | -1/+1 |
* | 267: Finished builtin CLI api command | Jason Gerard DeRose | 2008-09-08 | 1 | -3/+2 |
* | 228: plugable.check_name() now uses errors.check_type() | Jason Gerard DeRose | 2008-09-02 | 1 | -1/+2 |
* | 179: DictProxy now has __call__() method that iterates through the values; re... | Jason Gerard DeRose | 2008-08-15 | 1 | -8/+8 |
* | 178: Registrar now subclasses from DictProxy; made Registrar.__iter__ behave ... | Jason Gerard DeRose | 2008-08-15 | 1 | -59/+26 |
* | 177: Docstring cleanup in NameSpace.__call__() | Jason Gerard DeRose | 2008-08-15 | 1 | -1/+2 |
* | 176: PluginProxy now subclasses from SetProxy | Jason Gerard DeRose | 2008-08-15 | 1 | -15/+7 |
* | 175: Renamed Proxy to PluginProxy | Jason Gerard DeRose | 2008-08-15 | 1 | -2/+2 |
* | 174: Fleshed out docstrings for SetProxy, DictProxy, and MagicDict | Jason Gerard DeRose | 2008-08-15 | 1 | -10/+49 |
* | 173: NameSpace now subclasses from DictProxy | Jason Gerard DeRose | 2008-08-15 | 1 | -53/+9 |
* | 172: API now subclasses from DictProxy | Jason Gerard DeRose | 2008-08-15 | 1 | -29/+2 |
* | 171: MagicDict now subclasses from DictProxy; updated unit tests | Jason Gerard DeRose | 2008-08-15 | 1 | -57/+31 |
* | 170: Added SetProxy and DictProxy classes to plugable so container emulation ... | Jason Gerard DeRose | 2008-08-15 | 1 | -0/+33 |
* | 169: Renamed DictProxy to MagicDict | Jason Gerard DeRose | 2008-08-14 | 1 | -4/+4 |
* | 168: plugable.API now implements the all the usual container methods | Jason Gerard DeRose | 2008-08-14 | 1 | -11/+40 |
* | 167: In API.finalize(), lock(plugin) is used instead of plugin.__lock__(); mo... | Jason Gerard DeRose | 2008-08-14 | 1 | -4/+8 |
* | 165: Added unit tests for plugable.lock() function; replaced occurances of 's... | Jason Gerard DeRose | 2008-08-14 | 1 | -11/+17 |
* | 163: Docstring improvement for ipalib/__init__.py and plugable.py | Jason Gerard DeRose | 2008-08-14 | 1 | -1/+1 |
* | 162: Added link to container emulation documentation in plugable.py docstring | Jason Gerard DeRose | 2008-08-14 | 1 | -0/+4 |
* | 161: Registrar now takes advantage of DictProxy; updated corresponding unit t... | Jason Gerard DeRose | 2008-08-14 | 1 | -26/+52 |
* | 160: DictProxy now checks type of d in __init__(); updated unit tests | Jason Gerard DeRose | 2008-08-14 | 1 | -0/+1 |
* | 159: Added plugable.DictProxy class; added corresponding unit tests; added se... | Jason Gerard DeRose | 2008-08-14 | 1 | -4/+66 |