summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* 78: Renamed opt to option; started fleshing out cmd moreJason Gerard DeRose2008-08-082-15/+53
|
* 77: A few stylistic changesJason Gerard DeRose2008-08-071-8/+8
|
* 76: Fleshed out opt.validate(); added corresponding unit testsJason Gerard DeRose2008-08-073-20/+43
|
* 75: Fixed opt.__rules_iter; added corresponding unit testsJason Gerard DeRose2008-08-072-6/+38
|
* 74: Finished opt.__rules_iter(); is_rule(obj) now returns False if obj is ↵Jason Gerard DeRose2008-08-072-19/+15
| | | | not callable; updated unit tests
* 73: Started work on validation rules for opt; added corresponding unit testsJason Gerard DeRose2008-08-073-34/+121
|
* 72: Started work on public.opt class; added corresponding unit testsJason Gerard DeRose2008-08-074-2/+93
|
* 71: Proxy now uses base.__public__ instead of base.public; updated unit testsJason Gerard DeRose2008-08-073-11/+10
|
* 70: Plugin.__repr__ now again returns 'module_name.class_name()' form; ↵Jason Gerard DeRose2008-08-072-3/+3
| | | | updated unit test
* 69: Made Proxy.base a private attribute; updated unit testsJason Gerard DeRose2008-08-072-12/+14
|
* 68: Ported to changes in NameSpace, Proxy; updated unit testsJason Gerard DeRose2008-08-074-58/+45
|
* 67: Deleted NameSpace, Proxy; renamed NameSpace2, Proxy2 to NameSpace, ProxyJason Gerard DeRose2008-08-062-253/+27
|
* 66: Added NameSpace2 (bit simpler than NameSpace, better suited to Proxy2); ↵Jason Gerard DeRose2008-08-062-0/+106
| | | | added corresponding unit tests
* 65: Finished simplified Proxy2 class; updated unit testsJason Gerard DeRose2008-08-063-76/+38
|
* 64: Almost finish with Proxy2, where base class is passed to __init__ and ↵Jason Gerard DeRose2008-08-062-0/+144
| | | | methods use @export decorator; added corresponding unit tests
* 63: Started fleshing out public.cmdJason Gerard DeRose2008-08-061-0/+25
|
* 62: NameSpace no longer takes base=base kwargJason Gerard DeRose2008-08-061-8/+3
|
* 61: Proxy now does a setattr for all callable attributes in __slots__ (and ↵Jason Gerard DeRose2008-08-062-5/+7
| | | | uses __getattr__ for rest
* 60: Remeved depreciated base.py, crud.py; remeved corresponding ↵Jason Gerard DeRose2008-08-064-982/+0
| | | | test_base.py, test_crud.py
* 59: Removed NameSpace.__call__ method (returned max_len)Jason Gerard DeRose2008-08-061-11/+0
|
* 58: A bit of docstring cleanup in plugable.pyJason Gerard DeRose2008-08-061-4/+3
|
* 57: to_cli() function no longer replaces '__' with '.'; from_cli() function ↵Jason Gerard DeRose2008-08-062-12/+8
| | | | no longer replaces '.' with '__'; updated unit tests
* 56: Fixed Proxy.__call__Jason Gerard DeRose2008-08-061-0/+3
|
* 55: Cleaned up print_api() function in ipa scriptJason Gerard DeRose2008-08-062-31/+91
|
* 54: Added plugable.Proxy._clone() method; fleshed out public.obj; updated ↵Jason Gerard DeRose2008-08-064-15/+145
| | | | unit tests; port ipa script
* 53: Changed plugable.Registar so the same plugin can be added to in the ns ↵Jason Gerard DeRose2008-08-053-19/+24
| | | | for more than one base (for cmd and mthd)
* 52: Got cli working against new frameworkJason Gerard DeRose2008-08-055-66/+77
|
* 51: Moved old_plugins.py back to plugins.pyJason Gerard DeRose2008-08-052-1/+1
|
* 50: Moved plugins.py to old_plugins.pyJason Gerard DeRose2008-08-051-0/+0
|
* 49: Added public.PublicAPI class; added some basic unit tests for sameJason Gerard DeRose2008-08-053-9/+38
|
* 48: Added public.py with base classes for 'public' api used for XML-RPC, ↵Jason Gerard DeRose2008-08-052-0/+147
| | | | CLI, and UI; added corresponding unit stests
* 47: Added plugable.check_identifier() function; added corresponding unit testsJason Gerard DeRose2008-08-053-1/+39
|
* 46: plugable.API now takes allowed base class in __init__ and creates ↵Jason Gerard DeRose2008-08-052-6/+13
| | | | Registrar at API.register, thereby coupling the two; updated correspending unit tests
* 45: Fixed docstring typo in plugable.__doc__Jason Gerard DeRose2008-08-051-2/+1
|
* 44: Added Plugin.finalize() method called by API after all plugin instances ↵Jason Gerard DeRose2008-08-052-9/+32
| | | | are created; updated corresponding unit tests
* 43: Fleshed out new plugable.API class; added corresponding unit testsJason Gerard DeRose2008-08-052-1/+77
|
* 42: plugable.Plugin.__init__() now takes the plugable.API instance as its ↵Jason Gerard DeRose2008-08-012-5/+29
| | | | single argument
* 41: New plugable.NameSpace now has attributes set for each member; updated ↵Jason Gerard DeRose2008-08-012-2/+9
| | | | unit tests
* 40: Rewrote dictionary interface for plugable.NameSpace to better suite new ↵Jason Gerard DeRose2008-08-013-55/+104
| | | | architecture
* 39: Added unit tests for Registrar.__iter__()Jason Gerard DeRose2008-08-011-0/+38
|
* 38: dict interface of Registrar now works with both classes and strings as ↵Jason Gerard DeRose2008-08-012-19/+120
| | | | the key
* 37: Renamed tstutil.yes_raises() to raises(); changed test_plugable.py to ↵Jason Gerard DeRose2008-08-013-57/+11
| | | | use raises() throughout
* 36: Added more functionality to tests.tstutil; added corresponding ↵Jason Gerard DeRose2008-08-012-16/+178
| | | | tests.test_tstutil unit tests
* 35: Renamed unit_common.py to tstutil.pyJason Gerard DeRose2008-08-012-7/+7
|
* 34: Added tests.unit_common with frequently used utility functions; split ro ↵Jason Gerard DeRose2008-08-013-19/+107
| | | | __setattr__, __delattr__ methods out of Proxy and into new ReadOnly base class; added corresponding unit tests
* 33: Finished unit tests for plugable.ProxyJason Gerard DeRose2008-08-012-14/+78
|
* 32: Added Plugin and Proxy base classes in plugable module, along with ↵Jason Gerard DeRose2008-07-312-0/+131
| | | | to_cli() and from_cli() functions; added correspending unit tests