Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24770/src/org/htmlparser
Modified Files:
PrototypicalNodeFactory.java
Log Message:
Incorporated patch #1450095 Fix for Bug 1445309 from Trejkaz Xaoza.
Addition of code to parse XML processing instructions.
Index: PrototypicalNodeFactory.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/PrototypicalNodeFactory.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** PrototypicalNodeFactory.java 15 Nov 2005 02:09:10 -0000 1.18
--- PrototypicalNodeFactory.java 19 Mar 2006 15:01:24 -0000 1.19
***************
*** 62,65 ****
--- 62,66 ----
import org.htmlparser.tags.OptionTag;
import org.htmlparser.tags.ParagraphTag;
+ import org.htmlparser.tags.ProcessingInstructionTag;
import org.htmlparser.tags.ScriptTag;
import org.htmlparser.tags.SelectTag;
***************
*** 319,322 ****
--- 320,324 ----
registerTag (new OptionTag ());
registerTag (new ParagraphTag ());
+ registerTag (new ProcessingInstructionTag ());
registerTag (new ScriptTag ());
registerTag (new SelectTag ());
|