summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Handle exceptions in the command-line instead of in the XMLRPC client pluginRob Crittenden2008-11-032-8/+11
| |
| * Enable loggingRob Crittenden2008-11-031-14/+14
| |
| * Fix mark_entry_active()Rob Crittenden2008-11-031-4/+4
| | | | | | | | Reverse order of search filter so we return a useful NotFound exception
| * Uncomment some logging statements ported over from v1.Rob Crittenden2008-11-033-4/+4
| |
| * Partially revert back change. Del shouldn't provide default options.Rob Crittenden2008-11-032-5/+2
| | | | | | | | It can provide custom ones though, if defined with takes_params() in the class.
| * Dropped some of the more verbose logging in lite-xmlrpc.py to logger.debug()Jason Gerard DeRose2008-10-311-2/+6
| |
| * Added custom log formatter util.LogFormatter that makes the human-readable ↵Jason Gerard DeRose2008-10-313-4/+13
| | | | | | | | time stamp in UTC
| * Renamed API.bootstrap_from_options() to bootstrap_with_global_options()Jason Gerard DeRose2008-10-313-9/+6
| |
| * Logging formats are now env variables; added log_format_stderr_debug format ↵Jason Gerard DeRose2008-10-313-28/+43
| | | | | | | | used when env.debug is True
| * Reoganized global option functionality to it is easy for any script to use ↵Jason Gerard DeRose2008-10-315-31/+74
| | | | | | | | 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-312-42/+43
| | | | | | | | util.configure_logging() function
| * API.finalize() now cascades call to API.load_plugins()Jason Gerard DeRose2008-10-312-2/+1
| |
| * Fixed test_Del.test_get_options()Jason Gerard DeRose2008-10-301-9/+5
| |
| * Merge branch 'master' of ↵Jason Gerard DeRose2008-10-305-2/+532
| |\ | | | | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| | * Initial implementation of automount supportRob Crittenden2008-10-305-2/+532
| | | | | | | | | | | | | | | Add argument handling to crud.Del Make get_list handle LDAP scope
| * | Plugin.set_api() now sets convience instance attributes from api for env, ↵Jason Gerard DeRose2008-10-302-2/+11
| |/ | | | | | | context, log, and all NameSpace
| * Added ipalib.plugins.f_misc with new 'context' Command; moved 'env' Command ↵Jason Gerard DeRose2008-10-303-18/+76
| | | | | | | | from cli to f_misc
| * Added tests.util.get_api() function to create a standard (api, home) tuple ↵Jason Gerard DeRose2008-10-304-32/+29
| | | | | | | | for unit testing
| * Did some initial work for Context pluginsJason Gerard DeRose2008-10-306-16/+83
| |
| * Followig Rob's good form, cleanup my mess in TODOJason Gerard DeRose2008-10-291-21/+14
| |
| * Merge branch 'master' of ↵Jason Gerard DeRose2008-10-298-3/+358
| |\ | | | | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| | * Implement host groupsRob Crittenden2008-10-274-0/+344
| | |
| | * Fix commentRob Crittenden2008-10-271-1/+1
| | |
| | * Add migration to TODORob Crittenden2008-10-271-0/+4
| | |
| | * Change variable name that shadowed built-in (filter)Rob Crittenden2008-10-241-2/+2
| | |
| | * Don't allow service-add to create host/ principalsRob Crittenden2008-10-242-0/+7
| | |
| * | Fixed some things I broke in lite-xmlrpc.pyJason Gerard DeRose2008-10-281-2/+6
| | |
| * | Cleaned up LoggingSimpleXMLRPCRequestHandler._dispatch() methodJason Gerard DeRose2008-10-281-20/+13
| | |
| * | Cleaned up some funky indentation inconsistencies in lite-xmlrpc.pyJason Gerard DeRose2008-10-281-4/+4
| | |
| * | Added an example CLI-specific env commandJason Gerard DeRose2008-10-281-0/+16
| | |
| * | lite-xmlrpc.py now uses api.bootstrap() property, logs to api.loggerJason Gerard DeRose2008-10-284-30/+14
| | |
| * | util.configure_logging() now only configures file logging if it can create ↵Jason Gerard DeRose2008-10-281-5/+7
| | | | | | | | | | | | the log_dir
| * | Added util.configure_logging() function; API.bootstrap() now calls ↵Jason Gerard DeRose2008-10-284-2/+59
| | | | | | | | | | | | util.configure_logging()
| * | Fixed use of depreciated env.get() in b_xmlrpc.py moduleJason Gerard DeRose2008-10-271-10/+13
| | |
| * | API.load_plugins() no longer takes dry_run=False kwarg and instead checks in ↵Jason Gerard DeRose2008-10-274-7/+9
| | | | | | | | | | | | env.mode == 'unit_test' to decide whether to load the plugins; it also only loads ipa_server.plugins in env.in_server is True
| * | More CLI cleanup, got all basics working againJason Gerard DeRose2008-10-274-136/+149
| | |
| * | More docstrings, functionality, and unit tests for improved CLI classJason Gerard DeRose2008-10-273-81/+210
| | |
| * | Unit test for CLI.boostrap() now checks that -e overrides and values from ↵Jason Gerard DeRose2008-10-272-1/+43
| | | | | | | | | | | | config files are merged in correctly
| * | API.bootstrap() now calls Env._finalize_core(); updated unit testsJason Gerard DeRose2008-10-273-2/+15
| | |
| * | Implemented basic CLI.bootstrap(); added corresponding unit testsJason Gerard DeRose2008-10-273-29/+35
| | |
| * | Started cleanup work on CLI class, added unit tests for CLI.parse_globals()Jason Gerard DeRose2008-10-272-1/+7
| | |
| * | Started cleanup work on CLI class, added unit tests for CLI.parse_globals()Jason Gerard DeRose2008-10-273-101/+125
| | |
| * | API.env is now an Env instance rather than an Environment instanceJason Gerard DeRose2008-10-274-8/+11
| | |
| * | Env._finalize_core() now also loads config from Env.conf_defaultJason Gerard DeRose2008-10-272-0/+12
| | |
| * | Env._bootstrap() now also sets Env.conf_defaultJason Gerard DeRose2008-10-273-6/+16
| | |
| * | Removed depreciated load_plugins.py module; changed all places where ↵Jason Gerard DeRose2008-10-275-88/+7
| | | | | | | | | | | | load_plugins was imported to now call api.load_plugins()
| * | Copied plugin loading function from load_plugins.py to util.py; ↵Jason Gerard DeRose2008-10-272-0/+56
| | | | | | | | | | | | 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-262-0/+26
| | |
| * | Implemented placeholder API.bootstrap() method; added API __doing(), ↵Jason Gerard DeRose2008-10-262-84/+128
| | | | | | | | | | | | __do_if_not_done(), isdone() methods borrowed from Env; API.finalize() now cascades call to API.bootstrap()
| * | Added more needed config in DEFAULT_CONFIGJason Gerard DeRose2008-10-241-4/+31
| | |