Update of /cvsroot/jython/jython
In directory usw-pr-cvs1:/tmp/cvs-serv23336
Modified Files:
build.xml
Log Message:
Support for PyXML. Copying of the PyXML files is a seperate (manual) step
at the moment.
Index: build.xml
===================================================================
RCS file: /cvsroot/jython/jython/build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** build.xml 2001/07/18 10:57:04 1.12
--- build.xml 2001/08/05 12:20:22 1.13
***************
*** 128,131 ****
--- 128,153 ----
</target>
+ <target name="installXML" depends="init">
+ <!-- Set the configuration variables python.home and PyXmlHome
+ in your ant.properties file -->
+ <copy todir="${sourceDir}/Lib/xml">
+ <fileset dir="${python.home}/Lib/xml" includes="__init__.py"/>
+ <fileset dir="${PyXmlHome}/xml" includes="
+ ns.py,
+ sax/*.py,
+ sax/**/drv_xmlproc.py,
+ sax/**/__init__.py,
+ utils/*.py,
+ dom/*.py,
+ dom/html/*.py,
+ dom/ext/*.py,
+ dom/ext/reader/__init__.py,
+ dom/ext/reader/Sax*.py,
+ parsers/__init__.py,
+ parsers/xmlproc/*.py,
+ "/>
+ </copy>
+ </target>
+
<target name="all" depends="init,clean,prepare,parser,compile,jar">
</target>
|