[Yanel-commits] rev 23254 - public/yanel/trunk/src/build/targets

michi at wyona.com michi at wyona.com
Tue Mar 13 23:49:48 CET 2007


Author: michi
Date: 2007-03-13 23:49:46 +0100 (Tue, 13 Mar 2007)
New Revision: 23254

Modified:
   public/yanel/trunk/src/build/targets/check-conf-version.xml
Log:
reading attributes fixed

Modified: public/yanel/trunk/src/build/targets/check-conf-version.xml
===================================================================
--- public/yanel/trunk/src/build/targets/check-conf-version.xml	2007-03-13 22:21:26 UTC (rev 23253)
+++ public/yanel/trunk/src/build/targets/check-conf-version.xml	2007-03-13 22:49:46 UTC (rev 23254)
@@ -23,8 +23,8 @@
 
   <target name="check-config-version-yanel-xml" if="local.yanel.config.exists">
     <echo>Check version of local.yanel.xml ...</echo>
-    <xmlproperty file="${yanel.home.dir}/conf/yanel.xml" prefix="defaultconf" semanticAttributes="true"/>
-    <xmlproperty file="${yanel.home.dir}/${local.config.dir}/local.yanel.xml" prefix="localconf" semanticAttributes="true"/>
+    <xmlproperty file="${yanel.home.dir}/conf/yanel.xml" prefix="defaultconf" collapseAttributes="true"/>
+    <xmlproperty file="${yanel.home.dir}/${local.config.dir}/local.yanel.xml" prefix="localconf" collapseAttributes="true"/>
     <condition property="local.yanel.properties.in.sync">
       <equals arg1="${defaultconf.yanel.version}" arg2="${localconf.yanel.version}"/>
     </condition>
@@ -33,13 +33,8 @@
 
   <target name="check-config-version-realms-xml" if="local.realms.config.exists">
     <echo>Check version of local.realms.xml ...</echo>
-    <property name="defaultconf.realms.version" value="2007"/>
-    <property name="localconf.realms.version" value="2007"/>
-    <!-- TODO: There seems to be a problem re Overriding ... -->
-<!--
-    <xmlproperty file="${yanel.home.dir}/conf/realms.xml" prefix="defaultconf" semanticAttributes="true"/>
-    <xmlproperty file="${yanel.home.dir}/${local.config.dir}/local.realms.xml" prefix="localconf" semanticAttributes="true"/>
--->
+    <xmlproperty file="${yanel.home.dir}/conf/realms.xml" prefix="defaultconf" collapseAttributes="true"/>
+    <xmlproperty file="${yanel.home.dir}/${local.config.dir}/local.realms.xml" prefix="localconf" collapseAttributes="true"/>
     <condition property="local.realms.properties.in.sync">
       <equals arg1="${defaultconf.realms.version}" arg2="${localconf.realms.version}"/>
     </condition>
@@ -48,8 +43,8 @@
 
   <target name="check-config-version-resource-types-xml" if="local.resource-types.config.exists">
     <echo>Check version of local.resource-types.xml ...</echo>
-    <xmlproperty file="${yanel.home.dir}/conf/resource-types.xml" prefix="defaultconf" semanticAttributes="true"/>
-    <xmlproperty file="${yanel.home.dir}/${local.config.dir}/local.resource-types.xml" prefix="localconf" semanticAttributes="true"/>
+    <xmlproperty file="${yanel.home.dir}/conf/resource-types.xml" prefix="defaultconf" collapseAttributes="true"/>
+    <xmlproperty file="${yanel.home.dir}/${local.config.dir}/local.resource-types.xml" prefix="localconf" collapseAttributes="true"/>
     <condition property="local.resource-types.properties.in.sync">
       <equals arg1="${defaultconf.resource-types.version}" arg2="${localconf.resource-types.version}"/>
     </condition>




More information about the Yanel-commits mailing list