From 75cf58d0f119476da2da9530aa5d85a51b27a82e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 7 Jul 2013 08:47:26 +0530 Subject: [PATCH] Glenn Brenwald and Ludwig von Mises Institute by anywho --- recipes/glenn_greenwald.recipe | 10 ++++++++++ recipes/ludwig_mises.recipe | 14 ++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 recipes/glenn_greenwald.recipe create mode 100644 recipes/ludwig_mises.recipe diff --git a/recipes/glenn_greenwald.recipe b/recipes/glenn_greenwald.recipe new file mode 100644 index 0000000000..63ed285e72 --- /dev/null +++ b/recipes/glenn_greenwald.recipe @@ -0,0 +1,10 @@ +from calibre.web.feeds.news import AutomaticNewsRecipe +class BasicUserRecipe1373130920(AutomaticNewsRecipe): + title = u'Glenn Greenwald | guardian.co.uk' + language = 'en_GB' + __author__ = 'anywho' + oldest_article = 7 + max_articles_per_feed = 100 + auto_cleanup = True + + feeds = [(u'Latest', u'http://www.guardian.co.uk/profile/glenn-greenwald/rss')] diff --git a/recipes/ludwig_mises.recipe b/recipes/ludwig_mises.recipe new file mode 100644 index 0000000000..7e46a9a7db --- /dev/null +++ b/recipes/ludwig_mises.recipe @@ -0,0 +1,14 @@ +from calibre.web.feeds.news import AutomaticNewsRecipe + +class BasicUserRecipe1373130372(AutomaticNewsRecipe): + title = u'Ludwig von Mises Institute' + __author__ = 'anywho' + language = 'en' + oldest_article = 7 + max_articles_per_feed = 100 + auto_cleanup = True + + feeds = [(u'Daily Articles (Full text version)', + u'http://feed.mises.org/MisesFullTextArticles'), + (u'Mises Blog Posts', + u'http://mises.org/blog/index.rdf')]