From: Sverre B. <sv...@us...> - 2005-10-19 13:52:01
|
Update of /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16610/lib Modified Files: config.inc Log Message: Index: config.inc =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib/config.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** config.inc 19 Oct 2005 13:47:59 -0000 1.6 --- config.inc 19 Oct 2005 13:51:48 -0000 1.7 *************** *** 34,41 **** $conf_debug = 0; // Print out some debug info ! error_reporting(E_WARNING); // Path to includefiles ! $conf_rootpath = "/opt/lampp/htdocs/aaWera"; $conf_includepath = "$conf_rootpath/lib"; $conf_searchenginepath = "$conf_includepath/seal"; --- 34,41 ---- $conf_debug = 0; // Print out some debug info ! #error_reporting(E_ALL); // Path to includefiles ! $conf_rootpath = "/opt/lampp/htdocs/wera"; $conf_includepath = "$conf_rootpath/lib"; $conf_searchenginepath = "$conf_includepath/seal"; *************** *** 43,49 **** // What search engine to use $conf_searchengine = "nutch"; - #$conf_searchengine_url = "http://wbsearch04.archive.org:8080/nutchwax/opensearch"; $conf_searchengine_url = "http://localhost:8082/nutchwax/opensearch"; - #$conf_searchengine_url = "http://fast3.nb.no:8080/nutchwax/opensearch"; $conf_index_file = $conf_searchenginepath . "/" . $conf_searchengine . ".inc"; $conf_index_class = $conf_searchengine . "Search"; --- 43,47 ---- *************** *** 55,72 **** // // TODO : Move this into the ARC Retriever - #$conf_aid_prefix = "/2/katrina/nutch-data/arcs/"; $conf_aid_prefix = "/home/sverreb/apps/data/arcs/"; - #$conf_aid_prefix = "/home/wera/arcs/"; $conf_aid_suffix = ".arc.gz"; // Prefix to document retriever - #$document_retriever = "http://wbsearch04.archive.org:8080/ArcRetriever/ArcRetriever"; $document_retriever = "http://localhost:8082/arcretriever/arcretriever"; - #$document_retriever = "http://fast3.nb.no:8080/ArcRetriever/ArcRetriever"; - $conf_document_retriever = "$document_retriever?reqtype=getfile&aid="; // URL of ui installation ! $conf_http_host = "http://localhost/aaWera"; // Set to true if you want number of versions // to show up in each single search result (expensive on NutchWax) --- 53,66 ---- // // TODO : Move this into the ARC Retriever $conf_aid_prefix = "/home/sverreb/apps/data/arcs/"; $conf_aid_suffix = ".arc.gz"; // Prefix to document retriever $document_retriever = "http://localhost:8082/arcretriever/arcretriever"; $conf_document_retriever = "$document_retriever?reqtype=getfile&aid="; // URL of ui installation ! $conf_http_host = "http://localhost/wera"; ! // Set to true if you want number of versions // to show up in each single search result (expensive on NutchWax) *************** *** 77,81 **** // otherwise set to false // Only kicks in if $conf_show_num_verions is true ! $conf_show_num_verions_matching_query = false; --- 71,75 ---- // otherwise set to false // Only kicks in if $conf_show_num_verions is true ! $conf_show_num_verions_matching_query = true; |