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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class AdvancedUserRecipe1302341394(BasicNewsRecipe):
  4.     title          = u'Hallo Assen'
  5.     oldest_article = 180
  6.     max_articles_per_feed = 100
  7.  
  8.     __author__ = 'Reijndert'
  9.     no_stylesheets = True
  10.     cover_url = 'http://www.halloassen.nl/multimedia/halloassen/archive/00002/HalloAssen_2518a.gif'
  11.     language = 'nl'
  12.     country = 'NL'
  13.     version = 1
  14.     category = u'Nieuws'
  15.     timefmt = ' %Y-%m-%d (%a)'
  16.  
  17.  
  18.  
  19.     keep_only_tags = [dict(name='div', attrs={'class':'photoFrame'})
  20.                                ,dict(name='div', attrs={'class':'textContent'})
  21.                   ]
  22.  
  23.     remove_tags = [
  24.                     dict(name='div',attrs={'id':'articleLinks'})
  25.                     ,dict(name='div',attrs={'class':'categories clearfix'})
  26.                     ,dict(name='div',attrs={'id':'rating'})
  27.                     ,dict(name='div',attrs={'id':'comments'})
  28.                 ]
  29.  
  30.     feeds          = [(u'Ons Nieuws', u'http://feeds.feedburner.com/halloassen/onsnieuws'), (u'Politie', u'http://www.halloassen.nl/rss/?c=37'), (u'Rechtbank', u'http://www.halloassen.nl/rss/?c=39'), (u'Justitie', u'http://www.halloassen.nl/rss/?c=36'), (u'Evenementen', u'http://www.halloassen.nl/rss/?c=34'), (u'Cultuur', u'http://www.halloassen.nl/rss/?c=32'), (u'Politiek', u'http://www.halloassen.nl/rss/?c=38'), (u'Economie', u'http://www.halloassen.nl/rss/?c=33')]
  31.  
  32.  
  33.     extra_css = '''
  34.                 body {font-family: verdana, arial, helvetica, geneva, sans-serif;}
  35.                 '''
  36.  
  37.