pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-notebook py-notebook: updated to 5.7.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6277d2f06228
branches:  trunk
changeset: 326057:6277d2f06228
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Nov 29 18:34:12 2018 +0000

description:
py-notebook: updated to 5.7.2

5.7.2
5.7.2 contains a security fix preventing malicious directory names
from being able to execute javascript. CVE request pending.

5.7.1
5.7.1 contains a security fix preventing nbconvert endpoints from executing javascript with access to the server API. CVE request pending.

5.7.0
New features:
- Update to CodeMirror to 5.37, which includes f-string sytax for Python 3.6
- Update jquery-ui to 1.12
- Check Host header to more securely protect localhost deployments from DNS rebinding.
  This is a pre-emptive measure, not fixing a known vulnerability
  Use .NotebookApp.allow_remote_access and .NotebookApp.local_hostnames to configure
  access.
- Allow access-control-allow-headers to be overridden
- Allow configuring max_body_size and max_buffer_size
- Allow configuring get_secure_cookie keyword-args
- Respect nbconvert entrypoints as sources for exporters
- Include translation sources in source distributions
- Various improvements to documentation

Fixing problems:
- Fix breadcrumb link when running with a base url
- Fix possible type error when closing activity stream
- Disable metadata editing for non-editable cells
- Fix some styling and alignment of prompts caused by regressions in 5.6.0.
- Enter causing page reload in shortcuts editor
- Fix uploading to the same file twice

diffstat:

 www/py-notebook/ALTERNATIVES |    8 +-
 www/py-notebook/Makefile     |   12 +-
 www/py-notebook/PLIST        |  186 ++++++++++++++++++++++++++++++++++++++++--
 www/py-notebook/distinfo     |   10 +-
 4 files changed, 191 insertions(+), 25 deletions(-)

diffs (truncated from 363 to 300 lines):

diff -r c7b4cfafff77 -r 6277d2f06228 www/py-notebook/ALTERNATIVES
--- a/www/py-notebook/ALTERNATIVES      Thu Nov 29 18:26:33 2018 +0000
+++ b/www/py-notebook/ALTERNATIVES      Thu Nov 29 18:34:12 2018 +0000
@@ -1,4 +1,4 @@
-bin/jupyter-bundlerextension @PREFIX@/bin/jupyter-bundlerextension@PYVERSSUFFIX@
-bin/jupyter-nbextension @PREFIX@/bin/jupyter-nbextension@PYVERSSUFFIX@
-bin/jupyter-notebook @PREFIX@/bin/jupyter-notebook@PYVERSSUFFIX@
-bin/jupyter-serverextension @PREFIX@/bin/jupyter-serverextension@PYVERSSUFFIX@
+bin/jupyter-bundlerextension @PREFIX@/bin/jupyter-bundlerextension-@PYVERSSUFFIX@
+bin/jupyter-nbextension @PREFIX@/bin/jupyter-nbextension-@PYVERSSUFFIX@
+bin/jupyter-notebook @PREFIX@/bin/jupyter-notebook-@PYVERSSUFFIX@
+bin/jupyter-serverextension @PREFIX@/bin/jupyter-serverextension-@PYVERSSUFFIX@
diff -r c7b4cfafff77 -r 6277d2f06228 www/py-notebook/Makefile
--- a/www/py-notebook/Makefile  Thu Nov 29 18:26:33 2018 +0000
+++ b/www/py-notebook/Makefile  Thu Nov 29 18:34:12 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2018/05/11 19:46:36 minskim Exp $
+# $NetBSD: Makefile,v 1.9 2018/11/29 18:34:12 adam Exp $
 
-DISTNAME=      notebook-5.5.0
+DISTNAME=      notebook-5.7.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=n/notebook/}
@@ -26,10 +26,10 @@
 USE_LANGUAGES= # none
 
 post-install:
-       for f in jupyter-bundlerextension jupyter-nbextension jupyter-notebook jupyter-serverextension; do \
-               ${MV} ${DESTDIR}${PREFIX}/bin/$$f ${DESTDIR}${PREFIX}/bin/$${f}${PYVERSSUFFIX} || ${TRUE}; \
-       done
+.for name in bundlerextension nbextension notebook serverextension
+       cd ${DESTDIR}${PREFIX}/bin && \
+               ${MV} jupyter-${name} jupyter-${name}-${PYVERSSUFFIX} || ${TRUE}
+.endfor
 
-.include "../../lang/python/application.mk"
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r c7b4cfafff77 -r 6277d2f06228 www/py-notebook/PLIST
--- a/www/py-notebook/PLIST     Thu Nov 29 18:26:33 2018 +0000
+++ b/www/py-notebook/PLIST     Thu Nov 29 18:34:12 2018 +0000
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.6 2018/05/11 19:46:36 minskim Exp $
-bin/jupyter-bundlerextension${PYVERSSUFFIX}
-bin/jupyter-nbextension${PYVERSSUFFIX}
-bin/jupyter-notebook${PYVERSSUFFIX}
-bin/jupyter-serverextension${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.7 2018/11/29 18:34:12 adam Exp $
+bin/jupyter-bundlerextension-${PYVERSSUFFIX}
+bin/jupyter-nbextension-${PYVERSSUFFIX}
+bin/jupyter-notebook-${PYVERSSUFFIX}
+bin/jupyter-serverextension-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -113,8 +113,17 @@
 ${PYSITELIB}/notebook/i18n/__init__.py
 ${PYSITELIB}/notebook/i18n/__init__.pyc
 ${PYSITELIB}/notebook/i18n/__init__.pyo
+${PYSITELIB}/notebook/i18n/fr_FR/LC_MESSAGES/nbjs.json
+${PYSITELIB}/notebook/i18n/fr_FR/LC_MESSAGES/nbjs.po
+${PYSITELIB}/notebook/i18n/fr_FR/LC_MESSAGES/nbui.mo
+${PYSITELIB}/notebook/i18n/fr_FR/LC_MESSAGES/nbui.po
+${PYSITELIB}/notebook/i18n/fr_FR/LC_MESSAGES/notebook.mo
+${PYSITELIB}/notebook/i18n/fr_FR/LC_MESSAGES/notebook.po
+${PYSITELIB}/notebook/i18n/zh_CN/LC_MESSAGES/nbjs.json
 ${PYSITELIB}/notebook/i18n/zh_CN/LC_MESSAGES/nbjs.po
+${PYSITELIB}/notebook/i18n/zh_CN/LC_MESSAGES/nbui.mo
 ${PYSITELIB}/notebook/i18n/zh_CN/LC_MESSAGES/nbui.po
+${PYSITELIB}/notebook/i18n/zh_CN/LC_MESSAGES/notebook.mo
 ${PYSITELIB}/notebook/i18n/zh_CN/LC_MESSAGES/notebook.po
 ${PYSITELIB}/notebook/jstest.py
 ${PYSITELIB}/notebook/jstest.pyc
@@ -128,6 +137,9 @@
 ${PYSITELIB}/notebook/log.py
 ${PYSITELIB}/notebook/log.pyc
 ${PYSITELIB}/notebook/log.pyo
+${PYSITELIB}/notebook/metrics.py
+${PYSITELIB}/notebook/metrics.pyc
+${PYSITELIB}/notebook/metrics.pyo
 ${PYSITELIB}/notebook/nbconvert/__init__.py
 ${PYSITELIB}/notebook/nbconvert/__init__.pyc
 ${PYSITELIB}/notebook/nbconvert/__init__.pyo
@@ -351,11 +363,124 @@
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mathchoice.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mediawiki-texvc.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mhchem.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mhchem3/mhchem.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/newcommand.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/noErrors.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/noUndefined.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/unicode.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/verb.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/accessibility-menu.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/auto-collapse.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/collapsible.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/explorer.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/invalid_keypress.mp3
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/invalid_keypress.ogg
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathjax-sre.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/algebra.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/elementary.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/hyperbolic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/trigonometry.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-capital.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-italic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-sans-serif-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-scripts.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-small.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-symbols.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/hebrew_letters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-double-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-normal.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-phonetic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-single-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold-fraktur.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold-script.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-double-struck.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-fraktur.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-italic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-monospace.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif-italic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-script.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-rest.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-upper-double-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-upper-normal.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-upper-single-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_angles.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_arrows.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_characters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_delimiters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_digits.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_geometry.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_harpoons.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_non_characters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_symbols.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_whitespace.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/other_stars.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/energy.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/length.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/memory.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/other.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/speed.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/temperature.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/time.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/volume.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/weight.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/algebra.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/elementary.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/hyperbolic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/trigonometry.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-capital.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-italic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-sans-serif-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-scripts.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-small.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-symbols.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/hebrew_letters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-double-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-normal.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-phonetic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-single-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold-fraktur.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold-script.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-double-struck.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-fraktur.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-italic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-monospace.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif-bold.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif-italic.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-script.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-rest.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-upper-double-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-upper-normal.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-upper-single-accent.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_angles.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_arrows.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_characters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_delimiters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_digits.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_geometry.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_harpoons.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_non_characters.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_symbols.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_whitespace.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/other_stars.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/energy.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/length.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/memory.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/other.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/speed.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/temperature.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/time.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/volume.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/weight.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/mathmaps/mathmaps_ie.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/semantic-enrich.js
+${PYSITELIB}/notebook/static/components/MathJax/extensions/a11y/wgxpath.install.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/asciimath2jax.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/fast-preview.js
 ${PYSITELIB}/notebook/static/components/MathJax/extensions/jsMath2jax.js
@@ -590,6 +715,13 @@
 ${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js
 ${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata.js
 ${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/jax.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/FontWarnings.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/HTML-CSS.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/HelpDialog.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/MathML.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/MathMenu.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/TeX.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/ar/ar.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/ast/FontWarnings.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/ast/HTML-CSS.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/ast/HelpDialog.js
@@ -667,6 +799,13 @@
 ${PYSITELIB}/notebook/static/components/MathJax/localization/de/MathMenu.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/de/TeX.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/de/de.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/FontWarnings.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/HTML-CSS.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/HelpDialog.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/MathML.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/MathMenu.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/TeX.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/diq/diq.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/en/FontWarnings.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/en/HTML-CSS.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/en/HelpDialog.js
@@ -849,6 +988,13 @@
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sco/MathMenu.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sco/TeX.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sco/sco.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/FontWarnings.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/HTML-CSS.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/HelpDialog.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/MathML.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/MathMenu.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/TeX.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/sk/sk.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sl/FontWarnings.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sl/HTML-CSS.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sl/HelpDialog.js
@@ -863,6 +1009,13 @@
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sv/MathMenu.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sv/TeX.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/sv/sv.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/FontWarnings.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/HTML-CSS.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/HelpDialog.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/MathML.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/MathMenu.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/TeX.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/th/th.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/tr/FontWarnings.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/tr/HTML-CSS.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/tr/HelpDialog.js
@@ -891,6 +1044,13 @@
 ${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/MathMenu.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/TeX.js
 ${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/zh-hans.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/FontWarnings.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/HTML-CSS.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/HelpDialog.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/MathML.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/MathMenu.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/TeX.js
+${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hant/zh-hant.js
 ${PYSITELIB}/notebook/static/components/backbone/backbone-min.js
 ${PYSITELIB}/notebook/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css
 ${PYSITELIB}/notebook/static/components/bootstrap-tour/build/js/bootstrap-tour.min.js
@@ -1172,11 +1332,14 @@
 ${PYSITELIB}/notebook/static/components/codemirror/theme/eclipse.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/elegant.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/erlang-dark.css
+${PYSITELIB}/notebook/static/components/codemirror/theme/gruvbox-dark.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/hopscotch.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/icecoder.css
+${PYSITELIB}/notebook/static/components/codemirror/theme/idea.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/isotope.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/lesser-dark.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/liquibyte.css
+${PYSITELIB}/notebook/static/components/codemirror/theme/lucario.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/material.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/mbo.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/mdn-like.css
@@ -1195,6 +1358,7 @@
 ${PYSITELIB}/notebook/static/components/codemirror/theme/seti.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/shadowfox.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/solarized.css
+${PYSITELIB}/notebook/static/components/codemirror/theme/ssms.css
 ${PYSITELIB}/notebook/static/components/codemirror/theme/the-matrix.css



Home | Main Index | Thread Index | Old Index