[Htmlparser-cvs] htmlparser/src/org/htmlparser/tags JspTag.java,1.30,1.31
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-10-06 01:43:33
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1:/tmp/cvs-serv2828/tags Modified Files: JspTag.java Log Message: Updated tests to correspond to new behaviour. Mostly due to changes in order and case of tag contents. Of the forty odd remaining failing tests, the majority comprise altered functionality that needs to be resolved. Index: JspTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/JspTag.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** JspTag.java 28 Sep 2003 15:33:58 -0000 1.30 --- JspTag.java 6 Oct 2003 01:43:28 -0000 1.31 *************** *** 37,41 **** { /** ! * The HTMLJspTag is constructed by providing the beginning posn, ending posn * and the tag contents. * @param tagData The data for this tag. --- 37,41 ---- { /** ! * The JspTag is constructed by providing the beginning posn, ending posn * and the tag contents. * @param tagData The data for this tag. *************** *** 47,51 **** public String toHtml() { ! return "<%"+getTagContents()+"%>"; } --- 47,51 ---- public String toHtml() { ! return "<"+getTagContents()+">"; } |