From 29d31740445de71a4543e799f164cf99b4cc830a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Jun 2023 22:12:52 +0530 Subject: [PATCH] Update fluter --- recipes/fluter_de.recipe | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/recipes/fluter_de.recipe b/recipes/fluter_de.recipe index 5a7912bc36..e1210c64cf 100644 --- a/recipes/fluter_de.recipe +++ b/recipes/fluter_de.recipe @@ -1,4 +1,9 @@ -__license__ = 'GPL v3' +## +## Written: 2013-02-05 +## Version: v4.1 +## Last update: 2013-02-05 V3, 2020-07-05 v4, 2023-06-16 v4.1 +## +__license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' ''' @@ -7,24 +12,33 @@ Fetch fluter.de from calibre.web.feeds.news import BasicNewsRecipe - class AdvancedUserRecipe1313693926(BasicNewsRecipe): - title = u'Fluter' + title = u' fluter. ' description = 'fluter.de Magazin der Bundeszentrale für politische Bildung/bpb' language = 'de' encoding = 'UTF-8' - __author__ = 'Armin Geller' # 2013-02-05 V3 + __author__ = 'Armin Geller' # 2013-02-05 V3 - oldest_article = 7 + oldest_article = 14 max_articles_per_feed = 50 + auto_cleanup = False + + feeds = [ + (u'Inhalt:', u'https://www.fluter.de/rss.xml') + ] + + keep_only_tags = [ + dict(name='article', attrs={'class':'node node-article block fullWidth stage'}) + ] + + remove_tags = [ + dict(name='h2', attrs={'class':'element-invisible'}) + ] + + extra_css = ''' + .field-group-format, .group_additional_info, .additional-info {display: inline-block; min-width: 8rem; text-align: center} + ''' - feeds = [ - (u'Inhalt:', u'http://www.fluter.de/de/?tpl=907'), - ] - - extra_css = '.cs_img {margin-right: 10pt;}' - - def print_version(self, url): - return url + '?tpl=1260' + \ No newline at end of file