diff --git a/recipes/heise_online.recipe b/recipes/heise_online.recipe index 338b54782c..4d82570698 100644 --- a/recipes/heise_online.recipe +++ b/recipes/heise_online.recipe @@ -1,11 +1,11 @@ from calibre.web.feeds.news import BasicNewsRecipe -import re - class AdvancedUserRecipe(BasicNewsRecipe): - title = 'heise online' + title = 'Heise-online' description = 'News vom Heise-Verlag' __author__ = 'schuster' + masthead_url = 'http://www.heise.de/icons/ho/heise_online_logo.gif' + publisher = 'Heise Zeitschriften Verlag GmbH & Co. KG' use_embedded_content = False language = 'de' oldest_article = 2 @@ -14,11 +14,10 @@ class AdvancedUserRecipe(BasicNewsRecipe): remove_empty_feeds = True timeout = 5 no_stylesheets = True - encoding = 'utf-8' remove_tags_after = dict(name ='p', attrs={'class':'editor'}) - remove_tags = [{'class':'navi_top_container'}, + remove_tags = [dict(id='navi_top_container'), dict(id='navi_bottom'), dict(id='mitte_rechts'), dict(id='navigation'), @@ -29,27 +28,31 @@ class AdvancedUserRecipe(BasicNewsRecipe): dict(id='seiten_navi'), dict(id='adbottom'), dict(id='sitemap'), - dict(name='a', href=re.compile(r'^/([a-zA-Z]+/)?')), - ] + dict(name='div', attrs={'id':'sitemap'}), + dict(name='ul', attrs={'class':'erste_zeile'}), + dict(name='ul', attrs={'class':'zweite_zeile'}), + dict(name='div', attrs={'class':'navi_top_container'})] feeds = [ ('Newsticker', 'http://www.heise.de/newsticker/heise.rdf'), - ('iX', 'http://www.heise.de/ix/news/news.rdf'), - ('Technology Review', 'http://www.heise.de/tr/news-atom.xml'), - ('mobil', 'http://www.heise.de/mobil/newsticker/heise-atom.xml'), - ('Security', 'http://www.heise.de/security/news/news-atom.xml'), - ('Netze', 'http://www.heise.de/netze/rss/netze-atom.xml'), - ('Open Source', 'http://www.heise.de/open/news/news-atom.xml'), - ('Resale ', 'http://www.heise.de/resale/rss/resale.rdf'), + ('Auto', 'http://www.heise.de/autos/rss/news.rdf'), ('Foto ', 'http://www.heise.de/foto/rss/news-atom.xml'), - ('Autos', 'http://www.heise.de/autos/rss/news.rdf'), - ('Mac & i', 'http://www.heise.de/mac-and-i/news.rdf'), + ('Mac&i', 'http://www.heise.de/mac-and-i/news.rdf'), + ('Mobile ', 'http://www.heise.de/mobil/newsticker/heise-atom.xml'), + ('Netz ', 'http://www.heise.de/netze/rss/netze-atom.xml'), + ('Open ', 'http://www.heise.de/open/news/news-atom.xml'), + ('Resale ', 'http://www.heise.de/resale/rss/resale.rdf'), + ('Security ', 'http://www.heise.de/security/news/news-atom.xml'), + ('C`t', 'http://www.heise.de/ct/rss/artikel-atom.xml'), + ('iX', 'http://www.heise.de/ix/news/news.rdf'), + ('Mach-flott', 'http://www.heise.de/mach-flott/rss/mach-flott-atom.xml'), ('Blog: Babel-Bulletin', 'http://www.heise.de/developer/rss/babel-bulletin/blog.rdf'), ('Blog: Der Dotnet-Doktor', 'http://www.heise.de/developer/rss/dotnet-doktor/blog.rdf'), ('Blog: Bernds Management-Welt', 'http://www.heise.de/developer/rss/bernds-management-welt/blog.rdf'), - ('Blog: The World of IT', 'http://www.heise.de/developer/rss/world-of-it/blog.rdf'), - ('Blog: Kais bewegtes Web', 'http://www.heise.de/developer/rss/kais-bewegtes-web/blog.rdf') - ] + ('Blog: IT conversation', 'http://www.heise.de/developer/rss/world-of-it/blog.rdf'), + ('Blog: Kais bewegtes Web', 'http://www.heise.de/developer/rss/kais-bewegtes-web/blog.rdf')] def print_version(self, url): return url + '?view=print' + +