Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8914/src/org/htmlparser/tags
Modified Files:
TableTag.java TableRow.java
Log Message:
FilterBuilder
Index: TableRow.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TableRow.java,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** TableRow.java 24 Jan 2004 23:57:52 -0000 1.40
--- TableRow.java 13 Feb 2005 20:36:00 -0000 1.41
***************
*** 108,112 ****
new NotFilter (cls), // but not past the first row
recursion));
! recursion.mFilter = filter;
kids = kids.extractAllNodesThatMatch (
// it's a column, and has this row as it's enclosing row
--- 108,112 ----
new NotFilter (cls), // but not past the first row
recursion));
! recursion.setParentFilter (filter);
kids = kids.extractAllNodesThatMatch (
// it's a column, and has this row as it's enclosing row
***************
*** 155,159 ****
new NotFilter (cls), // but not past the first row
recursion));
! recursion.mFilter = filter;
kids = kids.extractAllNodesThatMatch (
// it's a header, and has this row as it's enclosing row
--- 155,159 ----
new NotFilter (cls), // but not past the first row
recursion));
! recursion.setParentFilter (filter);
kids = kids.extractAllNodesThatMatch (
// it's a header, and has this row as it's enclosing row
Index: TableTag.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/TableTag.java,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** TableTag.java 24 Jan 2004 23:58:04 -0000 1.39
--- TableTag.java 13 Feb 2005 20:36:00 -0000 1.40
***************
*** 100,104 ****
new NotFilter (cls), // but not past the first table
recursion));
! recursion.mFilter = filter;
kids = kids.extractAllNodesThatMatch (
// it's a row, and has this table as it's enclosing table
--- 100,104 ----
new NotFilter (cls), // but not past the first table
recursion));
! recursion.setParentFilter (filter);
kids = kids.extractAllNodesThatMatch (
// it's a row, and has this table as it's enclosing table
|