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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class WozDie(BasicNewsRecipe):
  4.      title          = u'WOZ Die Wochenzeitung'
  5.      oldest_article = 7
  6.      max_articles_per_feed = 100
  7.      language = 'de'
  8.  
  9.      no_stylesheets = True
  10.      remove_tags    = [dict(name='p', attrs={'class':'arrow_top'})]
  11.      remove_tags    = [dict(name='p', attrs={'class':'bottom_right'})]
  12.      remove_tags    = [dict(name='script')]
  13.      extra_css      = '''#print_titel{vertical-align: bottom; text-align:
  14.  left; color: #666666; background-color: white; padding-top: 30px; padding-
  15.  bottom: 10px; border-bottom: 1px solid #999999;} #title{text-align:
  16.  left; font-size: large; font-weight: 600; padding-top: 0px; padding-
  17.  bottom: 6px;}  h3 {text-align: left; font-size: large; font-weight: 600;
  18.  padding-top: 0px; padding-bottom: 6px;}  #lead{font-weight: 600;
  19.  padding-bottom: 6px;}  h2{font-weight: 600; padding-bottom: 6px;}
  20.  #author{color: #666666; padding-top: 0px; padding-bottom: 0px;}
  21.  h4{color: #666666; padding-top: 0px; padding-bottom: 0px;}  #author2
  22.  {color: #666666; padding-top: 0px; padding-bottom: 0px;}  .dotted_line
  23.  {padding-top: 0px; margin-bottom: 18px; border-bottom: 1px dotted
  24.  #666666;}  .intro{margin: 0 auto; font-weight: 600; padding-bottom:
  25.  18px;}  h5{margin: 0 auto; font-weight: 600; padding-bottom: 18px;}
  26.  .intro2{margin: 0 auto;  font-weight: 600;}  .text{padding-bottom:
  27.  18px;}  .subtitle{margin: 0 auto; font-weight: 600; padding-bottom:
  28.  10px;}  .articletitle{margin: 0 auto; font-weight: 600; padding-bottom:
  29.  10px;}  #content_infobox{margin-top: 20px; margin-left: 0px; margin-
  30.  right: 0px; margin-bottom: 10px; text-align: left; border-bottom: 1px
  31.  solid #999999;}  .content_infobox_titel{padding-top: 6px; padding-
  32.  bottom: 8px; padding-left: 8px; padding-right: 8px; font-weight: 600;
  33.  border-top: 1px solid #999999; border-bottom: 1px dotted #999999;}
  34.  .content_infobox_text{padding-top: 6px; padding-bottom: 12px; padding-
  35.  left: 8px; padding-right: 8px;}  .box_gray{padding-top: 4px; padding-
  36.  left:  7px; padding-right:  7px; padding-bottom:  4px;}  .box_white {
  37.  padding-top: 4px; padding-left:  7px; padding-right:  7px; padding-bottom:
  38.  4px;}  .content_infobox_mehr{margin-top: 20px; margin-left: 0px; margin-
  39.  right: 0px; margin-bottom: 10px; text-align: left; width: 600px; border-
  40.  bottom: 1px solid #999999;}'''
  41.  
  42.      feeds          = [('WOZ Die Wochenzeitung - Headlines',
  43.  'http://www.woz.ch/inhalt/headlinesRSS.php'),]
  44.  
  45.      def print_version(self, url):
  46.             return url.replace('rss/', 'print_')
  47.  
  48.