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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class AdvancedUserRecipe1313609361(BasicNewsRecipe):
  4.     news                  = True
  5.     title          = u'El Mostrador'
  6.     __author__            = 'Alex Mitrani'
  7.     description           = u'Chilean online newspaper'
  8.     publisher             = u'La Plaza S.A.'
  9.     category              = 'news, rss'
  10.     oldest_article = 7
  11.     max_articles_per_feed = 100
  12.     summary_length        = 1000
  13.     language              = 'es_CL'
  14.     remove_javascript     = True
  15.     no_stylesheets        = True
  16.     use_embedded_content  = False
  17.     remove_empty_feeds    = True
  18.     masthead_url          = 'http://www.elmostrador.cl/assets/img/logo-elmostrador-m.jpg'
  19.     remove_tags_before = dict(name='div', attrs={'class':'news-heading cf'})
  20.     remove_tags_after  = dict(name='div', attrs={'class':'footer-actions cf'})
  21.     remove_tags = [dict(name='div', attrs={'class':'footer-actions cb cf'})
  22.     ,dict(name='div', attrs={'class':'news-aside fl'})
  23.     ,dict(name='div', attrs={'class':'footer-actions cf'})
  24.     ,dict(name='div', attrs={'class':'user-bar','id':'top'})
  25.     ,dict(name='div', attrs={'class':'indicators'})
  26.     ,dict(name='div', attrs={'id':'header'})
  27.     ]
  28.  
  29.  
  30.     feeds          = [(u'Temas Destacados'
  31.     , u'http://www.elmostrador.cl/destacado/feed/')
  32.     , (u'El D\xeda', u'http://www.elmostrador.cl/dia/feed/')
  33.     , (u'Pa\xeds', u'http://www.elmostrador.cl/noticias/pais/feed/')
  34.     , (u'Mundo', u'http://www.elmostrador.cl/noticias/mundo/feed/')
  35.     , (u'Negocios', u'http://www.elmostrador.cl/noticias/negocios/feed/')
  36.     , (u'Cultura', u'http://www.elmostrador.cl/noticias/cultura/feed/')
  37.     , (u'Vida en L\xednea', u'http://www.elmostrador.cl/vida-en-linea/feed/')
  38.     , (u'Opini\xf3n & Blogs', u'http://www.elmostrador.cl/opinion/feed/')
  39.     ]
  40.  
  41.