mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
69 lines
2.8 KiB
Python
69 lines
2.8 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = u'2011, Silviu Cotoar\u0103'
|
|
'''
|
|
viva.ro
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Viva(BasicNewsRecipe):
|
|
title = u'Viva'
|
|
__author__ = u'Silviu Cotoar\u0103'
|
|
description = u'Vedete si evenimente'
|
|
publisher = u'Viva'
|
|
oldest_article = 25
|
|
language = 'ro'
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
category = 'Ziare,Reviste,Femei'
|
|
encoding = 'utf-8'
|
|
cover_url = 'http://www.viva.ro/images/default/viva.gif'
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
extra_css = '''
|
|
h1{font-family:Arial,Helvetica,sans-serif; font-weight:bold;font-size:large;}
|
|
h2{font-family:Arial,Helvetica,sans-serif; font-weight:normal;font-size:small;}
|
|
.byline {font-family:Arial,Helvetica,sans-serif; font-size:xx-small;}
|
|
.date {font-family:Arial,Helvetica,sans-serif; font-size:xx-small;}
|
|
p{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
.copyright {font-family:Arial,Helvetica,sans-serif;font-size:xx-small;text-align:center}
|
|
.story{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
.entry-asset asset hentry{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
.pagebody{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
.maincontentcontainer{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
.story-body{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
body{font-family:Helvetica,Arial,sans-serif;font-size:small;}
|
|
'''
|
|
|
|
keep_only_tags = [
|
|
dict(name='div', attrs={'class': 'articol'}), dict(name='div', attrs={
|
|
'class': 'gallery clearfix'}), dict(name='div', attrs={'align': 'justify'})
|
|
]
|
|
|
|
remove_tags = [
|
|
dict(name='div', attrs={'class': ['breadcrumbs']}), dict(name='div', attrs={'class': ['links clearfix']}), dict(name='a', attrs={'id': ['img_arrow_right']}), dict(name='img', attrs={'id': ['zoom']}), dict(name='div', attrs={'class': ['foto_counter']}), dict(name='div', attrs={'class': ['gal_select clearfix']}) # noqa
|
|
]
|
|
|
|
remove_tags_after = [
|
|
dict(name='div', attrs={'class': ['links clearfix']})
|
|
]
|
|
|
|
feeds = [
|
|
|
|
(u'Vedete', u'http://feeds.feedburner.com/viva-Vedete'),
|
|
(u'Evenimente', u'http://feeds.feedburner.com/viva-Evenimente'),
|
|
(u'Frumusete', u'http://feeds.feedburner.com/viva-Beauty-Fashion'),
|
|
(u'Noutati', u'http://feeds.feedburner.com/viva-Noutati')
|
|
]
|
|
|
|
def preprocess_html(self, soup):
|
|
return self.adeify_images(soup)
|