home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_280 / digizone.recipe < prev    next >
Text File  |  2011-09-09  |  2KB  |  38 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 DigiZoneCZ(BasicNewsRecipe):
  7.     title                   = 'DigiZone'
  8.     __author__              = 'Tomas Latal'
  9.     __version__             = '1.0'
  10.     __date__                = '30 April 2011'
  11.     description             = u'Aktuality a \u010dl\xe1nky z DigiZone.cz'
  12.     oldest_article          = 1
  13.     max_articles_per_feed   = 10
  14.     encoding                = 'iso-8859-2'
  15.     publisher               = 'Internet Info s.r.o.'
  16.     category                = 'digitalni vysilani, televize, 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.                                .urs p {margin: 0 0 0.8em 0;}'
  24.  
  25.     feeds          = [
  26.                         (u'Aktuality', u'http://rss.digizone.cz/aktuality'),
  27.                         (u'\u010cl\xe1nky', u'http://rss.digizone.cz/clanky')
  28.                      ]
  29.  
  30.     remove_tags_before = dict(id=['p-article','p-actuality'])
  31.  
  32.     remove_tags_after = dict(id=['p-article','p-actuality'])
  33.  
  34.     remove_tags = [
  35.                     dict(attrs={'class':['path','mth','lbtr','serial','enquiry','links','dp-n','side','op-ab','op-view','op-sub','op-list',]}),
  36.                     dict(id=['opinions','discussionList','similarItems','sidebar','footer','opl','promo-box'])
  37.                   ]
  38.