From: Erik Brakkee <erik@brakkee.org>
Date: Sat, 6 May 2006 21:04:26 +0000 (+0000)
Subject: (no commit message)
X-Git-Tag: wamblee-utils-0.7~1001
X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=1b0c8961fc3402059cf713f76a995e59b4eca429;p=utils

---

diff --git a/crawler/kiss/docs/content/xdocs/index.xml b/crawler/kiss/docs/content/xdocs/index.xml
index 02d1a466..1592cea5 100644
--- a/crawler/kiss/docs/content/xdocs/index.xml
+++ b/crawler/kiss/docs/content/xdocs/index.xml
@@ -238,7 +238,9 @@
           The screen should show an overview of the last time it ran (if
           it ran before) as well as a button to run the crawler immediately.
           Also, the result of the last run can be viewed.
-          The crawler will run automatically every morning at 5 AM local time. 
+          The crawler will run automatically every morning at 5 AM local time, 
+          and will retry at 1 hour intervals in case of failure to retrieve
+          programme information. 
         </p>
       </section>
       
diff --git a/crawler/kissweb/src/org.wamblee.crawler.kiss.xml b/crawler/kissweb/src/org.wamblee.crawler.kiss.xml
index 325ef251..6f0e2c96 100644
--- a/crawler/kissweb/src/org.wamblee.crawler.kiss.xml
+++ b/crawler/kissweb/src/org.wamblee.crawler.kiss.xml
@@ -12,8 +12,8 @@
   <!-- The object which executes the crawler --> 
   <bean id="org.wamblee.crawler.kiss.scheduling.CrawlerExecutor"
       class="org.wamblee.crawler.kiss.scheduling.CrawlerExecutorImpl">
-      <constructor-arg><value>/home/erik/crawler/config.xml</value></constructor-arg>
-      <constructor-arg><value>/home/erik/crawler/programs.xml</value></constructor-arg>
+      <constructor-arg><value>${org.wamblee.crawler.config.epg}</value></constructor-arg>
+      <constructor-arg><value>${org.wamblee.crawler.config.programs}</value></constructor-arg>
       <constructor-arg><ref bean="org.wamblee.crawler.kiss.notification.Notifier"/></constructor-arg>
   </bean>
   
@@ -28,4 +28,4 @@
       <constructor-arg><value type="int">24</value></constructor-arg>  
   </bean>
   
-</beans> 
\ No newline at end of file
+</beans> 
diff --git a/crawler/kissweb/src/org.wamblee.crawler.properties b/crawler/kissweb/src/org.wamblee.crawler.properties
index c9d30ec9..d5aa979f 100644
--- a/crawler/kissweb/src/org.wamblee.crawler.properties
+++ b/crawler/kissweb/src/org.wamblee.crawler.properties
@@ -14,4 +14,10 @@ org.wamblee.crawler.smtp.password=
 org.wamblee.crawler.notification.from=kiss@wamblee.org
 org.wamblee.crawler.notification.to=erik@brakkee.org
 org.wamblee.crawler.notification.subject=Recording summary for today
-     
\ No newline at end of file
+ 
+############################################################################
+# Configuration of the crawler
+############################################################################
+org.wamblee.crawler.config.epg=/home/erik/crawler/config.xml
+org.wamblee.crawler.config.programs=/home/erik/crawler/programs.xml
+