home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_3777 < prev    next >
Encoding:
Text File  |  2009-12-12  |  514 b   |  18 lines

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class AdvancedUserRecipe1257093338(BasicNewsRecipe):
  4.     title          = u'Golem.de'
  5.     language = 'de'
  6.     __author__ = 'Kovid Goyal'
  7.     oldest_article = 7
  8.     max_articles_per_feed = 100
  9.  
  10.     feeds          = [(u'Golem.de', u'http://rss.golem.de/rss.php?feed=ATOM1.0')]
  11.  
  12.     def print_version(self, url):
  13.         murxb = url.rfind('/') + 1
  14.         murxc = url[murxb :-5]
  15.         murxa = 'http://www.golem.de/' + 'print.php?a=' + murxc
  16.         return murxa
  17.  
  18.