From d872bc58582da52da38468974d656ea345c8ff94 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 2 Apr 2011 23:05:53 -0600 Subject: [PATCH] ... --- recipes/hawaii.recipe | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/recipes/hawaii.recipe b/recipes/hawaii.recipe index ae98e46009..64ee69a0db 100644 --- a/recipes/hawaii.recipe +++ b/recipes/hawaii.recipe @@ -2,7 +2,7 @@ from calibre.web.feeds.news import BasicNewsRecipe class AdvancedUserRecipe1282101454(BasicNewsRecipe): title = 'West Hawaii Today' - __author__ = 'Tony Stegall' + __author__ = 'Tony Stegall, fixed by HK' language = 'en' description = 'Westhawaiitoday.com' publisher = 'West Hawaii ' @@ -15,7 +15,14 @@ class AdvancedUserRecipe1282101454(BasicNewsRecipe): masthead_url = 'http://images.townnews.com/westhawaiitoday.com/art/whttoplogo.gif' - - feeds = [ 'http://www.westhawaiitoday.com/rss.xml'] - + feeds = [ + ('http://www.westhawaiitoday.com/taxonomy/term/2/feed'), #Local News + ('http://www.westhawaiitoday.com/taxonomy/term/15/feed'), #Local Sports + ('http://www.westhawaiitoday.com/taxonomy/term/4/feed'), #Local Features + ('http://www.westhawaiitoday.com/taxonomy/term/12/feed'), #Obituaries + ('http://www.westhawaiitoday.com/taxonomy/term/18/feed'), #Letters + ('http://www.westhawaiitoday.com/taxonomy/term/19/feed'), #Editorial + ('http://www.westhawaiitoday.com/taxonomy/term/20/feed'), #columns + ('http://www.westhawaiitoday.com/taxonomy/term/13/feed') #Volcano Update (Sundays) + ]