summaryrefslogtreecommitdiffstats
path: root/ipalib/public.py
Commit message (Collapse)AuthorAgeFilesLines
* 118: Added user_login.default() method as another example; print_call() now ↵Jason Gerard DeRose2008-08-121-1/+1
| | | | 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-121-6/+10
|
* 115: CLI now parses out kw args; cmd.__call__() now uses print_n_call() to ↵Jason Gerard DeRose2008-08-121-6/+6
| | | | give feedback on the calling
* 114: Fixed cmd.__get_options(); more work on CLIJason Gerard DeRose2008-08-121-1/+4
|
* 113: Fixed regex used in attr.__init__(); added unit tests for ↵Jason Gerard DeRose2008-08-111-1/+1
| | | | mthd.get_options()
* 111: Minor changes to mthd and prop classes; updated mthd and prop unit testsJason Gerard DeRose2008-08-111-10/+14
|
* 110: Started fleshing out more in cli.pyJason Gerard DeRose2008-08-111-3/+2
|
* 109: Cleanups in cmd; added unit tests for cmd.validate()Jason Gerard DeRose2008-08-111-4/+16
|
* 108: Changed cmd.default() so that it now only return dictionary of values ↵Jason Gerard DeRose2008-08-111-10/+9
| | | | for which defaults were generated; updated unit tests
* 107: Some cleanup in cmd; added unit tests for cmd.default() methodJason Gerard DeRose2008-08-111-10/+11
|
* 106: Fixed some typos in cmd.__get_options(); added unit tests for ↵Jason Gerard DeRose2008-08-111-4/+7
| | | | cmd.options and cmd.normalize()
* 105: Added a default implementation of cmd.get_options; added corresponding ↵Jason Gerard DeRose2008-08-111-9/+13
| | | | unit tests
* 104: public.option now subclasses from plugable.Plugin; cleaned up unit ↵Jason Gerard DeRose2008-08-101-1/+1
| | | | tests for option
* 94: Renamed Proxy._clone() method to Proxy.__clone__(); updated unit testsJason Gerard DeRose2008-08-091-1/+1
|
* 86: Actually change *all* tab indentation to 4-space: 'sed s/\t/ /g'Jason Gerard DeRose2008-08-081-145/+145
|
* 82: Cleaned up unit tests for public.option; added some doodles in plugable.BaseJason Gerard DeRose2008-08-081-2/+10
|
* 81: Switch from tab to 4-space indentationJason Gerard DeRose2008-08-081-217/+217
|
* 80: Cleaned up docstring for option.normalize()Jason Gerard DeRose2008-08-081-5/+8
|
* 79: More work on option and cmdJason Gerard DeRose2008-08-081-19/+31
|
* 78: Renamed opt to option; started fleshing out cmd moreJason Gerard DeRose2008-08-081-5/+42
|
* 77: A few stylistic changesJason Gerard DeRose2008-08-071-8/+8
|
* 76: Fleshed out opt.validate(); added corresponding unit testsJason Gerard DeRose2008-08-071-2/+12
|
* 75: Fixed opt.__rules_iter; added corresponding unit testsJason Gerard DeRose2008-08-071-6/+12
|
* 74: Finished opt.__rules_iter(); is_rule(obj) now returns False if obj is ↵Jason Gerard DeRose2008-08-071-4/+7
| | | | not callable; updated unit tests
* 73: Started work on validation rules for opt; added corresponding unit testsJason Gerard DeRose2008-08-071-0/+26
|
* 72: Started work on public.opt class; added corresponding unit testsJason Gerard DeRose2008-08-071-1/+29
|
* 71: Proxy now uses base.__public__ instead of base.public; updated unit testsJason Gerard DeRose2008-08-071-4/+4
|
* 68: Ported to changes in NameSpace, Proxy; updated unit testsJason Gerard DeRose2008-08-071-39/+16
|
* 63: Started fleshing out public.cmdJason Gerard DeRose2008-08-061-0/+25
|
* 54: Added plugable.Proxy._clone() method; fleshed out public.obj; updated ↵Jason Gerard DeRose2008-08-061-3/+49
| | | | unit tests; port ipa script
* 53: Changed plugable.Registar so the same plugin can be added to in the ns ↵Jason Gerard DeRose2008-08-051-1/+1
| | | | for more than one base (for cmd and mthd)
* 52: Got cli working against new frameworkJason Gerard DeRose2008-08-051-1/+19
|
* 49: Added public.PublicAPI class; added some basic unit tests for sameJason Gerard DeRose2008-08-051-7/+19
|
* 48: Added public.py with base classes for 'public' api used for XML-RPC, ↵Jason Gerard DeRose2008-08-051-0/+81
CLI, and UI; added corresponding unit stests