From 0a99371f9847dc032ce093543d26a22cc3847eb4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 1 Oct 2010 13:03:56 -0600 Subject: [PATCH] El Universo - Ecuador by DM --- resources/images/news/eluniverso_ec.png | Bin 0 -> 625 bytes resources/recipes/eluniverso_ec.recipe | 63 ++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 resources/images/news/eluniverso_ec.png create mode 100644 resources/recipes/eluniverso_ec.recipe diff --git a/resources/images/news/eluniverso_ec.png b/resources/images/news/eluniverso_ec.png new file mode 100644 index 0000000000000000000000000000000000000000..c5a8918bcd86eb12594f96e1695e6825103d9076 GIT binary patch literal 625 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7Y2S1eDI-+2`Iu@;1O92 zq&>jc?PRtcNU*HHF&#)NfN}e;Idd5p7-xC9IEF+VemgC?@2~-ftA6Nr(XzBX#(RvO zDJvbl;x~CqkZI6Q@1(;IWsQsvi$DG5``Erg{=jX9wWeFH-D6syoO>gxc@-0b%eV7g z3}<*4BBnjHYLJ$d42k76c>T@BTAOJ~&@zU@B3Ggg?$Hv7#xXYBG_G7*I*To|j;s3G%=32^CE34V>v$DBacYni|KjU6e|V^G zF0(p$=8R_YKBJx5ADN0%`93tf%vQY45cqbHcUs!dRKAC64tz^l|6`G@kl<%0>q};a zHH$f9t{z-d=g%XsTd85jiLbj?Wo==qad&ChZGXf-ZfYRcxqEwmZ?K%STVto~`8(ft zpWz7#J*{i8t6-V%p4jw&Sn(M%f0mq{J7M{~3ik4lzpTGFV%1?`CRtmFU z&8d4L_@=?|)?K}V4#~eBg;SIjEU#`~qtF(xb^h(Z$a}2H>~4W4O3nVtOFXq-cPBN{ zA!PU82S?vL|E}~?NTI5*RQyfpp~MEk3-jj8RbS3%r~Ci+_CM?&IDax%6`#>ean!pC zj4ss@*NBpo#FA92OC>nC}Q!>*k eQ8buZ8JSy|LNz#M^4|e!VDNPHb6Mw<&;$VUi29oV literal 0 HcmV?d00001 diff --git a/resources/recipes/eluniverso_ec.recipe b/resources/recipes/eluniverso_ec.recipe new file mode 100644 index 0000000000..a0e8b46474 --- /dev/null +++ b/resources/recipes/eluniverso_ec.recipe @@ -0,0 +1,63 @@ +__license__ = 'GPL v3' +__copyright__ = '2010, Darko Miletic ' +''' +eluniverso.com +''' + +from calibre.web.feeds.news import BasicNewsRecipe + +class ElUniverso_Ecuador(BasicNewsRecipe): + title = 'El Universo - Ecuador' + __author__ = 'Darko Miletic' + description = 'Noticias del Ecuador y el resto del mundo' + publisher = 'El Universo' + category = 'news, politics, Ecuador' + oldest_article = 2 + max_articles_per_feed = 200 + no_stylesheets = True + encoding = 'utf8' + use_embedded_content = False + language = 'es' + remove_empty_feeds = True + publication_type = 'newspaper' + masthead_url = 'http://servicios2.eluniverso.com/versiones/v1/img/Hd/lg_ElUniverso.gif' + extra_css = """ + body{font-family: Verdana,Arial,Helvetica,sans-serif; color: #333333 } + h2{font-family: Georgia,"Times New Roman",Times,serif; color: #1B2D60} + """ + + conversion_options = { + 'comment' : description + , 'tags' : category + , 'publisher' : publisher + , 'language' : language + } + + remove_tags = [ + dict(attrs={'class':['flechs','multiBox','colRecursos']}) + ,dict(name=['meta','link','embed','object','iframe','base']) + ] + keep_only_tags = [dict(attrs={'class':'Nota'})] + remove_tags_after = dict(attrs={'id':'TextoPrint'}) + remove_tags_before = dict(attrs={'id':'FechaPrint'}) + + feeds = [ + (u'Portada' , u'http://www.eluniverso.com/rss/portada.xml' ) + ,(u'Politica' , u'http://www.eluniverso.com/rss/politica.xml' ) + ,(u'Economia' , u'http://www.eluniverso.com/rss/economia.xml' ) + ,(u'Sucesos' , u'http://www.eluniverso.com/rss/sucesos.xml' ) + ,(u'Migracion' , u'http://www.eluniverso.com/rss/migrantes_tema.xml' ) + ,(u'El Pais' , u'http://www.eluniverso.com/rss/elpais.xml' ) + ,(u'Internacionales' , u'http://www.eluniverso.com/rss/internacionales.xml' ) + ,(u'Deportes' , u'http://www.eluniverso.com/rss/deportes.xml' ) + ,(u'Gran Guayaquill' , u'http://www.eluniverso.com/rss/gran_guayaquil.xml' ) + ,(u'Entretenimiento' , u'http://www.eluniverso.com/rss/arteyespectaculos.xml' ) + ,(u'Vida' , u'http://www.eluniverso.com/rss/tuvida.xml' ) + ,(u'Opinion' , u'http://www.eluniverso.com/rss/opinion.xml' ) + ] + + def preprocess_html(self, soup): + for item in soup.findAll(style=True): + del item['style'] + return soup +