summaryrefslogtreecommitdiffstats
path: root/nova/compat
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated Folsom code: config convertJoe Gordon2012-10-022-203/+0
| | | | | | Removes config file converter: nova-manage config convert Change-Id: I146bff9ac00a4885e7054f999ae52159da3f86ef
* Merge "fix restructuredtext formatting in docstrings that show up in the ↵Jenkins2012-03-071-1/+1
|\ | | | | | | developer guide"
| * fix restructuredtext formatting in docstrings that show up in the developer ↵Doug Hellmann2012-03-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | guide blueprint sphinx-doc-cleanup bug 945160 - Correct parameter declarations, list formatting, cross-references, etc. - We don't need "let" in generate_autodoc_index.sh since we aren't doing math. - Change conf.py to not prefix class and function names with full namespace in generated output to save width on the screen. Change-Id: I9adc8681951913fd291d03e7142146e9d46841df
* | Allows new style config to be used for --flagfileVishvananda Ishaya2012-03-051-0/+4
|/ | | | | | | * includes tests * fixes bug 947549 Change-Id: Ibf319ea75a2d6156c5d8f1112cd58a33e5a98fe0
* Add utils.tempdir() context manager for easy temp dirsJohannes Erdfelt2012-02-281-0/+2
| | | | | | | | | | Fixes bug 883323 (and others) Users of tempfile.mkdtemp() need to make sure the directory is cleaned up when it's done being used. Unfortunately, not all of the code does so at all, or safely (by using a try/finally block). Change-Id: I270109d83efec4f8b3dd954021493f4d96c6ab79
* Handle --flagfile by converting to .ini styleMark McLoughlin2012-02-072-0/+197
Add code to translate flagfiles into .ini config files so that we can deprecate and, eventually remove, --flagfile. By using the flagfile compat code, we no longer need to process the contents of flagfiles as CLI options and we can reduce the number of CLI options to a sane set: --verbose --logdir --logfile --use_syslog --use_stderr --connection_type --sql_connection --api_paste_config --state_path --lock_path --fake_network --fake_rabbit This, in turn, means we can remove the evil hacks which we needed in order to register CLI options after the initial parsing of the command line. Change-Id: I9e24008fa634d7c8378b253c1f7a6d2169076086