From b6559b4f7d503754ebf8d1d2dc6442429d9c901e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 6 Oct 2012 09:52:33 +0530 Subject: [PATCH] Mobile Nations, The Verge and Television WIthout Pity by Krittika Goyal --- recipes/mobilenations.recipe | 21 +++++++++++++++++++++ recipes/television_without_pity.recipe | 21 +++++++++++++++++++++ recipes/the_verge.recipe | 21 +++++++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 recipes/mobilenations.recipe create mode 100644 recipes/television_without_pity.recipe create mode 100644 recipes/the_verge.recipe diff --git a/recipes/mobilenations.recipe b/recipes/mobilenations.recipe new file mode 100644 index 0000000000..c81bffc029 --- /dev/null +++ b/recipes/mobilenations.recipe @@ -0,0 +1,21 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'Mobile Nations' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + #auto_cleanup_keep = '//div[@class="story-image shadowbox entry-content-asset"]' + + + feeds = [ +('News', + 'http://www.mobilenations.com/rss/mb.xml'), +] + diff --git a/recipes/television_without_pity.recipe b/recipes/television_without_pity.recipe new file mode 100644 index 0000000000..e48bce5859 --- /dev/null +++ b/recipes/television_without_pity.recipe @@ -0,0 +1,21 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'Television Without Pity' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + #auto_cleanup_keep = '//div[@class="float_right"]' + + + feeds = [ +('News', + 'http://www.televisionwithoutpity.com/rss.xml'), +] + diff --git a/recipes/the_verge.recipe b/recipes/the_verge.recipe new file mode 100644 index 0000000000..83c1ed5e70 --- /dev/null +++ b/recipes/the_verge.recipe @@ -0,0 +1,21 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class HindustanTimes(BasicNewsRecipe): + title = u'The Verge' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + #encoding = 'cp1252' + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + auto_cleanup_keep = '//div[@class="story-image shadowbox entry-content-asset"]' + + + feeds = [ +('News', + 'http://www.theverge.com/rss/index.xml'), +] +