Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | 95: Improved docstrings for ReadOnly class; added ReadOnly.__islocked__() ↵ | Jason Gerard DeRose | 2008-08-09 | 2 | -0/+51 | |
| | | | | | | | | method; added corresponding unit tests | |||||
| * | 94: Renamed Proxy._clone() method to Proxy.__clone__(); updated unit tests | Jason Gerard DeRose | 2008-08-09 | 3 | -16/+29 | |
| | | ||||||
| * | 93: Added Proxy.implements() method; addeded corresponding unit tests | Jason Gerard DeRose | 2008-08-09 | 2 | -81/+113 | |
| | | ||||||
| * | 92: Added ProxyTarget.name property; added corresponding unit tests | Jason Gerard DeRose | 2008-08-08 | 2 | -3/+21 | |
| | | ||||||
| * | 91: Fleshed out docstrings in plugable.Proxy | Jason Gerard DeRose | 2008-08-08 | 1 | -0/+27 | |
| | | ||||||
| * | 90: Renamed plugable.Abstract to ProxyTarget, which now subclasses from ↵ | Jason Gerard DeRose | 2008-08-08 | 2 | -120/+139 | |
| | | | | | | | | ReadOnly; updated unit tests | |||||
| * | 89: Moved ClassChecker from test_public.py into tstutil.py; improved unit ↵ | Jason Gerard DeRose | 2008-08-08 | 3 | -44/+75 | |
| | | | | | | | | tests for plugable.ReadOnly | |||||
| * | 88: Renamed ReadOnly._lock() to ReadOnly.__lock__(); updated subclasses and ↵ | Jason Gerard DeRose | 2008-08-08 | 2 | -35/+38 | |
| | | | | | | | | unit tests | |||||
| * | 87: Moved to_cli(), from_cli() functions from plugable.py into new cli.py ↵ | Jason Gerard DeRose | 2008-08-08 | 4 | -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 DeRose | 2008-08-08 | 10 | -718/+718 | |
| | | ||||||
| * | 85: Added ReadOnly._lock() method to make class easier to use; updated ↵ | Jason Gerard DeRose | 2008-08-08 | 2 | -26/+35 | |
| | | | | | | | | subclasses and unit tests | |||||
| * | 84: Renamed Proxy.__public to Proxy.__public__ so it works with ↵ | Jason Gerard DeRose | 2008-08-08 | 1 | -7/+7 | |
| | | | | | | | | Abstract.implements() | |||||
| * | 83: Added unit tests for plugable.Abstract | Jason Gerard DeRose | 2008-08-08 | 1 | -0/+50 | |
| | | ||||||
| * | 82: Cleaned up unit tests for public.option; added some doodles in plugable.Base | Jason Gerard DeRose | 2008-08-08 | 3 | -24/+77 | |
| | | ||||||
| * | 81: Switch from tab to 4-space indentation | Jason Gerard DeRose | 2008-08-08 | 10 | -1416/+1416 | |
| | | ||||||
| * | 80: Cleaned up docstring for option.normalize() | Jason Gerard DeRose | 2008-08-08 | 1 | -5/+8 | |
| | | ||||||
| * | 79: More work on option and cmd | Jason Gerard DeRose | 2008-08-08 | 2 | -42/+55 | |
| | | ||||||
| * | 78: Renamed opt to option; started fleshing out cmd more | Jason Gerard DeRose | 2008-08-08 | 2 | -15/+53 | |
| | | ||||||
| * | 77: A few stylistic changes | Jason Gerard DeRose | 2008-08-07 | 1 | -8/+8 | |
| | | ||||||
| * | 76: Fleshed out opt.validate(); added corresponding unit tests | Jason Gerard DeRose | 2008-08-07 | 3 | -20/+43 | |
| | | ||||||
| * | 75: Fixed opt.__rules_iter; added corresponding unit tests | Jason Gerard DeRose | 2008-08-07 | 2 | -6/+38 | |
| | | ||||||
| * | 74: Finished opt.__rules_iter(); is_rule(obj) now returns False if obj is ↵ | Jason Gerard DeRose | 2008-08-07 | 2 | -19/+15 | |
| | | | | | | | | not callable; updated unit tests | |||||
| * | 73: Started work on validation rules for opt; added corresponding unit tests | Jason Gerard DeRose | 2008-08-07 | 3 | -34/+121 | |
| | | ||||||
| * | 72: Started work on public.opt class; added corresponding unit tests | Jason Gerard DeRose | 2008-08-07 | 4 | -2/+93 | |
| | | ||||||
| * | 71: Proxy now uses base.__public__ instead of base.public; updated unit tests | Jason Gerard DeRose | 2008-08-07 | 3 | -11/+10 | |
| | | ||||||
| * | 70: Plugin.__repr__ now again returns 'module_name.class_name()' form; ↵ | Jason Gerard DeRose | 2008-08-07 | 2 | -3/+3 | |
| | | | | | | | | updated unit test | |||||
| * | 69: Made Proxy.base a private attribute; updated unit tests | Jason Gerard DeRose | 2008-08-07 | 2 | -12/+14 | |
| | | ||||||
| * | 68: Ported to changes in NameSpace, Proxy; updated unit tests | Jason Gerard DeRose | 2008-08-07 | 4 | -58/+45 | |
| | | ||||||
| * | 67: Deleted NameSpace, Proxy; renamed NameSpace2, Proxy2 to NameSpace, Proxy | Jason Gerard DeRose | 2008-08-06 | 2 | -253/+27 | |
| | | ||||||
| * | 66: Added NameSpace2 (bit simpler than NameSpace, better suited to Proxy2); ↵ | Jason Gerard DeRose | 2008-08-06 | 2 | -0/+106 | |
| | | | | | | | | added corresponding unit tests | |||||
| * | 65: Finished simplified Proxy2 class; updated unit tests | Jason Gerard DeRose | 2008-08-06 | 3 | -76/+38 | |
| | | ||||||
| * | 64: Almost finish with Proxy2, where base class is passed to __init__ and ↵ | Jason Gerard DeRose | 2008-08-06 | 2 | -0/+144 | |
| | | | | | | | | methods use @export decorator; added corresponding unit tests | |||||
| * | 63: Started fleshing out public.cmd | Jason Gerard DeRose | 2008-08-06 | 1 | -0/+25 | |
| | | ||||||
| * | 62: NameSpace no longer takes base=base kwarg | Jason Gerard DeRose | 2008-08-06 | 1 | -8/+3 | |
| | | ||||||
| * | 61: Proxy now does a setattr for all callable attributes in __slots__ (and ↵ | Jason Gerard DeRose | 2008-08-06 | 2 | -5/+7 | |
| | | | | | | | | uses __getattr__ for rest | |||||
| * | 60: Remeved depreciated base.py, crud.py; remeved corresponding ↵ | Jason Gerard DeRose | 2008-08-06 | 4 | -982/+0 | |
| | | | | | | | | test_base.py, test_crud.py | |||||
| * | 59: Removed NameSpace.__call__ method (returned max_len) | Jason Gerard DeRose | 2008-08-06 | 1 | -11/+0 | |
| | | ||||||
| * | 58: A bit of docstring cleanup in plugable.py | Jason Gerard DeRose | 2008-08-06 | 1 | -4/+3 | |
| | | ||||||
| * | 57: to_cli() function no longer replaces '__' with '.'; from_cli() function ↵ | Jason Gerard DeRose | 2008-08-06 | 2 | -12/+8 | |
| | | | | | | | | no longer replaces '.' with '__'; updated unit tests | |||||
| * | 56: Fixed Proxy.__call__ | Jason Gerard DeRose | 2008-08-06 | 1 | -0/+3 | |
| | | ||||||
| * | 55: Cleaned up print_api() function in ipa script | Jason Gerard DeRose | 2008-08-06 | 2 | -31/+91 | |
| | | ||||||
| * | 54: Added plugable.Proxy._clone() method; fleshed out public.obj; updated ↵ | Jason Gerard DeRose | 2008-08-06 | 4 | -15/+145 | |
| | | | | | | | | unit tests; port ipa script | |||||
| * | 53: Changed plugable.Registar so the same plugin can be added to in the ns ↵ | Jason Gerard DeRose | 2008-08-05 | 3 | -19/+24 | |
| | | | | | | | | for more than one base (for cmd and mthd) | |||||
| * | 52: Got cli working against new framework | Jason Gerard DeRose | 2008-08-05 | 5 | -66/+77 | |
| | | ||||||
| * | 51: Moved old_plugins.py back to plugins.py | Jason Gerard DeRose | 2008-08-05 | 2 | -1/+1 | |
| | | ||||||
| * | 50: Moved plugins.py to old_plugins.py | Jason Gerard DeRose | 2008-08-05 | 1 | -0/+0 | |
| | | ||||||
| * | 49: Added public.PublicAPI class; added some basic unit tests for same | Jason Gerard DeRose | 2008-08-05 | 3 | -9/+38 | |
| | | ||||||
| * | 48: Added public.py with base classes for 'public' api used for XML-RPC, ↵ | Jason Gerard DeRose | 2008-08-05 | 2 | -0/+147 | |
| | | | | | | | | CLI, and UI; added corresponding unit stests | |||||
| * | 47: Added plugable.check_identifier() function; added corresponding unit tests | Jason Gerard DeRose | 2008-08-05 | 3 | -1/+39 | |
| | | ||||||
| * | 46: plugable.API now takes allowed base class in __init__ and creates ↵ | Jason Gerard DeRose | 2008-08-05 | 2 | -6/+13 | |
| | | | | | | | | Registrar at API.register, thereby coupling the two; updated correspending unit tests |