summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Ported plugin registration errors into errors2.py; plugable.Registrar now ↵Jason Gerard DeRose2009-01-031-5/+16
| | | | raises new errors2 exceptions
* Removed unneeded import of check_type, check_instance in plugable.pyJason Gerard DeRose2009-01-021-1/+0
|
* Removed depreciated code in ipalib.plugable that has been moving into ↵Jason Gerard DeRose2009-01-021-249/+2
| | | | ipalib.base
* Removed depreciated code from config.py; removed corresponding unit testsJason Gerard DeRose2008-12-221-1/+1
|
* Added note in Plugin.set_api() about Plugin.log attribute being depreciatedJason Gerard DeRose2008-12-211-0/+1
|
* Plugin.__init__() now checks that subclass hasn't defined attributes that ↵Jason Gerard DeRose2008-12-211-2/+7
| | | | conflict with the logger methods; added corresponding unit test
* Improved Plugin.call() method and added its unit testJason Gerard DeRose2008-12-211-6/+13
|
* Plugin.doc instance attribute is now parsed out using inspect.getdoc(); ↵Jason Gerard DeRose2008-12-171-1/+5
| | | | added Plugin.summary instance attribute, created in Plugin.__init__()
* Removed Plugin.doc property and replaced with instance attribute created in ↵Jason Gerard DeRose2008-12-171-7/+1
| | | | Plugin.__init__()
* Removed Plugin.name property and replaced with instance attribute created in ↵Jason Gerard DeRose2008-12-171-7/+4
| | | | Plugin.__init__()
* Some changes to make reading dubugging output easierJason Gerard DeRose2008-11-241-0/+5
|
* Finished fist draft of plugin tutorial in ipalib/__init__.py docstringJason Gerard DeRose2008-11-071-2/+2
|
* Added Plugin.call() method that calls an external executable via ↵Jason Gerard DeRose2008-11-061-0/+11
| | | | subprocess.call()
* Added custom log formatter util.LogFormatter that makes the human-readable ↵Jason Gerard DeRose2008-10-311-2/+2
| | | | time stamp in UTC
* Renamed API.bootstrap_from_options() to bootstrap_with_global_options()Jason Gerard DeRose2008-10-311-1/+1
|
* Logging formats are now env variables; added log_format_stderr_debug format ↵Jason Gerard DeRose2008-10-311-10/+10
| | | | used when env.debug is True
* Reoganized global option functionality to it is easy for any script to use ↵Jason Gerard DeRose2008-10-311-0/+27
| | | | the environment-related global options; lite-xmlrpc.py now uses same global options
* Logging is now configured in API.bootstrap(); removed depreciated ↵Jason Gerard DeRose2008-10-311-9/+43
| | | | util.configure_logging() function
* API.finalize() now cascades call to API.load_plugins()Jason Gerard DeRose2008-10-311-1/+1
|
* Plugin.set_api() now sets convience instance attributes from api for env, ↵Jason Gerard DeRose2008-10-301-1/+10
| | | | context, log, and all NameSpace
* Added ipalib.plugins.f_misc with new 'context' Command; moved 'env' Command ↵Jason Gerard DeRose2008-10-301-0/+3
| | | | from cli to f_misc
* Did some initial work for Context pluginsJason Gerard DeRose2008-10-301-0/+21
|
* lite-xmlrpc.py now uses api.bootstrap() property, logs to api.loggerJason Gerard DeRose2008-10-281-1/+1
|
* Added util.configure_logging() function; API.bootstrap() now calls ↵Jason Gerard DeRose2008-10-281-0/+7
| | | | util.configure_logging()
* API.load_plugins() no longer takes dry_run=False kwarg and instead checks in ↵Jason Gerard DeRose2008-10-271-3/+4
| | | | env.mode == 'unit_test' to decide whether to load the plugins; it also only loads ipa_server.plugins in env.in_server is True
* API.bootstrap() now calls Env._finalize_core(); updated unit testsJason Gerard DeRose2008-10-271-0/+1
|
* Implemented basic CLI.bootstrap(); added corresponding unit testsJason Gerard DeRose2008-10-271-1/+2
|
* API.env is now an Env instance rather than an Environment instanceJason Gerard DeRose2008-10-271-2/+3
|
* Copied plugin loading function from load_plugins.py to util.py; ↵Jason Gerard DeRose2008-10-271-0/+5
| | | | API.load_plugins() method now calls functions in util
* Added API.load_plugins() place-holder, which cascades call to API.bootstrap()Jason Gerard DeRose2008-10-261-0/+13
|
* Implemented placeholder API.bootstrap() method; added API __doing(), ↵Jason Gerard DeRose2008-10-261-2/+23
| | | | __do_if_not_done(), isdone() methods borrowed from Env; API.finalize() now cascades call to API.bootstrap()
* In second example in NameSpace docstring, renamed 'member' class to 'Member' ↵Jason Gerard DeRose2008-10-211-4/+4
| | | | to make the example clearer
* Some PEP-257 and reStructuredText cleanup in plugable.pyJason Gerard DeRose2008-10-181-37/+52
|
* make-test now runs doctests also; fixed several broken doctestsJason Gerard DeRose2008-10-171-36/+31
|
* Reworking Environment, moved it to config.pyMartin Nagy2008-10-171-71/+1
|
* Some small cleanup on Environment, filled in docstringsJason Gerard DeRose2008-10-141-10/+32
|
* Enable the verbose flag to pass thru xmlrpcRob Crittenden2008-10-101-0/+2
|
* Environment is now subclassed from object, rather then dict. Added tests for ↵Martin Nagy2008-10-021-18/+36
| | | | Environment and config.py
* Add support for environment variables, change tests accordinglyMartin Nagy2008-09-291-6/+31
|
* 361: Implemented crud.Add.get_options() method; added corresponding unit testsJason Gerard DeRose2008-09-251-2/+2
|
* 354: Added NameSpace.__todict__() method that returns copy of ↵Jason Gerard DeRose2008-09-241-6/+12
| | | | NameSpace.__map; updated NameSpace unit test to also test __todict__()
* 325: API.finalize() now creates instance attribtue 'plugins', which is a ↵Jason Gerard DeRose2008-09-241-13/+48
| | | | tuple of PluginInfo objects; renamed show_plugins cli command to namespaces; added new cli command plugins
* 323: Added Command.run() method that dispatches to execute() or forward(); ↵Jason Gerard DeRose2008-09-241-2/+6
| | | | added corresponding unit tests
* 320: plugable.API now respects the Plugin.__proxy__ flag; added test for ↵Jason Gerard DeRose2008-09-241-1/+5
| | | | plugins without proxy to unit tests for API
* 314: Completed some missing features in Command.__call__(); removed ↵Jason Gerard DeRose2008-09-221-0/+1
| | | | depreciated Command.print_call() method
* 307: Split Plugin.finalize() into two steps 1) Plugin.set_api() and 2) ↵Jason Gerard DeRose2008-09-211-11/+6
| | | | Plugin.finalize(); updated unit tests
* 306: Added Plugin.set_api() method; added corresponding unit testsJason Gerard DeRose2008-09-211-0/+8
|
* 299: Cleaned up unit tests for ReadOnly classJason Gerard DeRose2008-09-181-1/+1
|
* 298: Cleaned up docstrings in ReadOnly methodsJason Gerard DeRose2008-09-181-7/+11
|
* 297: Added a better example in docstring for ReadOnlyJason Gerard DeRose2008-09-181-19/+18
|