Update to jupyter-notebook-5.7.8.

This update introduces numerous fixes, and addresses CVE-2018-8768
(bypass sanitization), CVE-2019–9644 (cross-site inclusion
vulnerability) and CVE-2019-10255 (Open Redirect vulnerability). It also
includes a newer Bootstrap, which addresses CVE-2018-14041 (XSS
vulnerability).

Changelog can be found at
https://github.com/jupyter/notebook/blob/5.7.8/docs/source/changelog.rst

While here change HOMEPAGE to https.

OK shadchin@
This commit is contained in:
bket 2019-05-10 11:36:55 +00:00
parent bf8d3ed2e0
commit 5c5f0aafd4
4 changed files with 330 additions and 62 deletions

View File

@ -1,15 +1,14 @@
# $OpenBSD: Makefile,v 1.9 2019/04/28 20:51:58 sthen Exp $
# $OpenBSD: Makefile,v 1.10 2019/05/10 11:36:55 bket Exp $
COMMENT = web-based notebook for interactive computing
MODPY_EGG_VERSION = 5.0.0
REVISION = 1
MODPY_EGG_VERSION = 5.7.8
DISTNAME = notebook-${MODPY_EGG_VERSION}
PKGNAME = jupyter-notebook-${MODPY_EGG_VERSION}
CATEGORIES = www devel
HOMEPAGE = http://jupyter.org/
HOMEPAGE = https://jupyter.org/
MAINTAINER = Alexandr Shadchin <shadchin@openbsd.org>
@ -19,30 +18,38 @@ PERMIT_PACKAGE_CDROM = Yes
MODULES = lang/python
MODPY_PI = Yes
MODPY_SETUPTOOLS = Yes
FLAVORS = python3
FLAVOR ?=
RUN_DEPENDS = www/py-jinja2${MODPY_FLAVOR} \
www/py-tornado${MODPY_FLAVOR} \
RUN_DEPENDS = devel/py-ipykernel${MODPY_FLAVOR} \
devel/py-ipython_genutils${MODPY_FLAVOR} \
devel/py-traitlets${MODPY_FLAVOR} \
devel/py-jupyter_core${MODPY_FLAVOR}>=4.3.0 \
devel/py-jupyter_client${MODPY_FLAVOR}>=5.0.1 \
devel/py-nbformat${MODPY_FLAVOR}>=4.3.0 \
devel/py-nbconvert${MODPY_FLAVOR}>=5.1.1 \
devel/py-ipykernel${MODPY_FLAVOR}>=4.6.1 \
devel/ipython${MODPY_FLAVOR}>=5.3.0 \
www/py-terminado${MODPY_FLAVOR}
devel/py-jupyter_client${MODPY_FLAVOR}>=5.2.0 \
devel/py-jupyter_core${MODPY_FLAVOR}>=4.4.0 \
devel/py-nbconvert${MODPY_FLAVOR} \
devel/py-nbformat${MODPY_FLAVOR} \
devel/py-send2trash${MODPY_FLAVOR} \
devel/py-traitlets${MODPY_FLAVOR}>=4.2.1 \
net/py-zmq${MODPY_FLAVOR}>=17 \
sysutils/py-prometheus_client${MODPY_FLAVOR} \
www/py-jinja2${MODPY_FLAVOR} \
www/py-terminado${MODPY_FLAVOR}>=0.8.1 \
www/py-tornado${MODPY_FLAVOR}>=4.1,<7
TEST_DEPENDS = ${RUN_DEPENDS} \
devel/py-coverage${MODPY_FLAVOR} \
devel/py-nose${MODPY_FLAVOR} \
devel/py-nose-warnings-filters${MODPY_FLAVOR} \
www/py-requests${MODPY_FLAVOR}
devel/py-nbval${MODPY_FLAVOR} \
www/py-requests${MODPY_FLAVOR} \
www/py-selenium${MODPY_FLAVOR}
# XXX once we have a port of pandoc, we can make docs.
.if !${FLAVOR:Mpython3}
RUN_DEPENDS += devel/py-futures \
net/py-ipaddress
TEST_DEPENDS += devel/py-mock
.else
PKGNAME = jupyter-notebook${MODPY_MAJOR_VERSION}-${MODPY_EGG_VERSION}
@ -53,10 +60,13 @@ post-install:
mv ${PREFIX}/bin/jupyter-nbextension{,${MODPY_BIN_SUFFIX}}
mv ${PREFIX}/bin/jupyter-notebook{,${MODPY_BIN_SUFFIX}}
mv ${PREFIX}/bin/jupyter-serverextension{,${MODPY_BIN_SUFFIX}}
mv ${PREFIX}/bin/less-watch{,${MODPY_BIN_SUFFIX}}
# XXX exclude selenium tests as recommended, and exclude tests that use
# send2trash as they error out with "Trashing on system internal mounts is not
# supported".
do-test:
cd ${WRKSRC} && env LC_CTYPE=C.UTF-8 \
${LOCALBASE}/bin/nosetests${MODPY_BIN_SUFFIX} notebook
cd ${WRKSRC} && env LC_CTYPE=C.UTF-8 HOME=${WRKSRC} \
${LOCALBASE}/bin/nosetests${MODPY_BIN_SUFFIX} notebook -v \
--exclude=delete --exclude=follow_file --exclude=selenium
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (notebook-5.0.0.tar.gz) = HOo7u9A8jlhCoUAzR6jMgTRIazzggaLlsZUqAOpm7VQ=
SIZE (notebook-5.0.0.tar.gz) = 11481080
SHA256 (notebook-5.7.8.tar.gz) = Vz4K5lDF12sYtuVkum0hvzIdAIR94dIVtBistk8Fbrg=
SIZE (notebook-5.7.8.tar.gz) = 13371684

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-notebook_base_zmqhandlers_py,v 1.1 2019/04/28 14:45:01 bket Exp $
Fix issue with py-tornado-5:
TypeError: __init__() got an unexpected keyword argument 'io_loop'
Index: notebook/base/zmqhandlers.py
--- notebook/base/zmqhandlers.py.orig
+++ notebook/base/zmqhandlers.py
@@ -173,7 +173,7 @@ class WebSocketMixin(object):
self.last_ping = loop.time() # Remember time of last ping
self.last_pong = self.last_ping
self.ping_callback = ioloop.PeriodicCallback(
- self.send_ping, self.ping_interval, io_loop=loop,
+ self.send_ping, self.ping_interval,
)
self.ping_callback.start()
return super(WebSocketMixin, self).open(*args, **kwargs)

View File

@ -1,11 +1,17 @@
@comment $OpenBSD: PLIST,v 1.5 2017/05/23 17:44:39 shadchin Exp $
@comment $OpenBSD: PLIST,v 1.6 2019/05/10 11:36:55 bket Exp $
bin/jupyter-bundlerextension${MODPY_BIN_SUFFIX}
bin/jupyter-nbextension${MODPY_BIN_SUFFIX}
bin/jupyter-notebook${MODPY_BIN_SUFFIX}
bin/jupyter-serverextension${MODPY_BIN_SUFFIX}
bin/less-watch${MODPY_BIN_SUFFIX}
lib/python${MODPY_VERSION}/site-packages/notebook/
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/entry_points.txt
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/not-zip-safe
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt
lib/python${MODPY_VERSION}/site-packages/notebook-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
lib/python${MODPY_VERSION}/site-packages/notebook/__init__.py
lib/python${MODPY_VERSION}/site-packages/notebook/__main__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}/
@ -14,18 +20,19 @@ lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}__main__.${MOD
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}_sysinfo.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}_tz.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}_version.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}allow76.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}config_manager.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}extensions.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}jstest.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}log.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}metrics.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}nbextensions.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}notebookapp.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}serverextensions.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}transutils.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/_sysinfo.py
lib/python${MODPY_VERSION}/site-packages/notebook/_tz.py
lib/python${MODPY_VERSION}/site-packages/notebook/_version.py
lib/python${MODPY_VERSION}/site-packages/notebook/allow76.py
lib/python${MODPY_VERSION}/site-packages/notebook/auth/
lib/python${MODPY_VERSION}/site-packages/notebook/auth/__init__.py
lib/python${MODPY_VERSION}/site-packages/notebook/auth/__main__.py
@ -42,7 +49,9 @@ lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/
lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/${MODPY_PYCACHE}test_login.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/${MODPY_PYCACHE}test_security.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/test_login.py
lib/python${MODPY_VERSION}/site-packages/notebook/auth/tests/test_security.py
lib/python${MODPY_VERSION}/site-packages/notebook/base/
lib/python${MODPY_VERSION}/site-packages/notebook/base/__init__.py
@ -86,6 +95,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/bundler/tests/test_bundler_too
lib/python${MODPY_VERSION}/site-packages/notebook/bundler/tests/test_bundlerextension.py
lib/python${MODPY_VERSION}/site-packages/notebook/bundler/tools.py
lib/python${MODPY_VERSION}/site-packages/notebook/bundler/zip_bundler.py
lib/python${MODPY_VERSION}/site-packages/notebook/config_manager.py
lib/python${MODPY_VERSION}/site-packages/notebook/edit/
lib/python${MODPY_VERSION}/site-packages/notebook/edit/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/edit/${MODPY_PYCACHE}/
@ -99,6 +109,26 @@ ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/files/${MODPY_
lib/python${MODPY_VERSION}/site-packages/notebook/files/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/files/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/files/handlers.py
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/i18n/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/nbjs.json
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/nbjs.po
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/nbui.mo
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/nbui.po
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/notebook.mo
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/fr_FR/LC_MESSAGES/notebook.po
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/nbjs.json
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/nbjs.po
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/nbui.mo
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/nbui.po
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/notebook.mo
lib/python${MODPY_VERSION}/site-packages/notebook/i18n/zh_CN/LC_MESSAGES/notebook.po
lib/python${MODPY_VERSION}/site-packages/notebook/jstest.py
lib/python${MODPY_VERSION}/site-packages/notebook/kernelspecs/
lib/python${MODPY_VERSION}/site-packages/notebook/kernelspecs/__init__.py
@ -107,6 +137,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/kernelspecs/${MODPY_PYCACHE}__
lib/python${MODPY_VERSION}/site-packages/notebook/kernelspecs/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/kernelspecs/handlers.py
lib/python${MODPY_VERSION}/site-packages/notebook/log.py
lib/python${MODPY_VERSION}/site-packages/notebook/metrics.py
lib/python${MODPY_VERSION}/site-packages/notebook/nbconvert/
lib/python${MODPY_VERSION}/site-packages/notebook/nbconvert/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/nbconvert/${MODPY_PYCACHE}/
@ -132,6 +163,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/services/
lib/python${MODPY_VERSION}/site-packages/notebook/services/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/services/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/notebook/services/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/services/${MODPY_PYCACHE}shutdown.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/services/api/
lib/python${MODPY_VERSION}/site-packages/notebook/services/api/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/services/api/${MODPY_PYCACHE}/
@ -249,6 +281,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/services/sessions/tests/${MODP
lib/python${MODPY_VERSION}/site-packages/notebook/services/sessions/tests/${MODPY_PYCACHE}test_sessions_api.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/services/sessions/tests/test_sessionmanager.py
lib/python${MODPY_VERSION}/site-packages/notebook/services/sessions/tests/test_sessions_api.py
lib/python${MODPY_VERSION}/site-packages/notebook/services/shutdown.py
lib/python${MODPY_VERSION}/site-packages/notebook/static/
lib/python${MODPY_VERSION}/site-packages/notebook/static/auth/
lib/python${MODPY_VERSION}/site-packages/notebook/static/auth/css/
@ -262,19 +295,29 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/auth/js/main.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/auth/js/main.min.js.map
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-busy.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-busy-1.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-busy-2.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-busy-3.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-file.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-notebook.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon-terminal.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/favicon.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/images/logo.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/dialog.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/events.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/i18n.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/keyboard.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/namespace.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/notificationarea.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/notificationwidget.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/page.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/promises.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/security.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/base/js/utils.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/bidi/
lib/python${MODPY_VERSION}/site-packages/notebook/static/bidi/bidi.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/bidi/numericshaping.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/MathJax.js
@ -314,11 +357,135 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/exte
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/mathchoice.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/mediawiki-texvc.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/mhchem.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/mhchem3/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/mhchem3/mhchem.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/newcommand.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/noErrors.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/noUndefined.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/unicode.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/TeX/verb.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/accessibility-menu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/auto-collapse.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/collapsible.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/explorer.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/invalid_keypress.mp3
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/invalid_keypress.ogg
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathjax-sre.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/algebra.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/elementary.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/hyperbolic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/functions/trigonometry.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-capital.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-italic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-sans-serif-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-scripts.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-small.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/greek-symbols.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/hebrew_letters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-double-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-normal.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-phonetic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-lower-single-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold-fraktur.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold-script.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-double-struck.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-fraktur.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-italic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-monospace.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif-italic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-script.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-rest.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-upper-double-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-upper-normal.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/latin-upper-single-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_angles.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_arrows.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_characters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_delimiters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_digits.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_geometry.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_harpoons.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_non_characters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_symbols.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/math_whitespace.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/symbols/other_stars.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/energy.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/length.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/memory.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/other.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/speed.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/temperature.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/time.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/volume.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/en/units/weight.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/algebra.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/elementary.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/hyperbolic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/functions/trigonometry.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-capital.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-italic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-sans-serif-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-scripts.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-small.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/greek-symbols.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/hebrew_letters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-double-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-normal.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-phonetic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-lower-single-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold-fraktur.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold-script.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-double-struck.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-fraktur.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-italic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-monospace.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif-bold.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif-italic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-script.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-rest.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-upper-double-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-upper-normal.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/latin-upper-single-accent.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_angles.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_arrows.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_characters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_delimiters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_digits.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_geometry.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_harpoons.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_non_characters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_symbols.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/math_whitespace.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/symbols/other_stars.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/energy.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/length.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/memory.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/other.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/speed.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/temperature.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/time.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/volume.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/es/units/weight.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/mathmaps/mathmaps_ie.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/semantic-enrich.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/a11y/wgxpath.install.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/asciimath2jax.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/fast-preview.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/extensions/jsMath2jax.js
@ -385,6 +552,29 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/font
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Italic.woff
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Regular.woff
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/jax.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/Arrows.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/BasicLatin.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/CombDiacritMarks.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/CombDiactForSymbols.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/Dingbats.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/GeneralPunctuation.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/GeometricShapes.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/GreekAndCoptic.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/Latin1Supplement.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/LetterlikeSymbols.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/MathOperators.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/MiscTechnical.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/SpacingModLetters.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/SuppMathOperators.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/SupplementalArrowsA.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/element/mml/optable/SupplementalArrowsB.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/input/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/input/TeX/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/input/TeX/config.js
@ -707,6 +897,14 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/jax/output/SVG/jax.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/HTML-CSS.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/HelpDialog.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/MathML.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ar/ar.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ast/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ast/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/ast/HTML-CSS.js
@ -795,6 +993,14 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/loca
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/de/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/de/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/de/de.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/HTML-CSS.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/HelpDialog.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/MathML.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/diq/diq.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/en/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/en/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/en/HTML-CSS.js
@ -1003,6 +1209,14 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/loca
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sco/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sco/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sco/sco.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/HTML-CSS.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/HelpDialog.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/MathML.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sk/sk.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sl/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sl/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sl/HTML-CSS.js
@ -1019,6 +1233,14 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/loca
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sv/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sv/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/sv/sv.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/HTML-CSS.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/HelpDialog.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/MathML.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/th/th.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/tr/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/tr/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/tr/HTML-CSS.js
@ -1051,6 +1273,14 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/loca
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hans/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hans/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hans/zh-hans.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/FontWarnings.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/HTML-CSS.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/HelpDialog.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/MathML.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/MathMenu.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/TeX.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/MathJax/localization/zh-hant/zh-hant.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/backbone/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/backbone/backbone-min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap/
@ -1060,8 +1290,9 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap-to
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap-tour/build/js/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap-tour/build/js/bootstrap-tour.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap/js/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap/js/bootstrap.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap/dist/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap/dist/js/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/bootstrap/dist/js/bootstrap.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/addon/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/addon/comment/
@ -1438,6 +1669,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/s
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/input/input.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/input/keymap.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/input/keynames.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/input/movement.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/line/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/line/highlight.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/src/line/line_data.js
@ -1487,11 +1719,14 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/t
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/eclipse.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/elegant.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/erlang-dark.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/gruvbox-dark.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/hopscotch.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/icecoder.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/idea.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/isotope.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/lesser-dark.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/liquibyte.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/lucario.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/material.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/mbo.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/mdn-like.css
@ -1500,6 +1735,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/t
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/neat.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/neo.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/night.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/oceanic-next.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/panda-syntax.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/paraiso-dark.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/paraiso-light.css
@ -1507,7 +1743,9 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/t
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/railscasts.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/rubyblue.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/seti.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/shadowfox.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/solarized.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/ssms.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/the-matrix.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/tomorrow-night-bright.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/codemirror/theme/tomorrow-night-eighties.css
@ -1531,20 +1769,21 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/font-awesome
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.svg
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.ttf
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.woff
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.woff2
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/google-caja/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/google-caja/html-css-sanitizer-minified.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jed/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jed/jed.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-typeahead/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-typeahead/dist/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-typeahead/dist/jquery.typeahead.min.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-typeahead/dist/jquery.typeahead.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/jquery-ui.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/animated-overlay.gif
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
@ -1557,15 +1796,16 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/th
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/themes/smoothness/jquery-ui.min.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/ui/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/ui/minified/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery-ui/ui/minified/jquery-ui.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/jquery/jquery.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/marked/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/marked/lib/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/marked/lib/marked.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/min/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/min/locales.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/min/locales.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/min/moment-with-locales.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/min/moment-with-locales.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/min/moment.min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/moment/moment.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/preact/
@ -1575,6 +1815,11 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/preact/index
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/proptypes/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/proptypes/index.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs-plugins/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs-plugins/src/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs-plugins/src/json.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs-text/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs-text/text.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/requirejs/require.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/text-encoding/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/text-encoding/lib/
@ -1582,9 +1827,11 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/components/text-encodin
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/underscore/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/underscore/underscore-min.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js/dist/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js/dist/xterm.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js/dist/xterm.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js-css/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js-css/index.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js-fit/
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js-fit/index.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/components/xterm.js/index.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/custom/
lib/python${MODPY_VERSION}/site-packages/notebook/static/custom/custom.css
lib/python${MODPY_VERSION}/site-packages/notebook/static/custom/custom.js
@ -1597,6 +1844,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/edit/js/main.min.js.map
lib/python${MODPY_VERSION}/site-packages/notebook/static/edit/js/menubar.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/edit/js/notificationarea.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/edit/js/savewidget.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/favicon.ico
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/css/
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/css/override.css
@ -1631,6 +1879,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/notebook.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/notificationarea.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/outputarea.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/pager.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/promises.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/quickhelp.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/savewidget.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/scrollmanager.js
@ -1640,6 +1889,7 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/textcell.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/toolbar.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/tooltip.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/notebook/js/tour.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/robots.txt
lib/python${MODPY_VERSION}/site-packages/notebook/static/services/
lib/python${MODPY_VERSION}/site-packages/notebook/static/services/config.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/services/contents.js
@ -1673,9 +1923,11 @@ lib/python${MODPY_VERSION}/site-packages/notebook/static/tree/js/main.min.js.map
lib/python${MODPY_VERSION}/site-packages/notebook/static/tree/js/newnotebook.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/tree/js/notebooklist.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/tree/js/sessionlist.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/tree/js/shutdownbutton.js
lib/python${MODPY_VERSION}/site-packages/notebook/static/tree/js/terminallist.js
lib/python${MODPY_VERSION}/site-packages/notebook/templates/
lib/python${MODPY_VERSION}/site-packages/notebook/templates/404.html
lib/python${MODPY_VERSION}/site-packages/notebook/templates/browser-open.html
lib/python${MODPY_VERSION}/site-packages/notebook/templates/edit.html
lib/python${MODPY_VERSION}/site-packages/notebook/templates/error.html
lib/python${MODPY_VERSION}/site-packages/notebook/templates/login.html
@ -1698,7 +1950,9 @@ lib/python${MODPY_VERSION}/site-packages/notebook/tests/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}launchnotebook.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}test_config_manager.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}test_files.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}test_i18n.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}test_nbextensions.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}test_notebookapp.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/${MODPY_PYCACHE}test_paths.${MODPY_PYC_MAGIC_TAG}pyc
@ -1718,18 +1972,15 @@ lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/attachments.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/buffering.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/clipboard_multiselect.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/deletecell.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/display_id.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/display_image.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_arrows.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_cellinsert.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_cellmode.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_clipboard.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_execute.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_markdown.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/dualmode_merge.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/empty_arrow_keys.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/execute_code.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/execute_selected_cells.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/inject_js.js
@ -1743,27 +1994,52 @@ lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/multiselect.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/multiselect_toggle.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/notifications.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/output.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/prompt_numbers.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/roundtrip.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/safe_append_output.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/save.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/shutdown.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/tags.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/notebook/undelete.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}/
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}conftest.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}quick_selenium.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_dashboard_nav.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_deletecell.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_dualmode_insertcell.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_find_and_replace.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_markdown.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_prompt_numbers.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}test_save_as_notebook.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}undelete.${MODPY_PYC_MAGIC_TAG}pyc
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/conftest.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/quick_selenium.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_dashboard_nav.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_deletecell.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_dualmode_insertcell.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_find_and_replace.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_markdown.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_prompt_numbers.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/test_save_as_notebook.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/undelete.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/selenium/utils.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/services/
lib/python${MODPY_VERSION}/site-packages/notebook/tests/services/kernel.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/services/serialize.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/services/session.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_config_manager.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_files.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_i18n.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_nbextensions.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_notebookapp.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_paths.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_serialize.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_serverextensions.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/test_utils.py
lib/python${MODPY_VERSION}/site-packages/notebook/tests/tree/
lib/python${MODPY_VERSION}/site-packages/notebook/tests/tree/dashboard_nav.js
lib/python${MODPY_VERSION}/site-packages/notebook/tests/util.js
lib/python${MODPY_VERSION}/site-packages/notebook/transutils.py
lib/python${MODPY_VERSION}/site-packages/notebook/tree/
lib/python${MODPY_VERSION}/site-packages/notebook/tree/__init__.py
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/notebook/tree/${MODPY_PYCACHE}/