diff --git a/resources/images/news/boortz.png b/resources/images/news/boortz.png new file mode 100644 index 0000000000..ac806e8056 Binary files /dev/null and b/resources/images/news/boortz.png differ diff --git a/resources/recipes/boortz.recipe b/resources/recipes/boortz.recipe new file mode 100644 index 0000000000..a3b0f5fffe --- /dev/null +++ b/resources/recipes/boortz.recipe @@ -0,0 +1,43 @@ +from calibre.web.feeds.news import BasicNewsRecipe +class AdvancedUserRecipe1282101454(BasicNewsRecipe): + title = 'Nealz Nuze' + language = 'en' + __author__ = 'TonytheBookworm' + description = 'Neal Boortz Show Radio Notes' + publisher = 'Neal Boortz' + category = 'news, politics, USA, talkshow' + oldest_article = 1 + max_articles_per_feed = 100 + linearize_tables = True + no_stylesheets = True + remove_javascript = True + + masthead_url = 'http://boortz.com/images/nuze_logo.gif' + keep_only_tags = [ + dict(name='div', attrs={'id':['SiteContent']}) + #,dict(attrs={'id':['cxArticleText']}) + ] + remove_tags = [ + dict(name='a', attrs={'class':['blogPermalink']}), + dict(name='span', attrs={'class':['blogBylineSeparator']}), + dict(name='td', attrs={'id':['nealztitle']}), + ] + remove_tags_after = [dict(name='div', attrs={'class':'blogEntryBody'}),] + feeds = [ + ('NUZE', 'http://boortz.com/nealz_nuze_rss/rss.xml') + + ] + + + + + + + + + + + + + +