~ubuntu-branches/ubuntu/jaunty/calibre/jaunty

« back to all changes in this revision

Viewing changes to src/calibre/ebooks/lrf/html/convert_from.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-08 00:29:21 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090308002921-i8zl8jjqtt4i7pnn
Tags: 0.4.143+dfsg-0ubuntu1
* New upstream bug fix release.
  - remove_postinstall.patch: Adapt to new upstream release.
* Add bzr-builddeb configuration.
* debian/rules: Fix get-orig-source to not kill .bzr-builddeb/.
* debian/rules, get-orig-source: Remove src/odf/thumbnail.py, since it has
  an unclear license ("freeware", probably misdeclared, but can't prove
  otherwise); it is not used by calibre anyway.

Show diffs side-by-side

added added

removed removed

Lines of Context:
479
479
            pprop.update(self.pseudo_css[tagname])
480
480
        if tag.has_key("class"):
481
481
            cls = tag["class"].lower()
482
 
            for cls in cls.split():            
 
482
            for cls in cls.split():
483
483
                for classname in ["."+cls, tagname+"."+cls]:
484
484
                    if self.css.has_key(classname):
485
485
                        prop.update(self.css[classname])