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

  1.  
  2. __license__   = 'GPL v3'
  3. __copyright__ = '2011, Darko Miletic <darko.miletic at gmail.com>'
  4. '''
  5. blogs.tedneward.com
  6. '''
  7.  
  8. from calibre.web.feeds.news import BasicNewsRecipe
  9.  
  10. class InteroperabilityHappens(BasicNewsRecipe):
  11.     title                 = 'Interoperability Happens'
  12.     __author__            = 'Darko Miletic'
  13.     description           = 'Tech blog by Ted Neward'
  14.     oldest_article        = 15
  15.     max_articles_per_feed = 100
  16.     language              = 'en'
  17.     encoding              = 'utf-8'
  18.     no_stylesheets        = True
  19.     use_embedded_content  = True
  20.     publication_type      = 'blog'
  21.     extra_css             = """
  22.                                 body{font-family: Verdana,Arial,Helvetica,sans-serif}
  23.                             """
  24.  
  25.     conversion_options = {
  26.                           'comment'  : description
  27.                         , 'tags'     : 'blog, technology, microsoft, programming, C#, Java'
  28.                         , 'publisher': 'Ted Neward'
  29.                         , 'language' : language
  30.                         }
  31.  
  32.     feeds = [(u'Posts', u'http://blogs.tedneward.com/SyndicationService.asmx/GetRss')]
  33.  
  34.