[Htmlparser-cvs] htmlparser build.xml,1.71,1.72
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-09-02 02:28:33
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29769 Modified Files: build.xml Log Message: Implemented: RFE #1017249 HTML Client Doesn't Support Cookies but will follow redirect RFE #1010586 Add support for password protected URL and RFE #1000739 Add support for proxy scenario A new http package is added, the primary class being Connectionmanager which handles proxies, passwords and cookies. Some testing still needed. Also removed some line separator cruft. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** build.xml 29 Jul 2004 03:02:19 -0000 1.71 --- build.xml 2 Sep 2004 02:28:16 -0000 1.72 *************** *** 236,239 **** --- 236,242 ---- <include name="org/htmlparser/Tag.java"/> <include name="org/htmlparser/Text.java"/> + <include name="org/htmlparser/http/ConnectionManager.java"/> + <include name="org/htmlparser/http/ConnectionMonitor.java"/> + <include name="org/htmlparser/http/Cookie.java"/> <include name="org/htmlparser/util/ParserException.java"/> <include name="org/htmlparser/util/ChainedException.java"/> *************** *** 272,275 **** --- 275,281 ---- <include name="org/htmlparser/scanners/Scanner.class"/> <include name="org/htmlparser/scanners/TagScanner.class"/> + <include name="org/htmlparser/http/ConnectionManager.class"/> + <include name="org/htmlparser/http/ConnectionMonitor.class"/> + <include name="org/htmlparser/http/Cookie.class"/> <include name="org/htmlparser/util/ParserException.class"/> <include name="org/htmlparser/util/ChainedException.class"/> *************** *** 420,423 **** --- 426,430 ---- <group title="Beans" packages="org.htmlparser.beans"/> <group title="Patterns" packages="org.htmlparser.visitors,org.htmlparser.nodeDecorators,org.htmlparser.filters"/> + <group title="Http" packages="org.htmlparser.http"/> <group title="Sax" packages="org.htmlparser.sax"/> <group title="Utility" packages="org.htmlparser.util,org.htmlparser.util.sort"/> |