summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* env plugin now subclasses from RemoteOrLocalJason Gerard DeRose2008-11-143-22/+14
|
* Added frontend.LocalOrRemote command base class for commands like envJason Gerard DeRose2008-11-143-2/+88
|
* Fixed doctest in tutorialJason Gerard DeRose2008-11-141-1/+1
|
* Add autmount-specific location and default entriesRob Crittenden2008-11-144-10/+33
|
* Tutorial: fixed typo in 'How your command should print to stdout' sectionJason Gerard DeRose2008-11-141-1/+1
|
* Tutorial: fixed typo in 'First steps: A simple command plugin' sectionJason Gerard DeRose2008-11-141-1/+1
|
* Tutorial: another small change to section on using output_for_cli()Jason Gerard DeRose2008-11-141-3/+3
|
* Tutorial: command in output_for_cli() example now also takes an argumentJason Gerard DeRose2008-11-141-31/+47
|
* Added print_plain() and print_paragraph() methods to textui plugin and ↵Jason Gerard DeRose2008-11-141-42/+77
| | | | cleaned up the order of its methods
* Tutorial: small improvements to section on using output_for_cli()Jason Gerard DeRose2008-11-141-5/+10
|
* Tutorial: added section on implementing an output_for_cli() methodJason Gerard DeRose2008-11-141-4/+105
|
* Tutorial: added section on allowed return values from a command's execute() ↵Jason Gerard DeRose2008-11-141-0/+42
| | | | method
* Added textui.prompt() method, which CLI.prompt_interactively() usesJason Gerard DeRose2008-11-131-5/+12
|
* Started work on cleaning up how exceptions are caught and sys.exit() is ↵Jason Gerard DeRose2008-11-133-46/+68
| | | | called in ipalib.cli.CLI
* Change Param.__repr__() so it returns the exact expression that could create ↵Jason Gerard DeRose2008-11-133-15/+31
| | | | it; added unit test for Param.__repre__()
* Param.__repr__() now uses util.make_repr()Jason Gerard DeRose2008-11-131-5/+5
|
* Added util.make_repr() function; added corresponding unit testsJason Gerard DeRose2008-11-133-2/+24
|
* Calling ./ipa with no command now calls Command.help()Jason Gerard DeRose2008-11-121-24/+27
|
* output_for_cli signature is now output_for_cli(textui, result, *args, **options)Jason Gerard DeRose2008-11-124-20/+24
|
* Command.get_default() will now fill-in None for all missing non-required paramsJason Gerard DeRose2008-11-124-11/+35
|
* Changed calling signature of output_for_cli(); started work on 'textui' ↵Jason Gerard DeRose2008-11-125-64/+237
| | | | backend plugin
* Renamed ipalib.get_standard_api() to create_api()Jason Gerard DeRose2008-11-112-17/+17
|
* Tutorial: improved clarity of 'How this tutorial is written' sectionJason Gerard DeRose2008-11-111-7/+6
|
* Tutorial: fixed typoJason Gerard DeRose2008-11-101-3/+3
|
* Tutorial: added intro section about Python interactive intepreterJason Gerard DeRose2008-11-101-9/+57
|
* More tutorial work: made introduction more concise; moved note on markup to ↵Jason Gerard DeRose2008-11-101-38/+64
| | | | end; added note about Bazaar
* Added 'conf_dir' env variable, which is directory containing config filesJason Gerard DeRose2008-11-103-1/+4
|
* Fixed typo and made sentance clearer in tutorialJason Gerard DeRose2008-11-071-1/+1
|
* Finished fist draft of plugin tutorial in ipalib/__init__.py docstringJason Gerard DeRose2008-11-075-17/+650
|
* Added Plugin.call() method that calls an external executable via ↵Jason Gerard DeRose2008-11-061-0/+11
| | | | subprocess.call()
* Tests for the automount pluginRob Crittenden2008-11-041-0/+184
|
* Fix some problems uncovered during automation test workRob Crittenden2008-11-041-6/+17
|
* Add new tests for hosts and groups of hostsRob Crittenden2008-11-042-0/+277
|
* Revive the hostgroup_container and include add/remove hosts in hostgroups pluginRob Crittenden2008-11-042-2/+27
|
* Add 'all' option to host-find and pull attributes into a global listRob Crittenden2008-11-041-1/+9
|
* Skip tests if the remote XML-RPC server is not responding.Rob Crittenden2008-11-034-3/+53
|
* Move socket errors from the XML-RPC plugin to the clientRob Crittenden2008-11-032-1/+5
|
* Initial tests for user, group and service plugin APIRob Crittenden2008-11-034-0/+403
|
* 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
|