Update of /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib/seal
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26189/lib/seal
Modified Files:
nutch.inc
Log Message:
Fixed 1333042 Search result list - Bad handling of dedup result list
Index: nutch.inc
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib/seal/nutch.inc,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** nutch.inc 20 Oct 2005 07:20:39 -0000 1.7
--- nutch.inc 20 Oct 2005 10:40:48 -0000 1.8
***************
*** 62,65 ****
--- 62,66 ----
var $debug;
var $supressduplicates;
+ var $morepages;
/**
***************
*** 76,80 ****
$this->offset = 0;
$this->timespent = 0;
! $this->unsetSupressDuplicates();
}
--- 77,82 ----
$this->offset = 0;
$this->timespent = 0;
! $this->unsetSupressDuplicates();
! $this->morepages = false;
}
***************
*** 233,236 ****
--- 235,240 ----
$this->offset = trim($data);
break;
+ case "NUTCH:NEXTPAGE":
+ $this->morepages = true;
}
}
|