From: <bra...@us...> - 2008-04-16 00:01:58
|
Revision: 2241 http://archive-access.svn.sourceforge.net/archive-access/?rev=2241&view=rev Author: bradtofel Date: 2008-04-15 16:58:06 -0700 (Tue, 15 Apr 2008) Log Message: ----------- TWEAK: made format more palletable to the validators, but this file is not intended for actual production use, just as a set of configuration examples. Also updated ResourceStore implementation classnames, hopefully to clear up any more confusion with the old classnames. Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/WEB-INF/wayback-templates.xml Modified: trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/WEB-INF/wayback-templates.xml =================================================================== --- trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/WEB-INF/wayback-templates.xml 2008-04-15 00:03:57 UTC (rev 2240) +++ trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/WEB-INF/wayback-templates.xml 2008-04-15 23:58:06 UTC (rev 2241) @@ -1,3 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> +<beans> <!-- SearchResultSource templates --> <bean id="bdbsearchresultsource" @@ -35,20 +38,18 @@ <property name="maxRecords" value="10000" /> </bean> - <property name="remotenutchindex"> - <bean class="org.archive.wayback.resourceindex.NutchResourceIndex" init-method="init"> - <property name="searchUrlBase" value="http://webteam-ws.us.archive.org:8080/katrina/opensearch" /> - <property name="maxRecords" value="100" /> - </bean> - </property> + <bean id="remotenutchindex" class="org.archive.wayback.resourceindex.NutchResourceIndex" init-method="init"> + <property name="searchUrlBase" value="http://webteam-ws.us.archive.org:8080/katrina/opensearch" /> + <property name="maxRecords" value="100" /> + </bean> <!-- ResourceStore templates --> - <bean id="localstore" class="org.archive.wayback.resourcestore.LocalARCResourceStore"> - <property name="arcDir" value="/tmp/wayback/arcs/" /> + <bean id="localstore" class="org.archive.wayback.resourcestore.LocalesourceStore"> + <property name="dataDir" value="/tmp/wayback/arcs/" /> </bean> - <bean id="remotestore" class="org.archive.wayback.resourcestore.HttpARCResourceStore"> + <bean id="remotestore" class="org.archive.wayback.resourcestore.Http11ResourceStore"> <property name="urlPrefix" value="http://localhost:8080/arcproxy/" /> </bean> @@ -140,4 +141,4 @@ </bean> </property> </bean> - \ No newline at end of file +</beans> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |