summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
Commit message (Collapse)AuthorAgeFilesLines
* Some PEP-257 and reStructuredText cleanup in plugable.pyJason Gerard DeRose2008-10-181-37/+52
|
* make-test now runs doctests also; fixed several broken doctestsJason Gerard DeRose2008-10-171-36/+31
|
* Reworking Environment, moved it to config.pyMartin Nagy2008-10-171-71/+1
|
* Some small cleanup on Environment, filled in docstringsJason Gerard DeRose2008-10-141-10/+32
|
* Enable the verbose flag to pass thru xmlrpcRob Crittenden2008-10-101-0/+2
|
* Environment is now subclassed from object, rather then dict. Added tests for ↵Martin Nagy2008-10-021-18/+36
| | | | Environment and config.py
* Add support for environment variables, change tests accordinglyMartin Nagy2008-09-291-6/+31
|
* 361: Implemented crud.Add.get_options() method; added corresponding unit testsJason Gerard DeRose2008-09-251-2/+2
|
* 354: Added NameSpace.__todict__() method that returns copy of ↵Jason Gerard DeRose2008-09-241-6/+12
| | | | NameSpace.__map; updated NameSpace unit test to also test __todict__()
* 325: API.finalize() now creates instance attribtue 'plugins', which is a ↵Jason Gerard DeRose2008-09-241-13/+48
| | | | tuple of PluginInfo objects; renamed show_plugins cli command to namespaces; added new cli command plugins
* 323: Added Command.run() method that dispatches to execute() or forward(); ↵Jason Gerard DeRose2008-09-241-2/+6
| | | | added corresponding unit tests
* 320: plugable.API now respects the Plugin.__proxy__ flag; added test for ↵Jason Gerard DeRose2008-09-241-1/+5
| | | | plugins without proxy to unit tests for API
* 314: Completed some missing features in Command.__call__(); removed ↵Jason Gerard DeRose2008-09-221-0/+1
| | | | depreciated Command.print_call() method
* 307: Split Plugin.finalize() into two steps 1) Plugin.set_api() and 2) ↵Jason Gerard DeRose2008-09-211-11/+6
| | | | Plugin.finalize(); updated unit tests
* 306: Added Plugin.set_api() method; added corresponding unit testsJason Gerard DeRose2008-09-211-0/+8
|
* 299: Cleaned up unit tests for ReadOnly classJason Gerard DeRose2008-09-181-1/+1
|
* 298: Cleaned up docstrings in ReadOnly methodsJason Gerard DeRose2008-09-181-7/+11
|
* 297: Added a better example in docstring for ReadOnlyJason Gerard DeRose2008-09-181-19/+18
|
* 296: Added more to docstrings for NameSpace.__iter_() and NameSpace.__call__()Jason Gerard DeRose2008-09-181-0/+4
|
* 294: NameSpace no longer subclasses from DictProxy; NameSpace.__getitem__() ↵Jason Gerard DeRose2008-09-181-16/+49
| | | | now works with int and slice objects
* 274: NameSpace.__init__() now takes sort=True keyword arument to allow for ↵Jason Gerard DeRose2008-09-091-9/+27
| | | | non-sorted NameSpaces; updated and improved NameSpace unit tests
* 271: Improved __repr__ methods for better output from the show-plugins commandJason Gerard DeRose2008-09-081-1/+1
|
* 267: Finished builtin CLI api commandJason Gerard DeRose2008-09-081-3/+2
|
* 228: plugable.check_name() now uses errors.check_type()Jason Gerard DeRose2008-09-021-1/+2
|
* 179: DictProxy now has __call__() method that iterates through the values; ↵Jason Gerard DeRose2008-08-151-8/+8
| | | | removed __call__() method from NameSpace as it subclasses from DictProxys; DictProxy unit tests now test __call__()
* 178: Registrar now subclasses from DictProxy; made Registrar.__iter__ behave ↵Jason Gerard DeRose2008-08-151-59/+26
| | | | same as the other container emulation in plugable.py, and made the dictorary interface return the base and the attribute interface return the MagicDict; updated API class and unit tests
* 177: Docstring cleanup in NameSpace.__call__()Jason Gerard DeRose2008-08-151-1/+2
|
* 176: PluginProxy now subclasses from SetProxyJason Gerard DeRose2008-08-151-15/+7
|
* 175: Renamed Proxy to PluginProxyJason Gerard DeRose2008-08-151-2/+2
|
* 174: Fleshed out docstrings for SetProxy, DictProxy, and MagicDictJason Gerard DeRose2008-08-151-10/+49
|
* 173: NameSpace now subclasses from DictProxyJason Gerard DeRose2008-08-151-53/+9
|
* 172: API now subclasses from DictProxyJason Gerard DeRose2008-08-151-29/+2
|
* 171: MagicDict now subclasses from DictProxy; updated unit testsJason Gerard DeRose2008-08-151-57/+31
|
* 170: Added SetProxy and DictProxy classes to plugable so container emulation ↵Jason Gerard DeRose2008-08-151-0/+33
| | | | can be consolidated
* 169: Renamed DictProxy to MagicDictJason Gerard DeRose2008-08-141-4/+4
|
* 168: plugable.API now implements the all the usual container methodsJason Gerard DeRose2008-08-141-11/+40
|
* 167: In API.finalize(), lock(plugin) is used instead of plugin.__lock__(); ↵Jason Gerard DeRose2008-08-141-4/+8
| | | | more docstring improvements in plugable.py
* 165: Added unit tests for plugable.lock() function; replaced occurances of ↵Jason Gerard DeRose2008-08-141-11/+17
| | | | 'self.__lock__()' with 'lock(self)' in plugable.py
* 163: Docstring improvement for ipalib/__init__.py and plugable.pyJason Gerard DeRose2008-08-141-1/+1
|
* 162: Added link to container emulation documentation in plugable.py docstringJason Gerard DeRose2008-08-141-0/+4
|
* 161: Registrar now takes advantage of DictProxy; updated corresponding unit ↵Jason Gerard DeRose2008-08-141-26/+52
| | | | tests
* 160: DictProxy now checks type of d in __init__(); updated unit testsJason Gerard DeRose2008-08-141-0/+1
|
* 159: Added plugable.DictProxy class; added corresponding unit tests; added ↵Jason Gerard DeRose2008-08-141-4/+66
| | | | setitem(), delitem() functions to tstutil
* 158: Name local arg 'cls' to 'klass' in Registrar methods to avoid confusion ↵Jason Gerard DeRose2008-08-141-20/+26
| | | | with classmethods; some docstring improvement in Registrar
* 157: More docstring cleanup; fixed remaining epydoc warningsJason Gerard DeRose2008-08-141-7/+7
|
* 156: Fixed all broken docstring cross referencesJason Gerard DeRose2008-08-141-13/+20
|
* 155: More docstring cleanup in plugable.pyJason Gerard DeRose2008-08-141-26/+29
|
* 154: Merged ProxyTarget functionality into Plugin to make things a bit clearerJason Gerard DeRose2008-08-141-123/+122
|
* 153: Started cleaning up docstrings in Proxy and also experimented with ↵Jason Gerard DeRose2008-08-141-9/+11
| | | | restructuredtext formatting
* 150: NameSpace.__iter__() now iterates through the names, not the members; ↵Jason Gerard DeRose2008-08-141-42/+103
| | | | added NameSpace.__call__() method which iterates through the members; NameSpace no longer requires members to be Proxy instances; updated unit tests and affected code; cleaned up NameSpace docstrings and switch to epydoc param docstrings