summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | 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
| | |
| * | Finished Env._finalize() and corresponding unit testsJason Gerard DeRose2008-10-242-6/+31
| | |
| * | Finished Env._finalize_core() and corresponding unit testsJason Gerard DeRose2008-10-244-24/+208
| | |
| * | Added tests.util.TempHome class for created a tempdir and setting ↵Jason Gerard DeRose2008-10-242-14/+34
| | | | | | | | | | | | os.environ['HOME'] to it; updated various unit tests for Env so they are run using a tempdir for home
| * | Env._bootstrap() now raises StandardError if called more than onceJason Gerard DeRose2008-10-242-0/+11
| | |
| * | Merge branch 'master' of ↵Jason Gerard DeRose2008-10-245-9/+30
| |\| | | | | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| | * Use posixAccount instead of person to identify usersRob Crittenden2008-10-244-5/+11
| | | | | | | | | | | | Add output_for_cli to service-find
| | * If a password is supplied then this host will be bulk-enrolledRob Crittenden2008-10-241-4/+19
| | | | | | | | | | | | | | | A bulk-enrolled host does not get a kerberos service principal until enrollment time.
| * | Added ipalib/constants.py; added Env._load_config() method along with ↵Jason Gerard DeRose2008-10-245-6/+329
| | | | | | | | | | | | comprehensive unit tests for same
| * | Finished doodle with stricter version of EnvironmentJason Gerard DeRose2008-10-242-2/+207
| |/
| * IPAError now more appropriately subclasses from StandardError instead of ↵Jason Gerard DeRose2008-10-232-2/+2
| | | | | | | | Exception
| * Added a TODO fileJason Gerard DeRose2008-10-232-1/+22
| |
| * Use common display function for user-show and user-find.Rob Crittenden2008-10-233-14/+45
| | | | | | | | | | Add --all option to user-find Fix command-line help to make sense on searches as well
| * Use ldaphost and ldapport environment variables in mod_python xml-rpc serverRob Crittenden2008-10-231-3/+3
| | | | | | | | Fix default environment creation
| * Fix ipa command running in server_context=TrueRob Crittenden2008-10-233-6/+22
| | | | | | | | | | | | Make the LDAP host and port environment variables More changes so that commands have a shell return value lite-xmlrpc no longer hardcodes the kerberos credentials cache location
| * Add build to .gitignoreRob Crittenden2008-10-231-0/+1
| |
| * Put a try/except around the 'from mod_python import apache' in ↵Jason Gerard DeRose2008-10-221-1/+4
| | | | | | | | mod_python_xmlrpc so epydoc can introspect it
| * make-doc now includes the lite-* scripts, both with now check in __name__ == ↵Jason Gerard DeRose2008-10-224-37/+61
| | | | | | | | '__main__' before starting
| * Added place-holder mod_python_webui.py module; cleaned up lite-* and ↵Jason Gerard DeRose2008-10-224-6/+34
| | | | | | | | mod_python_* docstrings
| * Merge branch 'master' of ↵Jason Gerard DeRose2008-10-229-14/+324
| |\ | | | | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| | * Implement the host commandsRob Crittenden2008-10-227-11/+316
| | | | | | | | | | | | | | | In order for this to work against a v1 database the update host.update needs to be applied
| | * Return a value to the shell that called ipaRob Crittenden2008-10-222-3/+8
| | |
| * | Renamed ipa_xmlrpc/ipaxmlrpc.py to ipa_server/mod_python_xmlrpc.pyJason Gerard DeRose2008-10-221-0/+0
| | |
| * | Renamed Rob's test_server script to lite-xmlrpc.pyJason Gerard DeRose2008-10-221-0/+0
| | |
| * | Removed my lite-xmlrpc.py scriptJason Gerard DeRose2008-10-221-51/+0
| | |
| * | Fixed setup.py and MANIFEST.in so that templates/*.kid and static/ in ↵Jason Gerard DeRose2008-10-222-1/+6
| | | | | | | | | | | | ipa_webui are included
| * | Added MooTools 1.2.1 in ipa_webui/static/mootools-core.jsJason Gerard DeRose2008-10-221-0/+3946
| | |
| * | Merge branch 'master' of ↵Jason Gerard DeRose2008-10-220-0/+0
| |\ \ | | | | | | | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| | * | Merge branch 'master' of git://git.engineering.redhat.com/users/jderose/freeipa2Rob Crittenden2008-10-221-0/+39
| | |\|
| | * | Implement group member add/removeRob Crittenden2008-10-213-22/+193
| | | | | | | | | | | | | | | | Add gidNumber to the group command-line