summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
Commit message (Collapse)AuthorAgeFilesLines
* Rename errors2.py to errors.py. Modify all affected files.Pavel Zuna2009-04-231-10/+10
|
* Implemented more elegant way for entire plugin module to be conditionally ↵Jason Gerard DeRose2009-02-171-2/+36
| | | | skipped; updated cert.py and ra.py modules to use this
* Started cleanup work on ra plugin; fixed problem in api.bootstrap() when ↵Jason Gerard DeRose2009-02-171-2/+6
| | | | process does not have permision to open log file
* Started work on a much simplified mod_python serverJason Gerard DeRose2009-02-031-0/+2
|
* Finished reworked cli.CLI class into cli.cli pluginJason Gerard DeRose2009-02-031-5/+6
|
* Started reworking CLI class into cli pluginJason Gerard DeRose2009-02-031-5/+33
|
* Removed the depreciated Context and LazyContext classesJason Gerard DeRose2009-02-031-23/+0
|
* Added Object.params_minus() method; various small tweaksJason Gerard DeRose2009-02-031-7/+5
|
* Renamed all references to 'ipa_server' to 'ipaserver'Jason Gerard DeRose2009-01-041-1/+1
|
* Removed unneeded import of errors from plugable.pyJason Gerard DeRose2009-01-031-5/+4
|
* Plugin.call() now uses errors2 version of SubprocessErrorJason Gerard DeRose2009-01-031-3/+3
|
* 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
|