diff --git a/src/calibre/gui2/images/news/noaa.png b/src/calibre/gui2/images/news/noaa.png new file mode 100644 index 0000000000..9a04db7cfd Binary files /dev/null and b/src/calibre/gui2/images/news/noaa.png differ diff --git a/src/calibre/web/feeds/recipes/__init__.py b/src/calibre/web/feeds/recipes/__init__.py index 78d22fef00..cf0e16ecf0 100644 --- a/src/calibre/web/feeds/recipes/__init__.py +++ b/src/calibre/web/feeds/recipes/__init__.py @@ -47,7 +47,7 @@ recipe_modules = ['recipe_' + r for r in ( 'climate_progress', 'carta', 'slashdot', 'publico', 'the_budget_fashionista', 'elperiodico_catalan', 'elperiodico_spanish', 'expansion_spanish', 'lavanguardia', - 'marca', 'kellog_faculty', 'kellog_insight', + 'marca', 'kellog_faculty', 'kellog_insight', 'noaa', 'theeconomictimes_india', '7dias', 'buenosaireseconomico', 'diagonales', 'miradasalsur', 'newsweek_argentina', 'veintitres', 'gva_be', 'hln', 'tijd', 'degentenaar', 'inquirer_net', 'uncrate', diff --git a/src/calibre/web/feeds/recipes/recipe_noaa.py b/src/calibre/web/feeds/recipes/recipe_noaa.py new file mode 100644 index 0000000000..bdc1b46ad1 --- /dev/null +++ b/src/calibre/web/feeds/recipes/recipe_noaa.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python + +__license__ = 'GPL v3' +__copyright__ = '2009, Darko Miletic ' +''' +noaa.com +''' + +from calibre.web.feeds.news import BasicNewsRecipe +from calibre.ebooks.BeautifulSoup import Tag + +class NOAA(BasicNewsRecipe): + title = 'NOAA Online' + __author__ = 'Darko Miletic' + description = 'NOAA' + publisher = 'NOAA' + category = 'news, science, US, ocean' + oldest_article = 15 + max_articles_per_feed = 100 + no_stylesheets = True + use_embedded_content = False + simultaneous_downloads = 1 + encoding = 'utf-8' + lang = 'en-US' + language = _('English') + + + remove_tags = [dict(name=['embed','object'])] + keep_only_tags = [dict(name='div', attrs={'id':'contentArea'})] + + feeds = [(u'NOAA articles', u'http://www.rss.noaa.gov/noaarss.xml')] + + def preprocess_html(self, soup): + soup.html['xml:lang'] = self.lang + soup.html['lang'] = self.lang + mlang = Tag(soup,'meta',[("http-equiv","Content-Language"),("content",self.lang)]) + mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=UTF-8")]) + soup.head.insert(0,mlang) + soup.head.insert(1,mcharset) + return self.adeify_images(soup) +