X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fmain%2FKissCrawler.java;h=976d7d15de9382361f0cfe3118c1838d5cc9cfb9;hb=40b576e854e9b21f090015dfc1814df6c0dde2ca;hp=735593109c20992c77c09106ec6f9ac38be02ed6;hpb=7ddb301a3c29c123c2cc2288553a303a7f546dc9;p=utils diff --git a/crawler/kiss/src/org/wamblee/crawler/kiss/main/KissCrawler.java b/crawler/kiss/src/org/wamblee/crawler/kiss/main/KissCrawler.java index 73559310..976d7d15 100644 --- a/crawler/kiss/src/org/wamblee/crawler/kiss/main/KissCrawler.java +++ b/crawler/kiss/src/org/wamblee/crawler/kiss/main/KissCrawler.java @@ -86,6 +86,26 @@ public class KissCrawler { String programConfig = new File(aArgs[1]).getCanonicalPath(); new KissCrawler(START_URL, crawlerConfig, programConfig); } + + /** + * Constructs the crawler. This retrieves the TV guide by crawling the KiSS + * EPG guide, filters the guide for interesting programs, tries to record + * them, and sends a summary mail to the user. + * + * @param aCrawlerConfig + * Configuration file for the crawler. + * @param aProgramConfig + * Configuration file describing interesting shows. + * @throws IOException + * In case of problems reading files. + * @throws MessagingException + * In case of problems sending a mail notification. + */ + public KissCrawler(String aCrawlerConfig, + String aProgramConfig) throws IOException, NotificationException { + this(START_URL, aCrawlerConfig, aProgramConfig); + } + /** * Constructs the crawler. This retrieves the TV guide by crawling the KiSS @@ -212,7 +232,7 @@ public class KissCrawler { } return favorites.execute(); } catch (PageException e) { - String msg = "Could not login to electronic programme guide."; + String msg = "Could not complete login to electronic programme guide."; throw new PageException(msg, e); } }