~ubuntu-branches/ubuntu/karmic/calibre/karmic

« back to all changes in this revision

Viewing changes to src/calibre/web/feeds/recipes/recipe_elektrolese.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-30 12:49:41 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730124941-qjdsmri25zt8zocn
Tags: 0.6.3+dfsg-0ubuntu1
* New upstream release. Please see http://calibre.kovidgoyal.net/new_in_6/
  for the list of new features and changes.
* remove_postinstall.patch: Update for new version.
* build_debug.patch: Does not apply any more, disable for now. Might not be
  necessary any more.
* debian/copyright: Fix reference to versionless GPL.
* debian/rules: Drop obsolete dh_desktop call.
* debian/rules: Add workaround for weird Python 2.6 setuptools behaviour of
  putting compiled .so files into src/calibre/plugins/calibre/plugins
  instead of src/calibre/plugins.
* debian/rules: Drop hal fdi moving, new upstream version does not use hal
  any more. Drop hal dependency, too.
* debian/rules: Install udev rules into /lib/udev/rules.d.
* Add debian/calibre.preinst: Remove unmodified
  /etc/udev/rules.d/95-calibre.rules on upgrade.
* debian/control: Bump Python dependencies to 2.6, since upstream needs
  it now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    oldest_article = 14
20
20
    max_articles_per_feed = 50
21
21
    no_stylesheets = True
22
 
    #html2epub_options = 'linearize_tables = True\nbase_font_size2=14'
 
22
    conversion_options = {'linearize_tables':True}
23
23
    encoding = 'utf-8'
24
24
 
25
25
 
27
27
    filter_regexps = [r'ad\.doubleclick\.net']
28
28
 
29
29
    remove_tags = [dict(name='div', attrs={'class':'bannerSuperBanner'}),
30
 
                   dict(id='comments')]
 
30
                   dict(id='comments'),
 
31
                   dict(id='Navbar1')]
31
32
 
32
33
 
33
34
 
34
35
    feeds =  [ (u'electrolese', u'http://elektrolese.blogspot.com/feeds/posts/default?alt=rss') ]
35
36
 
 
37
 
 
38