summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 128: Fixed startup.py, example.py to work with new plugin locationsJason Gerard DeRose2008-08-133-5/+6
|
* 127: Removed depreciated identity.pyJason Gerard DeRose2008-08-131-54/+0
|
* 126: Renamed plugins.py to Plugins/example.pyJason Gerard DeRose2008-08-131-0/+0
|
* 125: Added some generic auto-import stuffJason Gerard DeRose2008-08-134-0/+129
|
* 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-122-0/+7
| | | | corresponding unit tests
* 122: The dictorary interface to CLI now has keys build using to_cli(), ↵Jason Gerard DeRose2008-08-122-4/+15
| | | | rather than converting at each call
* 121: Renamed API.__call__() method to API.finalize()Jason Gerard DeRose2008-08-124-4/+4
|
* 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-122-0/+55
| | | | unit tests
* 118: Added user_login.default() method as another example; print_call() now ↵Jason Gerard DeRose2008-08-122-6/+12
| | | | prints sorted by the keys in ascending order
* 117: Improved readability of cmd.print_call()Jason Gerard DeRose2008-08-121-6/+8
|
* 116: Added a user_initials property plugin to demostrate default() methodJason Gerard DeRose2008-08-122-9/+24
|
* 115: CLI now parses out kw args; cmd.__call__() now uses print_n_call() to ↵Jason Gerard DeRose2008-08-123-20/+32
| | | | give feedback on the calling
* 114: Fixed cmd.__get_options(); more work on CLIJason Gerard DeRose2008-08-123-10/+31
|
* 113: Fixed regex used in attr.__init__(); added unit tests for ↵Jason Gerard DeRose2008-08-112-2/+42
| | | | mthd.get_options()
* 112: More work on cli.pyJason Gerard DeRose2008-08-111-9/+15
|
* 111: Minor changes to mthd and prop classes; updated mthd and prop unit testsJason Gerard DeRose2008-08-112-17/+30
|
* 110: Started fleshing out more in cli.pyJason Gerard DeRose2008-08-115-3/+65
|
* 109: Cleanups in cmd; added unit tests for cmd.validate()Jason Gerard DeRose2008-08-112-5/+35
|
* 108: Changed cmd.default() so that it now only return dictionary of values ↵Jason Gerard DeRose2008-08-112-14/+12
| | | | for which defaults were generated; updated unit tests
* 107: Some cleanup in cmd; added unit tests for cmd.default() methodJason Gerard DeRose2008-08-112-10/+40
|
* 106: Fixed some typos in cmd.__get_options(); added unit tests for ↵Jason Gerard DeRose2008-08-112-6/+42
| | | | cmd.options and cmd.normalize()
* 105: Added a default implementation of cmd.get_options; added corresponding ↵Jason Gerard DeRose2008-08-112-12/+43
| | | | unit tests
* 104: public.option now subclasses from plugable.Plugin; cleaned up unit ↵Jason Gerard DeRose2008-08-102-10/+13
| | | | tests for option
* 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-092-57/+68
|
* 99: Cleaned up unit tests for plugable.PluginJason Gerard DeRose2008-08-092-25/+35
|
* 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-092-0/+51
| | | | method; added corresponding unit tests
* 94: Renamed Proxy._clone() method to Proxy.__clone__(); updated unit testsJason Gerard DeRose2008-08-093-16/+29
|
* 93: Added Proxy.implements() method; addeded corresponding unit testsJason Gerard DeRose2008-08-092-81/+113
|
* 92: Added ProxyTarget.name property; added corresponding unit testsJason Gerard DeRose2008-08-082-3/+21
|
* 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-082-120/+139
| | | | ReadOnly; updated unit tests
* 89: Moved ClassChecker from test_public.py into tstutil.py; improved unit ↵Jason Gerard DeRose2008-08-083-44/+75
| | | | tests for plugable.ReadOnly
* 88: Renamed ReadOnly._lock() to ReadOnly.__lock__(); updated subclasses and ↵Jason Gerard DeRose2008-08-082-35/+38
| | | | unit tests
* 87: Moved to_cli(), from_cli() functions from plugable.py into new cli.py ↵Jason Gerard DeRose2008-08-084-30/+76
| | | | 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-0810-718/+718
|
* 85: Added ReadOnly._lock() method to make class easier to use; updated ↵Jason Gerard DeRose2008-08-082-26/+35
| | | | subclasses and unit tests
* 84: Renamed Proxy.__public to Proxy.__public__ so it works with ↵Jason Gerard DeRose2008-08-081-7/+7
| | | | Abstract.implements()
* 83: Added unit tests for plugable.AbstractJason Gerard DeRose2008-08-081-0/+50
|
* 82: Cleaned up unit tests for public.option; added some doodles in plugable.BaseJason Gerard DeRose2008-08-083-24/+77
|
* 81: Switch from tab to 4-space indentationJason Gerard DeRose2008-08-0810-1416/+1416
|
* 80: Cleaned up docstring for option.normalize()Jason Gerard DeRose2008-08-081-5/+8
|
* 79: More work on option and cmdJason Gerard DeRose2008-08-082-42/+55
|