summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* 138: Added ProxyTarget.doc property; CLI.print_commands() now uses cmd.doc ↵Jason Gerard DeRose2008-08-131-2/+11
| | | | instead of cmd.get_doc()
* 124: Fixed case in example in ReadOnly class docstringJason Gerard DeRose2008-08-121-1/+1
|
* 123: API.finalize() now raises AssetionError if called more than once; added ↵Jason Gerard DeRose2008-08-121-0/+4
| | | | corresponding unit tests
* 121: Renamed API.__call__() method to API.finalize()Jason Gerard DeRose2008-08-121-1/+1
|
* 120: Moved ProxyTarget below Proxy to emphasize relationship with Plugin; ↵Jason Gerard DeRose2008-08-121-37/+81
| | | | added docstrings for ProxyTarget.implements() and implemented_by() classmethods; fixed typo in Plugin.finalize() docstring
* 119: Added ProxyTarget.implemented_by() classmethod; added corresponding ↵Jason Gerard DeRose2008-08-121-0/+12
| | | | unit tests
* 103: Fixed missing API.__keys assignmentJason Gerard DeRose2008-08-091-1/+1
|
* 102: After the API instance calls plugin.finalize(), it also calls ↵Jason Gerard DeRose2008-08-091-0/+2
| | | | plugin.__lock__()
* 101: Registrar now subclasses from ReadOnlyJason Gerard DeRose2008-08-091-1/+2
|
* 100: Cleaned up NameSpace docstrings; cleanup up NameSpace unit testsJason Gerard DeRose2008-08-091-4/+8
|
* 99: Cleaned up unit tests for plugable.PluginJason Gerard DeRose2008-08-091-1/+1
|
* 98: Completed docstrings in ProxyJason Gerard DeRose2008-08-091-5/+19
|
* 97: Some whitespace and docstring cleanup; Plugin now subclasses from ↵Jason Gerard DeRose2008-08-091-18/+5
| | | | ProxyTarget
* 96: Fixed typo is ReadOnly docstringJason Gerard DeRose2008-08-091-1/+1
|
* 95: Improved docstrings for ReadOnly class; added ReadOnly.__islocked__() ↵Jason Gerard DeRose2008-08-091-0/+39
| | | | method; added corresponding unit tests
* 94: Renamed Proxy._clone() method to Proxy.__clone__(); updated unit testsJason Gerard DeRose2008-08-091-2/+8
|
* 93: Added Proxy.implements() method; addeded corresponding unit testsJason Gerard DeRose2008-08-091-2/+7
|
* 92: Added ProxyTarget.name property; added corresponding unit testsJason Gerard DeRose2008-08-081-0/+7
|
* 91: Fleshed out docstrings in plugable.ProxyJason Gerard DeRose2008-08-081-0/+27
|
* 90: Renamed plugable.Abstract to ProxyTarget, which now subclasses from ↵Jason Gerard DeRose2008-08-081-49/+55
| | | | ReadOnly; updated unit tests
* 88: Renamed ReadOnly._lock() to ReadOnly.__lock__(); updated subclasses and ↵Jason Gerard DeRose2008-08-081-33/+36
| | | | unit tests
* 87: Moved to_cli(), from_cli() functions from plugable.py into new cli.py ↵Jason Gerard DeRose2008-08-081-18/+0
| | | | file; moved corresponding unit tests into new test_cli.py file
* 86: Actually change *all* tab indentation to 4-space: 'sed s/\t/ /g'Jason Gerard DeRose2008-08-081-205/+205
|
* 85: Added ReadOnly._lock() method to make class easier to use; updated ↵Jason Gerard DeRose2008-08-081-25/+32
| | | | subclasses and unit tests
* 84: Renamed Proxy.__public to Proxy.__public__ so it works with ↵Jason Gerard DeRose2008-08-081-7/+7
| | | | Abstract.implements()
* 82: Cleaned up unit tests for public.option; added some doodles in plugable.BaseJason Gerard DeRose2008-08-081-0/+17
|
* 81: Switch from tab to 4-space indentationJason Gerard DeRose2008-08-081-296/+296
|
* 71: Proxy now uses base.__public__ instead of base.public; updated unit testsJason Gerard DeRose2008-08-071-2/+1
|
* 70: Plugin.__repr__ now again returns 'module_name.class_name()' form; ↵Jason Gerard DeRose2008-08-071-1/+1
| | | | updated unit test
* 69: Made Proxy.base a private attribute; updated unit testsJason Gerard DeRose2008-08-071-11/+14
|
* 68: Ported to changes in NameSpace, Proxy; updated unit testsJason Gerard DeRose2008-08-071-11/+21
|
* 67: Deleted NameSpace, Proxy; renamed NameSpace2, Proxy2 to NameSpace, ProxyJason Gerard DeRose2008-08-061-114/+9
|