From: Sverre B. <sv...@us...> - 2005-10-20 07:20:48
|
Update of /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib/seal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17376/lib/seal Modified Files: nutch.inc Log Message: Removed aid prefix and suffix. Set in retriever config instead (see manual) Index: nutch.inc =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib/seal/nutch.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nutch.inc 12 Oct 2005 11:55:56 -0000 1.6 --- nutch.inc 20 Oct 2005 07:20:39 -0000 1.7 *************** *** 70,75 **** include ("config.inc"); $this->searchengineurl = $conf_searchengine_url; - $this->aid_prefix = $conf_aid_prefix; - $this->aid_suffix = $conf_aid_suffix; $this->debug = $conf_debug; $this->query = ""; --- 70,73 ---- *************** *** 197,201 **** } if (in_array("archiveidentifier", $this->resultfields)) { ! $this->resultset[$key]['archiveidentifier'] = $this->arc[$key]['offset'] . "/" . $this->aid_prefix . $this->arc[$key]['name'] . $this->aid_suffix; } } --- 195,199 ---- } if (in_array("archiveidentifier", $this->resultfields)) { ! $this->resultset[$key]['archiveidentifier'] = $this->arc[$key]['offset'] . "/" . $this->arc[$key]['name']; } } |