[Formed-commits] r343 - in trunk: . formed/formed/plugins/export
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Dec 2 11:42:30 CET 2009
Author: torsten
Date: 2009-12-02 11:42:29 +0100 (Wed, 02 Dec 2009)
New Revision: 343
Modified:
trunk/ChangeLog
trunk/formed/formed/plugins/export/typemap.py
Log:
do not ignore conditional nodes on traversal
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-11-17 15:22:18 UTC (rev 342)
+++ trunk/ChangeLog 2009-12-02 10:42:29 UTC (rev 343)
@@ -1,3 +1,8 @@
+2009-12-02 Torsten Irländer <torsten.irlaender at intevation.de>
+
+ * formed/formed/plugins/export/typemap.py: do not ignore conditional
+ nodes on traversal.
+
2009-11-17 Sascha L. Teichmann <teichmann at intevation.de>
* formed/formed/model/exprtree.py: Recognize '%' vars
Modified: trunk/formed/formed/plugins/export/typemap.py
===================================================================
--- trunk/formed/formed/plugins/export/typemap.py 2009-11-17 15:22:18 UTC (rev 342)
+++ trunk/formed/formed/plugins/export/typemap.py 2009-12-02 10:42:29 UTC (rev 343)
@@ -121,6 +121,8 @@
self._matchRepeat(nc)
elif isinstance(nc, data.GroupNode):
self._matchGroup(nc)
+ elif isinstance(nc, data.ConditionalNode):
+ self._matchGroup(nc)
elif isinstance(nc, data.RadioNode):
self._matchRadio(nc)
elif isinstance(nc, data.ChoiceNode):
More information about the Formed-commits
mailing list