mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Use a forked MathJax, makes it easier to maintain the patch
This commit is contained in:
parent
0009208119
commit
cf5755f6a2
@ -7,7 +7,7 @@ __license__ = 'GPL v3'
|
||||
__copyright__ = '2012, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
import os, re
|
||||
import os
|
||||
from urllib import urlretrieve
|
||||
from zipfile import ZipFile, ZIP_STORED, ZipInfo
|
||||
from hashlib import sha1
|
||||
@ -19,38 +19,22 @@ from setup import Command
|
||||
class MathJax(Command):
|
||||
|
||||
description = 'Create the MathJax bundle'
|
||||
MATH_JAX_VERSION = '2.6.1'
|
||||
MATH_JAX_URL = 'https://github.com/mathjax/MathJax/archive/%s.zip' % MATH_JAX_VERSION
|
||||
MATH_JAX_URL = 'https://github.com/kovidgoyal/MathJax/archive/master.zip'
|
||||
FONT_FAMILY = 'TeX'
|
||||
|
||||
def add_options(self, parser):
|
||||
parser.add_option('--path-to-mathjax', help='Path to the MathJax source code')
|
||||
|
||||
def download_mathjax_release(self):
|
||||
from calibre.ptempfile import TemporaryDirectory
|
||||
def download_mathjax_release(self, tdir):
|
||||
self.info('Downloading MathJax:', self.MATH_JAX_URL)
|
||||
filename = urlretrieve(self.MATH_JAX_URL)[0]
|
||||
with ZipFile(filename) as zf, TemporaryDirectory() as tdir:
|
||||
with ZipFile(filename) as zf:
|
||||
zf.extractall(tdir)
|
||||
for d in os.listdir(tdir):
|
||||
q = os.path.join(tdir, d)
|
||||
if os.path.isdir(q):
|
||||
return q
|
||||
|
||||
def patch_webfonts(self, raw):
|
||||
raw = raw.decode('utf-8')
|
||||
nraw = re.sub(r'font = {[^}]+WOFFDIR[^}]+}',
|
||||
'''font = {'font-family':family+'w', src:'url(' + AJAX.fileURL(WOFFDIR+'/'+name+'-'+variant+'.woff') + ') format("woff")'}''', raw)
|
||||
if raw == nraw:
|
||||
raise SystemExit('Patching of webfonts failed')
|
||||
return nraw.encode('utf-8')
|
||||
return os.path.join(tdir, 'MathJax-master')
|
||||
|
||||
def add_file(self, zf, path, name):
|
||||
with open(path, 'rb') as f:
|
||||
raw = f.read()
|
||||
if name == 'jax/output/CommonHTML/fonts/TeX/fontdata.js':
|
||||
raw = self.patch_webfonts(raw)
|
||||
self.patched = True
|
||||
self.h.update(raw)
|
||||
zi = ZipInfo(name)
|
||||
zi.external_attr = 0o444 << 16L
|
||||
@ -67,9 +51,10 @@ class MathJax(Command):
|
||||
return '/fonts/' in name and self.FONT_FAMILY not in name
|
||||
|
||||
def run(self, opts):
|
||||
self.patched = False
|
||||
from calibre.ptempfile import TemporaryDirectory
|
||||
self.h = sha1()
|
||||
src = opts.path_to_mathjax or self.download_mathjax_release()
|
||||
with TemporaryDirectory() as tdir:
|
||||
src = opts.path_to_mathjax or self.download_mathjax_release(tdir)
|
||||
self.info('Compressing MathJax...')
|
||||
from calibre.ptempfile import SpooledTemporaryFile
|
||||
t = SpooledTemporaryFile()
|
||||
@ -81,8 +66,6 @@ class MathJax(Command):
|
||||
|
||||
zf.comment = self.h.hexdigest()
|
||||
t.seek(0)
|
||||
if not self.patched:
|
||||
raise SystemExit('Could not find fontdata.js to patch')
|
||||
with open(self.j(self.RESOURCES, 'content-server', 'mathjax.zip.xz'), 'wb') as f:
|
||||
compress(t, f, level=9)
|
||||
with open(self.j(self.RESOURCES, 'content-server', 'mathjax.version'), 'wb') as f:
|
||||
|
@ -23,6 +23,8 @@ def monkeypatch(mathjax_files):
|
||||
return name
|
||||
ans = get_url(mathjax_files, name)
|
||||
if ans is name and not name.startswith('blob:'):
|
||||
if ans.endswith('.eot') or ans.endswith('.otf'):
|
||||
return ''
|
||||
print('WARNING: Failed to resolve MathJax file:', name)
|
||||
return ans
|
||||
window.MathJax.Ajax.fileURL = file_url
|
||||
|
Loading…
x
Reference in New Issue
Block a user