diff --git a/resources/images/news/praguemonitor.png b/resources/images/news/praguemonitor.png new file mode 100644 index 0000000000..ae3624876e Binary files /dev/null and b/resources/images/news/praguemonitor.png differ diff --git a/resources/recipes/praguemonitor.recipe b/resources/recipes/praguemonitor.recipe new file mode 100644 index 0000000000..4bd912604e --- /dev/null +++ b/resources/recipes/praguemonitor.recipe @@ -0,0 +1,32 @@ + +__license__ = 'GPL v3' +__copyright__ = '2009, Darko Miletic ' +''' +praguemonitor.com +''' + +from calibre.web.feeds.news import BasicNewsRecipe + +class PragueDailyMonitor(BasicNewsRecipe): + title = u'Prague Daily Monitor' + __author__ = u'Darko Miletic' + description = u'Czech news in English' + category = 'news, politics, Czech republic' + publisher = 'Prague Daily Monitor' + oldest_article = 2 + max_articles_per_feed = 100 + language = 'en' + no_stylesheets = True + use_embedded_content = False + encoding = 'utf-8' + + conversion_options = { + 'comments' : description + ,'tags' : category + ,'language' : language + ,'publisher' : publisher + } + + keep_only_tags = [dict(name='div' , attrs={'id':['content-header','content-area']})] + + feeds = [(u'All Articles', u'http://feeds.feedburner.com/PragueDailyMonitor?format=xml')]