| | 1 | =Config= |
| | 2 | Currently merging new config options to existing deployments must be done by hand. This should be possible automatically. |
| | 3 | |
| | 4 | '''Requirements''' |
| | 5 | * Merge current settings with default config into new config |
| | 6 | * Preserve comments |
| | 7 | |
| | 8 | ==ConfigParser== |
| | 9 | Python's built-in ConfigParser does not support preserving comments. |
| | 10 | |
| | 11 | ==ConfigObj== |
| | 12 | [http://www.voidspace.org.uk/python/configobj.html ConfigObj documentation] |
| | 13 | [http://pypi.python.org/pypi/configobj/ ConfigObj on PyPI] |
| | 14 | |
| | 15 | *INI style config files, [http://www.voidspace.org.uk/python/configobj.html#config-files example] |
| | 16 | *Used by bazaar, chandler, matplotlib, ipython, elisa |
| | 17 | |
| | 18 | ==Config== |
| | 19 | [http://www.red-dove.com/config-doc/ Config documentation] |
| | 20 | |
| | 21 | *Not sure if merge function supports preserving comments |