From: Finn B. <bc...@us...> - 2001-08-06 18:26:52
|
Update of /cvsroot/jython/jython/Doc In directory usw-pr-cvs1:/tmp/cvs-serv30916 Modified Files: compile.ht Log Message: Updated the ant.properties example. Added description of installing PyXML sources. Index: compile.ht =================================================================== RCS file: /cvsroot/jython/jython/Doc/compile.ht,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -d -r2.4 -r2.5 *** compile.ht 2001/07/16 13:20:21 2.4 --- compile.ht 2001/08/06 18:26:49 2.5 *************** *** 21,30 **** and local options. My <code>ant.properties</code> file look like this: <blockquote><pre> ! javaccHome = i:\\java\\Javacc2.0\\bin\\lib #build.compiler = classic build.compiler = jikes debug=on - </pre></blockquote> <p> --- 21,47 ---- and local options. My <code>ant.properties</code> file look like this: <blockquote><pre> ! # javaccHome2 is needed when making modification to the grammar. ! javaccHome2 = d:\\java\\Javacc2.0\\bin\\lib ! ! # PyXmlHome is needed when running the installXML ant task to ! # copy PyXML files to jython. ! PyXmlHome = d:\\python\\PyXML-0.6.6 ! #build.compiler = classic build.compiler = jikes debug=on + # python.home is needed when building the documentation and installing + # PyXML sources. + python.home=d:\\python\\python211 + + # Needed when building documentation. + ht2html.dir=d:\\jython\\ht2html-1.1 + jython.home=d:\\jython\\CVS + + # Needed when installing documentation. + scp.command=scp + scp.user=bckfnn + </pre></blockquote> <p> *************** *** 65,70 **** <blockquote><pre> python.path=d:\\python\\Python-2.1\\Lib ! </pre><blockquote> </ul> --- 82,92 ---- <blockquote><pre> python.path=d:\\python\\Python-2.1\\Lib ! </pre></blockquote> + <li>The PyXML sources (the content of ./Lib/xml) is not included in the + CVS repository. This is mainly because PyXML is developed and released in its + own time cycle. To install PyXML support in a CVS version, the ant properties + <code>PyXmlHome</code> and <code>python.home</code> must be configured and + the ant task <code>installXML</code> must be executed. </ul> |