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

  1. # -*- coding: utf-8 -*-
  2.  
  3. from calibre.web.feeds.news import BasicNewsRecipe
  4.  
  5. class AdvancedUserRecipe1311799898(BasicNewsRecipe):
  6.     title          = u'Peri├│dico Portafolio Colombia'
  7.     language = 'es_CO'
  8.     __author__  = 'BIGO-CAVA'
  9.     cover_url     = 'http://www.portafolio.co/sites/portafolio.co/themes/portafolio_2011/logo.png'
  10.     remove_tags_before = dict(id='contenidoArt')
  11.     remove_tags_after  = [dict(name='div', attrs={'class':'articulo-mas'})]
  12.     keep_only_tags = [dict(name='div', id='contenidoArt')]
  13.     oldest_article = 1
  14.     max_articles_per_feed = 100
  15.     remove_javascript = True
  16.     no_stylesheets        = True
  17.     use_embedded_content  = False
  18.     remove_empty_feeds    = True
  19.     masthead_url          = 'http://www.portafolio.co/sites/portafolio.co/themes/portafolio_2011/logo.png'
  20.     publication_type      = 'newspaper'
  21.  
  22.     extra_css             = """
  23.                                p{text-align: justify; font-size: 100%}
  24.                                body{ text-align: left; font-size:100% }
  25.                                h1{font-family: sans-serif; font-size:150%; font-weight:bold; text-align: justify; }
  26.                                h3{font-family: sans-serif; font-size:100%; font-style: italic; text-align: justify; }
  27.                                  """
  28.  
  29.  
  30.     feeds          = [(u'Negocios', u'http://www.portafolio.co/negocios/feed'),
  31.               (u'Economia', u'http://www.portafolio.co/economia/feed'),
  32.               (u'Internacional', u'http://www.portafolio.co/internacional/feed'),
  33.               (u'Indicadores', u'http://www.portafolio.co/indicadores/feed'),
  34.               (u'Opinion', u'http://www.portafolio.co/opinion/feed'),
  35.               (u'Finanzas Personales', u'http://www.portafolio.co/finanzas-personales/feed'),
  36.               (u'Herramientas', u'http://www.portafolio.co/herramientas/feed')]
  37.