mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Handle missing stylesheets
This commit is contained in:
parent
a2fe167b54
commit
c5acda690f
@ -110,7 +110,8 @@ class Stylizer(object):
|
|||||||
|
|
||||||
def __init__(self, tree, path, oeb, profile=PROFILES['PRS505']):
|
def __init__(self, tree, path, oeb, profile=PROFILES['PRS505']):
|
||||||
self.profile = profile
|
self.profile = profile
|
||||||
base = os.path.dirname(path)
|
self.logger = oeb.logger
|
||||||
|
item = oeb.manifest.hrefs[path]
|
||||||
basename = os.path.basename(path)
|
basename = os.path.basename(path)
|
||||||
cssname = os.path.splitext(basename)[0] + '.css'
|
cssname = os.path.splitext(basename)[0] + '.css'
|
||||||
stylesheets = [HTML_CSS_STYLESHEET]
|
stylesheets = [HTML_CSS_STYLESHEET]
|
||||||
@ -128,8 +129,12 @@ class Stylizer(object):
|
|||||||
and elem.get('rel', 'stylesheet') == 'stylesheet' \
|
and elem.get('rel', 'stylesheet') == 'stylesheet' \
|
||||||
and elem.get('type', CSS_MIME) in OEB_STYLES:
|
and elem.get('type', CSS_MIME) in OEB_STYLES:
|
||||||
href = urlnormalize(elem.attrib['href'])
|
href = urlnormalize(elem.attrib['href'])
|
||||||
path = os.path.join(base, href)
|
path = item.abshref(href)
|
||||||
path = os.path.normpath(path).replace('\\', '/')
|
if path not in oeb.manifest.hrefs:
|
||||||
|
self.logger.warn(
|
||||||
|
'Stylesheet %r referenced by file %r not in manifest' %
|
||||||
|
(path, item.href))
|
||||||
|
continue
|
||||||
if path in self.STYLESHEETS:
|
if path in self.STYLESHEETS:
|
||||||
stylesheet = self.STYLESHEETS[path]
|
stylesheet = self.STYLESHEETS[path]
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user