Changes between Initial Version and Version 1 of BluePrint/UpgradeConfig


Ignore:
Timestamp:
04/17/12 19:02:06 (13 years ago)
Author:
synotna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/UpgradeConfig

    v1 v1  
     1=Config=
     2Currently 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==
     9Python'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