From 8065624ded3b9aafaa442b60687d842c532aa2f5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 24 Jun 2020 17:00:21 +0530 Subject: [PATCH] Remove not working Reuters recipe --- recipes/icons/reuters.png | Bin 449 -> 0 bytes recipes/reuters.recipe | 36 ------------------------------------ 2 files changed, 36 deletions(-) delete mode 100644 recipes/icons/reuters.png delete mode 100644 recipes/reuters.recipe diff --git a/recipes/icons/reuters.png b/recipes/icons/reuters.png deleted file mode 100644 index 7c7942a922da5c0ff499fcb80a76c3d98c2469eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 449 zcmV;y0Y3hTP)9hR!Xf_N{L93EH$}Wk^#AqgcKzV07wI%1STScJCYQ4QbydWT)CvEB#9)q zN`(K(Q>`qgep_eX-lyknJ0{fiJ#Jc%j!C$%3pe6mAb$rvn9^YsV&O$39QZ^AY<~i{ zxk7{v#*l>q>|hng7{EN9VJy~*9W!t!xeF<%#y$=)ff~G^9D@iT%nESgUX^{?JqO)b z!a5eQfg!x9$rqefz&SGEN3;UFRJ8+b=tZl-M)06kM^?ZE@{x)(@u3GsJSap3^00s{ zTw8}v7}kfSh({Gn5F08K-iK4Y-x}3v#)^WHP#Ge?i)57GP;0&#{UoCrZb7!{x`Kvh zQLlhlWTG8=hL=mFzpMI!_HRTP<`hs2H|)Ca#);7vKhc0k1#H5PB`l*Hxk$h`5^)2Y z(avY+gbz<@vW6WTpbif7!5~KAzn5x#Xq9PP1^pLlG%%v!90Wo=3*qR;9U?VU3%AY; rwqgJ8X|%zKG5FDhB6Pq71wnoQ(wDzn59z=h00000NkvXXu0mjf38lN> diff --git a/recipes/reuters.recipe b/recipes/reuters.recipe deleted file mode 100644 index 1fc5460279..0000000000 --- a/recipes/reuters.recipe +++ /dev/null @@ -1,36 +0,0 @@ -from calibre.web.feeds.news import BasicNewsRecipe - - -class Reuters(BasicNewsRecipe): - - title = 'Reuters' - description = 'Global news' - __author__ = 'Kovid Goyal and Sujata Raman' - use_embedded_content = False - language = 'en' - - max_articles_per_feed = 10 - no_stylesheets = True - remove_javascript = True - auto_cleanup = True - auto_cleanup_keep = '//div[@class="relatedPhoto landscape"]' - - extra_css = ''' - body{font-family:arial,helvetica,sans;} - h1{ font-size:larger ; font-weight:bold; } - .byline{color:#006E97;font-size:x-small; font-weight:bold;} - .location{font-size:x-small; font-weight:bold;} - .timestamp{font-size:x-small; } - ''' - - feeds = [('Top Stories', 'http://feeds.reuters.com/reuters/topNews?format=xml'), - ('US News', 'http://feeds.reuters.com/reuters/domesticNews?format=xml'), - ('World News', 'http://feeds.reuters.com/reuters/worldNews?format=xml'), - ('Politics News', 'http://feeds.reuters.com/reuters/politicsNews?format=xml'), - ('Science News', 'http://feeds.reuters.com/reuters/scienceNews?format=xml'), - ('Environment News', 'http://feeds.reuters.com/reuters/Environment?format=xml'), - ('Technology News', - 'http://feeds.reuters.com/reuters/technologyNews?format=xml'), - ('Oddly Enough News', - 'http://feeds.reuters.com/reuters/oddlyEnoughNews?format=xml') - ]