home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_280 / vitalia.recipe < prev    next >
Text File  |  2011-09-09  |  2KB  |  40 lines

  1. __license__   = 'GPL v3'
  2. __copyright__ = '2011, Tomas Latal<latal.tomas at gmail.com>'
  3.  
  4. from calibre.web.feeds.news import BasicNewsRecipe
  5.  
  6. class VitaliaCZ(BasicNewsRecipe):
  7.     title                   = 'Vitalia'
  8.     __author__              = 'Tomas Latal'
  9.     __version__             = '1.0'
  10.     __date__                = '30 April 2011'
  11.     description             = u'Aktuality a \u010dl\xe1nky z Vitalia.cz'
  12.     oldest_article          = 1
  13.     max_articles_per_feed   = 10
  14.     encoding                = 'utf8'
  15.     publisher               = 'Internet Info s.r.o.'
  16.     category                = 'zdravi, vztahy, wellness, CZ'
  17.     language                = 'cs'
  18.     publication_type        = 'newsportal'
  19.     no_stylesheets          = True
  20.     remove_javascript       = True
  21.     extra_css               = 'p.perex{font-size: 1.2em; margin: 0 0 10px 0; line-height: 1.4; padding: 0 0 10px 0; font-weight: bold;} \
  22.                                p.perex img {display:none;} \
  23.                                span.author {font-size:0.8em; font-style:italic} \
  24.                                .urs div.rs-tip-major {padding:0.5em; background: #e0e0e0 none repeat scroll 0 0;border: 1px solid #909090;} \
  25.                                .urs p {margin: 0 0 0.8em 0;}'
  26.  
  27.     feeds          = [
  28.                         (u'Aktuality', 'http://www.vitalia.cz/rss/aktuality/'),
  29.                         (u'\u010cl\xe1nky', u'http://www.vitalia.cz/rss/clanky/'),
  30.                     ]
  31.  
  32.     remove_tags_before = dict(id='main')
  33.  
  34.     remove_tags_after = [dict(id='main')]
  35.  
  36.     remove_tags = [
  37.                     dict(attrs={'class':['author clear','tags-rubrics','box border style1 links clear','enquiry clear','serial','box border style1 TitleList','breadcrumb clear','article-discussion box border style1 monitoringComponentArticle','link-more border prev-next clear']}),
  38.                     dict(id=['discussionList','similarItems','sidebar','footer','opl','promo-box'])
  39.                   ]
  40.