← Back to team overview

configglue team mailing list archive

[Merge] lp:~james-w/configglue/backwards-compat into lp:configglue

 

James Westby has proposed merging lp:~james-w/configglue/backwards-compat into lp:configglue.

Requested reviews:
  Configglue developers (configglue)

For more details, see:
https://code.launchpad.net/~james-w/configglue/backwards-compat/+merge/91127

Hi,

This adds some level of basic backwards compatibility with 0.10, so that
we can start to upgrade services to the new API without having to deploy
everything at once.

Thanks,

James
-- 
https://code.launchpad.net/~james-w/configglue/backwards-compat/+merge/91127
Your team Configglue developers is requested to review the proposed merge of lp:~james-w/configglue/backwards-compat into lp:configglue.
=== added directory 'configglue/pyschema'
=== added file 'configglue/pyschema/__init__.py'
--- configglue/pyschema/__init__.py	1970-01-01 00:00:00 +0000
+++ configglue/pyschema/__init__.py	2012-02-01 16:41:06 +0000
@@ -0,0 +1,2 @@
+from .parser import SchemaConfigParser
+from .schema import *

=== added file 'configglue/pyschema/glue.py'
--- configglue/pyschema/glue.py	1970-01-01 00:00:00 +0000
+++ configglue/pyschema/glue.py	2012-02-01 16:41:06 +0000
@@ -0,0 +1,1 @@
+from ..glue import *

=== added file 'configglue/pyschema/options.py'
--- configglue/pyschema/options.py	1970-01-01 00:00:00 +0000
+++ configglue/pyschema/options.py	2012-02-01 16:41:06 +0000
@@ -0,0 +1,1 @@
+from .schema import *

=== added file 'configglue/pyschema/parser.py'
--- configglue/pyschema/parser.py	1970-01-01 00:00:00 +0000
+++ configglue/pyschema/parser.py	2012-02-01 16:41:06 +0000
@@ -0,0 +1,1 @@
+from ..parser import *

=== added file 'configglue/pyschema/schema.py'
--- configglue/pyschema/schema.py	1970-01-01 00:00:00 +0000
+++ configglue/pyschema/schema.py	2012-02-01 16:41:06 +0000
@@ -0,0 +1,11 @@
+from ..schema import (
+    Schema,
+    Section as ConfigSection,
+    StringOption as StringConfigOption,
+    BoolOption as BoolConfigOption,
+    IntOption as IntConfigOption,
+    ListOption as LinesConfigOption,
+    TupleOption as TupleConfigOption,
+    DictOption as DictConfigOption,
+    Option as ConfigOption,
+    )


Follow ups