]> git.argeo.org Git - gpl/argeo-slc.git/commitdiff
Dump HTML results by default to work dir
authorMathieu Baudier <mbaudier@argeo.org>
Sat, 21 Jun 2008 18:01:42 +0000 (18:01 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Sat, 21 Jun 2008 18:01:42 +0000 (18:01 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@1274 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.slc.core/src/main/resources/org/argeo/slc/castor/spring/applicationContext.xml

index 28b75f8dfd4efb5a75c9849b158d747e6568ef3e..45a470a3f2eb1913ad381355a69dfb0ac81370a0 100644 (file)
@@ -1,40 +1,38 @@
-<beans xmlns="http://www.springframework.org/schema/beans"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"\r
-       default-lazy-init="true">\r
-\r
-       <bean id="slcDefault.castor.marshaller"\r
-               class="org.springframework.oxm.castor.CastorMarshaller">\r
-               <property name="mappingLocations">\r
-                       <list>\r
-                               <value>\r
-                                       classpath:org/argeo/slc/castor/msg/mapping.xml\r
-                               </value>\r
-                               <value>\r
-                                       classpath:org/argeo/slc/castor/process/mapping.xml\r
-                               </value>\r
-                               <value>\r
-                                       classpath:org/argeo/slc/castor/structure/mapping.xml\r
-                               </value>\r
-                               <value>\r
-                                       classpath:org/argeo/slc/castor/test/mapping.xml\r
-                               </value>\r
-                       </list>\r
-               </property>\r
-               <property name="whitespacePreserve" value="true" />\r
-       </bean>\r
-\r
-       <bean id="slcDefault.castor.xsltReportGenerator"\r
-               class="org.argeo.slc.core.test.tree.XsltReportGenerator"\r
-               init-method="init">\r
-               <property name="xsltStyleSheet"\r
-                       value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />\r
-               <property name="marshaller" ref="slcDefault.castor.marshaller" />\r
-               <property name="logXml" value="false" />\r
-               <!-- \r
-                       <property name="outputDir" value="/path/to/output/dir" />\r
-               -->\r
-       </bean>\r
-\r
-\r
-</beans>\r
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
+       default-lazy-init="true">
+
+       <bean id="slcDefault.castor.marshaller"
+               class="org.springframework.oxm.castor.CastorMarshaller">
+               <property name="mappingLocations">
+                       <list>
+                               <value>
+                                       classpath:org/argeo/slc/castor/msg/mapping.xml
+                               </value>
+                               <value>
+                                       classpath:org/argeo/slc/castor/process/mapping.xml
+                               </value>
+                               <value>
+                                       classpath:org/argeo/slc/castor/structure/mapping.xml
+                               </value>
+                               <value>
+                                       classpath:org/argeo/slc/castor/test/mapping.xml
+                               </value>
+                       </list>
+               </property>
+               <property name="whitespacePreserve" value="true" />
+       </bean>
+
+       <bean id="slcDefault.castor.xsltReportGenerator"
+               class="org.argeo.slc.core.test.tree.XsltReportGenerator"
+               init-method="init">
+               <property name="xsltStyleSheet"
+                       value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
+               <property name="marshaller" ref="slcDefault.castor.marshaller" />
+               <property name="logXml" value="false" />
+               <property name="outputDir" value="${slc.workDir}/results/html" />
+       </bean>
+
+
+</beans>