| Commit message (Expand) | Author | Age | Files | Lines |
* | Started work on cleaning up how exceptions are caught and sys.exit() is calle... | Jason Gerard DeRose | 2008-11-13 | 2 | -43/+65 |
* | Change Param.__repr__() so it returns the exact expression that could create ... | Jason Gerard DeRose | 2008-11-13 | 2 | -15/+19 |
* | Param.__repr__() now uses util.make_repr() | Jason Gerard DeRose | 2008-11-13 | 1 | -5/+5 |
* | Added util.make_repr() function; added corresponding unit tests | Jason Gerard DeRose | 2008-11-13 | 2 | -0/+10 |
* | Calling ./ipa with no command now calls Command.help() | Jason Gerard DeRose | 2008-11-12 | 1 | -24/+27 |
* | output_for_cli signature is now output_for_cli(textui, result, *args, **options) | Jason Gerard DeRose | 2008-11-12 | 3 | -10/+15 |
* | Command.get_default() will now fill-in None for all missing non-required params | Jason Gerard DeRose | 2008-11-12 | 4 | -11/+35 |
* | Changed calling signature of output_for_cli(); started work on 'textui' backe... | Jason Gerard DeRose | 2008-11-12 | 3 | -63/+206 |
* | Renamed ipalib.get_standard_api() to create_api() | Jason Gerard DeRose | 2008-11-11 | 1 | -16/+16 |
* | Tutorial: improved clarity of 'How this tutorial is written' section | Jason Gerard DeRose | 2008-11-11 | 1 | -7/+6 |
* | Tutorial: fixed typo | Jason Gerard DeRose | 2008-11-10 | 1 | -3/+3 |
* | Tutorial: added intro section about Python interactive intepreter | Jason Gerard DeRose | 2008-11-10 | 1 | -9/+57 |
* | More tutorial work: made introduction more concise; moved note on markup to e... | Jason Gerard DeRose | 2008-11-10 | 1 | -38/+64 |
* | Added 'conf_dir' env variable, which is directory containing config files | Jason Gerard DeRose | 2008-11-10 | 3 | -1/+4 |
* | Fixed typo and made sentance clearer in tutorial | Jason Gerard DeRose | 2008-11-07 | 1 | -1/+1 |
* | Finished fist draft of plugin tutorial in ipalib/__init__.py docstring | Jason Gerard DeRose | 2008-11-07 | 3 | -14/+648 |
* | Added Plugin.call() method that calls an external executable via subprocess.c... | Jason Gerard DeRose | 2008-11-06 | 1 | -0/+11 |
* | Fix some problems uncovered during automation test work | Rob Crittenden | 2008-11-04 | 1 | -6/+17 |
* | Revive the hostgroup_container and include add/remove hosts in hostgroups plugin | Rob Crittenden | 2008-11-04 | 2 | -2/+27 |
* | Add 'all' option to host-find and pull attributes into a global list | Rob Crittenden | 2008-11-04 | 1 | -1/+9 |
* | Move socket errors from the XML-RPC plugin to the client | Rob Crittenden | 2008-11-03 | 2 | -1/+5 |
* | Handle exceptions in the command-line instead of in the XMLRPC client plugin | Rob Crittenden | 2008-11-03 | 2 | -8/+11 |
* | Uncomment some logging statements ported over from v1. | Rob Crittenden | 2008-11-03 | 3 | -4/+4 |
* | Partially revert back change. Del shouldn't provide default options. | Rob Crittenden | 2008-11-03 | 1 | -2/+0 |
* | Added custom log formatter util.LogFormatter that makes the human-readable ti... | Jason Gerard DeRose | 2008-10-31 | 3 | -4/+13 |
* | Renamed API.bootstrap_from_options() to bootstrap_with_global_options() | Jason Gerard DeRose | 2008-10-31 | 2 | -8/+5 |
* | Logging formats are now env variables; added log_format_stderr_debug format u... | Jason Gerard DeRose | 2008-10-31 | 3 | -28/+43 |
* | Reoganized global option functionality to it is easy for any script to use th... | Jason Gerard DeRose | 2008-10-31 | 3 | -20/+58 |
* | Logging is now configured in API.bootstrap(); removed depreciated util.config... | Jason Gerard DeRose | 2008-10-31 | 2 | -42/+43 |
* | API.finalize() now cascades call to API.load_plugins() | Jason Gerard DeRose | 2008-10-31 | 1 | -1/+1 |
* | Merge branch 'master' of git://git.engineering.redhat.com/users/rcritten/free... | Jason Gerard DeRose | 2008-10-30 | 2 | -0/+479 |
|\ |
|
| * | Initial implementation of automount support | Rob Crittenden | 2008-10-30 | 2 | -0/+479 |
* | | Plugin.set_api() now sets convience instance attributes from api for env, con... | Jason Gerard DeRose | 2008-10-30 | 1 | -1/+10 |
|/ |
|
* | Added ipalib.plugins.f_misc with new 'context' Command; moved 'env' Command f... | Jason Gerard DeRose | 2008-10-30 | 3 | -18/+76 |
* | Added tests.util.get_api() function to create a standard (api, home) tuple fo... | Jason Gerard DeRose | 2008-10-30 | 1 | -5/+3 |
* | Did some initial work for Context plugins | Jason Gerard DeRose | 2008-10-30 | 4 | -13/+51 |
* | Merge branch 'master' of git://git.engineering.redhat.com/users/rcritten/free... | Jason Gerard DeRose | 2008-10-29 | 5 | -1/+337 |
|\ |
|
| * | Implement host groups | Rob Crittenden | 2008-10-27 | 2 | -0/+329 |
| * | Fix comment | Rob Crittenden | 2008-10-27 | 1 | -1/+1 |
| * | Don't allow service-add to create host/ principals | Rob Crittenden | 2008-10-24 | 2 | -0/+7 |
* | | Added an example CLI-specific env command | Jason Gerard DeRose | 2008-10-28 | 1 | -0/+16 |
* | | lite-xmlrpc.py now uses api.bootstrap() property, logs to api.logger | Jason Gerard DeRose | 2008-10-28 | 3 | -4/+4 |
* | | util.configure_logging() now only configures file logging if it can create th... | Jason Gerard DeRose | 2008-10-28 | 1 | -5/+7 |
* | | Added util.configure_logging() function; API.bootstrap() now calls util.confi... | Jason Gerard DeRose | 2008-10-28 | 4 | -2/+59 |
* | | Fixed use of depreciated env.get() in b_xmlrpc.py module | Jason Gerard DeRose | 2008-10-27 | 1 | -10/+13 |
* | | API.load_plugins() no longer takes dry_run=False kwarg and instead checks in ... | Jason Gerard DeRose | 2008-10-27 | 2 | -4/+5 |
* | | More CLI cleanup, got all basics working again | Jason Gerard DeRose | 2008-10-27 | 2 | -70/+71 |
* | | More docstrings, functionality, and unit tests for improved CLI class | Jason Gerard DeRose | 2008-10-27 | 2 | -81/+166 |
* | | API.bootstrap() now calls Env._finalize_core(); updated unit tests | Jason Gerard DeRose | 2008-10-27 | 1 | -0/+1 |
* | | Implemented basic CLI.bootstrap(); added corresponding unit tests | Jason Gerard DeRose | 2008-10-27 | 2 | -23/+15 |