lenya/src/webapp/lenya/bin util.xml,1.2,1.3

Michael Wechner <[email protected]> Thu, 22 May 2003 16:15:49 +0200
Newsgroups gmane.comp.cms.wyona.cvs
Message-ID <[email protected]>
Update of /repository/lenya/src/webapp/lenya/bin
In directory erbium:/tmp/cvs-serv16296/src/webapp/lenya/bin

Modified Files:
	util.xml 
Log Message:
jtidy added

Index: util.xml
===================================================================
RCS file: /repository/lenya/src/webapp/lenya/bin/util.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** util.xml	24 Apr 2003 13:53:15 -0000	1.2
--- util.xml	22 May 2003 14:15:47 -0000	1.3
***************
*** 36,39 ****
--- 36,40 ----
      <pathelement path="${lenya.dir.web-inf}/lib/lucene-1.3-dev1.jar"/>
      <pathelement path="${lenya.dir.web-inf}/lib/websphinx.jar"/>
+     <pathelement path="${lenya.dir.web-inf}/lib/jtidy-04aug2000r7-dev.jar"/>
    </path>
  </target>
***************
*** 49,52 ****
--- 50,77 ----
  
  
+ 
+ <target name="ssi" description="Server Side Include" depends="init">
+   <echo>INFO: Server Side Include</echo>
+ 
+   <java classname="org.lenya.util.SSI">
+     <arg value="ssi.html"/>
+ <!--
+     <arg value="../../../../ssi.html"/>
+ -->
+     <classpath refid="class.path"/>
+   </java>
+ </target>
+ 
+ 
+ <target name="jtidy" description="JTidy" depends="init">
+   <echo>INFO: JTidy</echo>
+ 
+   <java classname="org.apache.lenya.util.TidyCommandLine">
+     <arg value="file:/home/michiii/src/lenya/src/webapp/lenya/resources/misc/midas/midas.html"/>
+     <arg value="midas.xhtml"/>
+     <arg value="error.log"/>
+     <classpath refid="class.path"/>
+   </java>
+ </target>