From 839c2e909a0f53cb43b60022c4a76a6f57b848c9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 10 May 2011 08:46:57 -0600 Subject: [PATCH] Replica Vedetelor by Silviu Cotoara --- recipes/icons/replicavedetelor.png | Bin 0 -> 709 bytes recipes/replicavedetelor.recipe | 53 +++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 recipes/icons/replicavedetelor.png create mode 100644 recipes/replicavedetelor.recipe diff --git a/recipes/icons/replicavedetelor.png b/recipes/icons/replicavedetelor.png new file mode 100644 index 0000000000000000000000000000000000000000..57ba42c64ca752ecd07d720f292f7adf44e92997 GIT binary patch literal 709 zcmWlWQAiqb9LF!Z2MMD|wvFX5;u;0k!;n1;8P&|KFjwY|brWgsIHH+BNQ6iXxtHQ# zO|B7k*fN*HnS&uc#1T^tqi|+*i>RAWyU8Zb29qA*&)D_w`~CR7e7~O`-|0TngX*dq zRS*PKcR$pdrF-RaWR=oxZmk)Bpo+OZqoqrd>5L%eixz?uPQ_xW2)3i;yZ|nWz>fpB z2C>tj4c_5rfnClfd7aq>VjfK=9{t3D5hW-Hni&?Luw#k_UL82%U?RkA^YmI85OP%y z3EtrNIK`%T#765d3YUCrFulTB#+mp=T8>iufuNj-f*u$TaL8S&#ZH2M0JycGq@cgd zBGVaO$cZj5BPST!!i-p>ZFQ=B5Y%{?hr7+WRNYN@=7~x zw0p|uWyC}RzZJL!^mQe zr;>uv&jAbu>ogsV8=Xviof9Qglp=j0t--B zp!WPBA&FeKzQb~T?)mWjO8Ld;``M-5&(rVLb_dmw_Qk|8wK~`_`}Jz`hq2`vi-Pd` zPD`cmZ&i`GxizqtYS@pyXbqx?Km&>fUNfsZ4T+os`LVOvA6VKyqIX9US@iL*z{)`y zIi{aQ3x$=fY+h5>Xj3fMma(v3tQ*?QrkJ*CjV+~3WvH&OY!zgd1lq4qG`7vxtA8p! zs=mA(Tg)`IV2Ae6C#`1-;S(-OV literal 0 HcmV?d00001 diff --git a/recipes/replicavedetelor.recipe b/recipes/replicavedetelor.recipe new file mode 100644 index 0000000000..b6f1a51d67 --- /dev/null +++ b/recipes/replicavedetelor.recipe @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +#!/usr/bin/env python + +__license__ = 'GPL v3' +__copyright__ = u'2011, ' +''' +replicavedetelor.ro +''' + +from calibre.web.feeds.news import BasicNewsRecipe + +class ReplicaVedetelor(BasicNewsRecipe): + title = u'Replica Vedetelor' + __author__ = u'Silviu Cotoara' + description = u'Ofer\u0103 vedetelor dreptul la replic\u0103' + publisher = 'Replica Vedetelor' + oldest_article = 5 + language = 'ro' + max_articles_per_feed = 100 + no_stylesheets = True + use_embedded_content = False + category = 'Ziare,Reviste,Vedete' + encoding = 'utf-8' + cover_url = 'http://www.webart-software.eu/_pics/lucrari_referinta/medium/84/1-Replica-Vedetelor.jpg' + + conversion_options = { + 'comments' : description + ,'tags' : category + ,'language' : language + ,'publisher' : publisher + } + + keep_only_tags = [ + dict(name='div', attrs={'id':'zona-continut'}) + ] + + remove_tags = [ + dict(name='ul', attrs={'id':['lista-imagini']}) + , dict(name='form', attrs={'id':['f-trimite-unui-prieten']}) + + ] + + remove_tags_after = [ + dict(name='form', attrs={'id':['f-trimite-unui-prieten']}) + ] + + feeds = [ + (u'Feeds', u'http://www.replicavedetelor.ro/feed') + ] + + def preprocess_html(self, soup): + return self.adeify_images(soup) +