[Htmlparser-cvs] htmlparser/src/org/htmlparser/tags/data TagData.java,1.34,1.35
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-10-19 14:52:48
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data In directory sc8-pr-cvs1:/tmp/cvs-serv10542/tags/data Modified Files: TagData.java Log Message: Partition Attribute into a base class and PageAttribute class for the Lexer. Fixed the AppletTag.setAppletParams in a cheesy manner. Clear out the released NodeList entry on remove(). Dropped the HTMLTagParserTest tests, because they really weren't relevant any more. Index: TagData.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/data/TagData.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** TagData.java 5 Oct 2003 13:49:53 -0000 1.34 --- TagData.java 18 Oct 2003 20:50:37 -0000 1.35 *************** *** 75,79 **** isXmlEndTag); if (null != name && (0 == attributes.size ())) ! attributes.insertElementAt (new Attribute (name), 0); } --- 75,79 ---- isXmlEndTag); if (null != name && (0 == attributes.size ())) ! attributes.insertElementAt (new Attribute (name, null), 0); } |