From d16d3ad9006e5a81a16d088945aafded3ad818a5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 20 Aug 2014 20:12:35 +0530 Subject: [PATCH] ... --- recipes/down_to_earth.recipe | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/recipes/down_to_earth.recipe b/recipes/down_to_earth.recipe index e1f3a87cb3..69b30648dc 100644 --- a/recipes/down_to_earth.recipe +++ b/recipes/down_to_earth.recipe @@ -13,19 +13,21 @@ class My_Feeds(BasicNewsRecipe): no_stylesheets = True remove_javascript = True center_navbar = True - use_embedded_content = True + use_embedded_content = False remove_empty_feeds = True remove_tags_before = dict(name='div', id='PageContent') remove_tags_after = [dict(name='div'),{'class':'taxonomy-terms'}] - remove_tags =[dict(id=['comments','breadcrumb','node_related_stories']), - dict(attrs={'class':['commentCount', 'box']}) - ] - - feeds = [(u'editor', u'http://www.downtoearth.org.in/taxonomy/term/20348/0/feed'), - (u'cover story', u'http://www.downtoearth.org.in/taxonomy/term/20345/0/feed'), - (u'special report', u'http://www.downtoearth.org.in/taxonomy/term/20384/0/feed'), - (u'features', u'http://www.downtoearth.org.in/taxonomy/term/20350/0/feed'), - (u'news', u'http://www.downtoearth.org.in/taxonomy/term/20366/0/feed'), - (u'debate', u'http://www.downtoearth.org.in/taxonomy/term/20347/0/feed'), - (u'natural disasters', u'http://www.downtoearth.org.in/taxonomy/term/20822/0/feed') - ] + remove_tags = [ + dict(id=['comments','breadcrumb','node_related_stories']), + dict(attrs={'class':['commentCount', 'box']}) + ] + + feeds = [ + (u'editor', u'http://www.downtoearth.org.in/taxonomy/term/20348/0/feed'), + (u'cover story', u'http://www.downtoearth.org.in/taxonomy/term/20345/0/feed'), + (u'special report', u'http://www.downtoearth.org.in/taxonomy/term/20384/0/feed'), + (u'features', u'http://www.downtoearth.org.in/taxonomy/term/20350/0/feed'), + (u'news', u'http://www.downtoearth.org.in/taxonomy/term/20366/0/feed'), + (u'debate', u'http://www.downtoearth.org.in/taxonomy/term/20347/0/feed'), + (u'natural disasters', u'http://www.downtoearth.org.in/taxonomy/term/20822/0/feed') + ]