Update of /cvsroot/htmlparser/htmlparser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11717
Modified Files:
build.xml
Log Message:
Implement rudimentary sax parser.
Currently exposes DOM parser via sax project (http://sourceforge.net/projects/sax) interfaces.
Index: build.xml
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -d -r1.69 -r1.70
*** build.xml 2 Jul 2004 00:49:26 -0000 1.69
--- build.xml 14 Jul 2004 01:58:02 -0000 1.70
***************
*** 121,124 ****
--- 121,125 ----
<property name="junit.jar" value="${lib}/junit.jar"/>
<property name="commons-logging.jar" value="${lib}/commons-logging.jar"/>
+ <property name="sax2.jar" value="${lib}/sax2.jar"/>
<taskdef resource="checkstyletask.properties"
***************
*** 222,226 ****
<target name="compile" description="compile all java files">
! <javac srcdir="${src}" includes="org/htmlparser/**" excludes="org/htmlparser/tests/**,org/htmlparser/util/Generate.java" debug="on" classpath="src:${commons-logging.jar}"/>
</target>
--- 223,227 ----
<target name="compile" description="compile all java files">
! <javac srcdir="${src}" includes="org/htmlparser/**" excludes="org/htmlparser/tests/**" debug="on" classpath="src:${commons-logging.jar}"/>
</target>
***************
*** 246,253 ****
<target name="compileparser" depends="compilelexer" description="compile parser java files">
! <javac srcdir="${src}" debug="on" classpath="src:${commons-logging.jar}">
<include name="org/htmlparser/**/*.java"/>
<exclude name="org/htmlparser/tests/**"/>
- <exclude name="org/htmlparser/util/Generate.java"/>
<exclude name="org/htmlparser/lexerapplications/**/*.java"/>
</javac>
--- 247,253 ----
<target name="compileparser" depends="compilelexer" description="compile parser java files">
! <javac srcdir="${src}" debug="on" classpath="src:${commons-logging.jar}:${sax2.jar}">
<include name="org/htmlparser/**/*.java"/>
<exclude name="org/htmlparser/tests/**"/>
<exclude name="org/htmlparser/lexerapplications/**/*.java"/>
</javac>
***************
*** 294,298 ****
basedir="${src}"
includes="**/*.class **/*.gif"
! excludes="org/htmlparser/tests/**/*.class,org/htmlparser/util/Generate.class">
<manifest>
<attribute name="Main-Class" value="org.htmlparser.Parser"/>
--- 294,298 ----
basedir="${src}"
includes="**/*.class **/*.gif"
! excludes="org/htmlparser/tests/**/*.class">
<manifest>
<attribute name="Main-Class" value="org.htmlparser.Parser"/>
***************
*** 342,345 ****
--- 342,346 ----
<pathelement location="${junit.jar}"/>
<pathelement location="${commons-logging.jar}"/>
+ <pathelement location="${sax2.jar}"/>
<pathelement location="${java.home}/../lib/tools.jar"/>
</classpath>
***************
*** 351,354 ****
--- 352,356 ----
<pathelement location="${junit.jar}"/>
<pathelement location="${commons-logging.jar}"/>
+ <pathelement location="${sax2.jar}"/>
<pathelement location="${java.home}/../lib/tools.jar"/>
</classpath>
***************
*** 418,423 ****
--- 420,427 ----
<group title="Beans" packages="org.htmlparser.beans"/>
<group title="Patterns" packages="org.htmlparser.visitors,org.htmlparser.nodeDecorators,org.htmlparser.filters"/>
+ <group title="Sax" packages="org.htmlparser.sax"/>
<group title="Utility" packages="org.htmlparser.util,org.htmlparser.util.sort"/>
<link href="http://java.sun.com/j2se/1.4.2/docs/api/"/>
+ <link href="http://www.saxproject.org/apidoc/"/>
</javadoc>
<copy file="${resources}/inherit.gif" tofile="${docs}/javadoc/resources/inherit.gif" overwrite="true"/>
|