You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/notebook/files/notebook-6.4.11-no-mathjax....

43 lines
1.5 KiB

diff -dupr notebook-6.4.11.orig/setupbase.py notebook-6.4.11/setupbase.py
--- notebook-6.4.11.orig/setupbase.py 2022-04-20 09:37:45.964925905 +0200
+++ notebook-6.4.11/setupbase.py 2022-04-20 09:40:32.624674341 +0200
@@ -167,38 +167,6 @@ def find_package_data():
if f.endswith(('.js', '.css')):
static_data.append(pjoin(parent, f))
- # Trim mathjax
- mj = lambda *path: pjoin(components, 'MathJax', *path)
- static_data.extend([
- mj('MathJax.js'),
- mj('config', 'TeX-AMS-MML_HTMLorMML-full.js'),
- mj('config', 'Safe.js'),
- ])
-
- trees = []
- mj_out = mj('jax', 'output')
-
- if os.path.exists(mj_out):
- for output in os.listdir(mj_out):
- path = pjoin(mj_out, output)
- static_data.append(pjoin(path, '*.js'))
- autoload = pjoin(path, 'autoload')
- if os.path.isdir(autoload):
- trees.append(autoload)
-
- for tree in trees + [
- mj('localization'), # limit to en?
- mj('fonts', 'HTML-CSS', 'STIX-Web', 'woff'),
- mj('extensions'),
- mj('jax', 'input', 'TeX'),
- mj('jax', 'output', 'HTML-CSS', 'fonts', 'STIX-Web'),
- mj('jax', 'output', 'SVG', 'fonts', 'STIX-Web'),
- mj('jax', 'element', 'mml'),
- ]:
- for parent, dirs, files in os.walk(tree):
- for f in files:
- static_data.append(pjoin(parent, f))
-
os.chdir(os.path.join('tests',))
js_tests = glob('*.js') + glob('*/*.js')