From 0e720a84868217219266ba3c4e4ba985ed466a24 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 17 May 2012 09:40:32 +0530 Subject: [PATCH] Army/Navy/Air force/Marine Times by jde --- recipes/air_force_times.recipe | 43 +++++++++++++++++++++++++++++++ recipes/army_times.recipe | 42 ++++++++++++++++++++++++++++++ recipes/marine_corps_times.recipe | 42 ++++++++++++++++++++++++++++++ recipes/military_times.recipe | 41 +++++++++++++++++++++++++++++ recipes/navy_times.recipe | 42 ++++++++++++++++++++++++++++++ 5 files changed, 210 insertions(+) create mode 100644 recipes/air_force_times.recipe create mode 100644 recipes/army_times.recipe create mode 100644 recipes/marine_corps_times.recipe create mode 100644 recipes/military_times.recipe create mode 100644 recipes/navy_times.recipe diff --git a/recipes/air_force_times.recipe b/recipes/air_force_times.recipe new file mode 100644 index 0000000000..e4f223bf4b --- /dev/null +++ b/recipes/air_force_times.recipe @@ -0,0 +1,43 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class AirForceTimes(BasicNewsRecipe): + title = 'Air Force Times' + __author__ = 'jde' + __date__ = '16 May 2012' + __version__ = '1.0' + description = 'News of the U.S. Air Force' + language = 'en' + publisher = 'AirForceTimes.com' + category = 'news, U.S. Air Force' + tags = 'news, U.S. Air Force' + cover_url = 'http://www.airforcetimes.com/images/logo_airforcetimes_alert.jpg' + masthead_url = 'http://www.airforcetimes.com/images/logo_airforcetimes_alert.jpg' + oldest_article = 7 #days + max_articles_per_feed = 25 + publication_type = 'newspaper' + no_stylesheets = True + use_embedded_content = False + encoding = None + recursions = 0 + needs_subscription = False + remove_javascript = True + remove_empty_feeds = True + auto_cleanup = True + + + + feeds = [ + + ('News', 'http://www.airforcetimes.com/rss_news.php'), + ('Benefits', 'http://www.airforcetimes.com/rss_benefits.php'), + ('Money', 'http://www.airforcetimes.com/rss_money.php'), + ('Careers & Education', 'http://www.airforcetimes.com/rss_careers.php'), + ('Community', 'http://www.airforcetimes.com/rss_community.php'), + ('Off Duty', 'http://www.airforcetimes.com/rss_off_duty.php'), + ('Entertainment', 'http://www.airforcetimes.com/rss_entertainment.php'), + ('Guard & Reserve', 'http://www.airforcetimes.com/rss_guard.php'), + ] + + + + diff --git a/recipes/army_times.recipe b/recipes/army_times.recipe new file mode 100644 index 0000000000..2cb5164106 --- /dev/null +++ b/recipes/army_times.recipe @@ -0,0 +1,42 @@ +from calibre.web.feeds.news import BasicNewsRecipe +class ArmyTimes(BasicNewsRecipe): + title = 'Army Times' + __author__ = 'jde' + __date__ = '16 May 2012' + __version__ = '1.0' + description = 'News of the U.S. Army' + language = 'en' + publisher = 'ArmyTimes.com' + category = 'news, U.S. Army' + tags = 'news, U.S. Army' + cover_url = 'http://www.armytimes.com/images/logo_armytimes_alert.jpg' + masthead_url = 'http://www.armytimes.com/images/logo_armytimes_alert.jpg' + oldest_article = 7 #days + max_articles_per_feed = 25 + publication_type = 'newspaper' + no_stylesheets = True + use_embedded_content = False + encoding = None + recursions = 0 + needs_subscription = False + remove_javascript = True + remove_empty_feeds = True + auto_cleanup = True + + + + feeds = [ + +('News', 'http://www.armytimes.com/rss_news.php'), +('Benefits', 'http://www.armytimes.com/rss_benefits.php'), +('Money', 'http://www.armytimes.com/rss_money.php'), +('Careers & Education', 'http://www.armytimes.com/rss_careers.php'), +('Community', 'http://www.armytimes.com/rss_community.php'), +('Off Duty', 'http://www.armytimes.com/rss_off_duty.php'), +('Entertainment', 'http://www.armytimes.com/rss_entertainment.php'), +('Guard & Reserve', 'http://www.armytimes.com/rss_guard.php'), + + ] + + + diff --git a/recipes/marine_corps_times.recipe b/recipes/marine_corps_times.recipe new file mode 100644 index 0000000000..b37de3e957 --- /dev/null +++ b/recipes/marine_corps_times.recipe @@ -0,0 +1,42 @@ +from calibre.web.feeds.news import BasicNewsRecipe +class MarineCorpsTimes(BasicNewsRecipe): + title = 'Marine Corps Times' + __author__ = 'jde' + __date__ = '16 May 2012' + __version__ = '1.0' + description = 'News of the U.S. Marine Corps' + language = 'en' + publisher = 'MarineCorpsTimes.com' + category = 'news, U.S. Marine Corps' + tags = 'news, U.S. Marine Corps' + cover_url = 'http://www.marinecorpstimes.com/images/logo_marinetimes-alert.jpg' + masthead_url = 'http://www.marinecorpstimes.com/images/logo_marinetimes-alert.jpg' + oldest_article = 7 #days + max_articles_per_feed = 25 + publication_type = 'newspaper' + no_stylesheets = True + use_embedded_content = False + encoding = None + recursions = 0 + needs_subscription = False + remove_javascript = True + remove_empty_feeds = True + auto_cleanup = True + + + + feeds = [ + + ('News', 'http://www.MarineCorpstimes.com/rss_news.php'), + ('Benefits', 'http://www.MarineCorpstimes.com/rss_benefits.php'), + ('Money', 'http://www.MarineCorpstimes.com/rss_money.php'), + ('Careers & Education', 'http://www.MarineCorpstimes.com/rss_careers.php'), + ('Community', 'http://www.MarineCorpstimes.com/rss_community.php'), + ('Off Duty', 'http://www.MarineCorpstimes.com/rss_off_duty.php'), + ('Entertainment', 'http://www.MarineCorpstimes.com/rss_entertainment.php'), + ('Guard & Reserve', 'http://www.MarineCorpstimes.com/rss_guard.php'), + ] + + + + diff --git a/recipes/military_times.recipe b/recipes/military_times.recipe new file mode 100644 index 0000000000..31dd45bea8 --- /dev/null +++ b/recipes/military_times.recipe @@ -0,0 +1,41 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class MilitaryTimes(BasicNewsRecipe): + title = 'Military Times' + __author__ = 'jde' + __date__ = '16 May 2012' + __version__ = '1.0' + description = 'News of the U.S. Military' + language = 'en' + publisher = 'MilitaryTimes.com' + category = 'news, U.S. Military' + tags = 'news, U.S. Military' + cover_url = 'http://www.militarytimes.com/images/logo_militarytimes_landing-s.gif' + masthead_url = 'http://www.militarytimes.com/images/logo_militarytimes_landing-s.gif' + oldest_article = 7 #days + max_articles_per_feed = 25 + publication_type = 'newspaper' + no_stylesheets = True + use_embedded_content = False + encoding = None + recursions = 0 + needs_subscription = False + remove_javascript = True + remove_empty_feeds = True + auto_cleanup = True + + + + feeds = [ + +('News', 'http://www.militarytimes.com/rss_news.php'), +('Benefits', 'http://www.militarytimes.com/rss_benefits.php'), +('Money', 'http://www.militarytimes.com/rss_money.php'), +('Careers & Education', 'http://www.militarytimes.com/rss_careers.php'), +('Community', 'http://www.militarytimes.com/rss_community.php'), +('Off Duty', 'http://www.militarytimes.com/rss_off_duty.php'), +('Entertainment', 'http://www.militarytimes.com/rss_entertainment.php'), +('Guard & Reserve', 'http://www.militarytimes.com/rss_guard.php'), + + ] + diff --git a/recipes/navy_times.recipe b/recipes/navy_times.recipe new file mode 100644 index 0000000000..cb512f03aa --- /dev/null +++ b/recipes/navy_times.recipe @@ -0,0 +1,42 @@ +from calibre.web.feeds.news import BasicNewsRecipe +class NavyTimes(BasicNewsRecipe): + title = 'Navy Times' + __author__ = 'jde' + __date__ = '16 May 2012' + __version__ = '1.0' + description = 'News of the U.S. Navy' + language = 'en' + publisher = 'NavyTimes.com' + category = 'news, U.S. Navy' + tags = 'news, U.S. Navy' + cover_url = 'http://www.navytimes.com/images/logo_navytimes_alert.jpg' + masthead_url = 'http://www.navytimes.com/images/logo_navytimes_alert.jpg' + oldest_article = 7 #days + max_articles_per_feed = 25 + publication_type = 'newspaper' + no_stylesheets = True + use_embedded_content = False + encoding = None + recursions = 0 + needs_subscription = False + remove_javascript = True + remove_empty_feeds = True + auto_cleanup = True + + + + feeds = [ + +('News', 'http://www.navytimes.com/rss_news.php'), +('Benefits', 'http://www.navytimes.com/rss_benefits.php'), +('Money', 'http://www.navytimes.com/rss_money.php'), +('Careers & Education', 'http://www.navytimes.com/rss_careers.php'), +('Community', 'http://www.navytimes.com/rss_community.php'), +('Off Duty', 'http://www.navytimes.com/rss_off_duty.php'), +('Entertainment', 'http://www.navytimes.com/rss_entertainment.php'), +('Guard & Reserve', 'http://www.navytimes.com/rss_guard.php'), + + ] + + +