[izpack-changes] r2029 - izpack-src/trunk/src/lib/com/izforge/izpack/compiler
noreply at berlios.de
noreply at berlios.de
Thu Jan 31 10:51:36 CET 2008
Author: matfud
Date: 2008-01-31 10:51:35 +0100 (Thu, 31 Jan 2008)
New Revision: 2029
Modified:
izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java
Log:
change name of parse attribute on res elements back to 'parse'
Modified: izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java
===================================================================
--- izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java 2008-01-28 23:33:16 UTC (rev 2028)
+++ izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java 2008-01-31 09:51:35 UTC (rev 2029)
@@ -1298,7 +1298,9 @@
XMLElement res = (XMLElement) iter.next();
String id = requireAttribute(res, "id");
String src = requireAttribute(res, "src");
- boolean substitute = validateYesNoAttribute(res, "substitute", NO);
+ // the parse attribute causes substitution to occur
+ boolean substitute = validateYesNoAttribute(res, "parse", NO);
+ // the parsexml attribute causes the xml document to be parsed
boolean parsexml = validateYesNoAttribute(res, "parsexml", NO);
// basedir is not prepended if src is already an absolute path
More information about the izpack-changes
mailing list