[Python-modules-commits] [jupyter-notebook] branch master updated (80cf853 -> 04e4872)
Gordon Ball
chronitis-guest at moszumanska.debian.org
Sun Nov 12 20:26:12 UTC 2017
This is an automated email from the git hooks/post-receive script.
chronitis-guest pushed a change to branch master
in repository jupyter-notebook.
from 80cf853 Set XDG_RUNTIME_DIR and HOME in d/rules
new 442b0ff record new upstream branch created by importing jupyter-notebook_5.2.1.orig.tar.gz
new 2d11329 Import jupyter-notebook_5.2.1.orig.tar.gz
new 204e0f8 Nodejs binary and import names
new a02fd57 Use local MathJax in documentation
new 6d06a37 Unmask setuptools in setup.py so dependencies are detected
new 98acd2d jquery-ui 1.12 compatibility changes
new eb551c0 Call lessc with --source-map-basepath option for reproducibility
new 0b9536b Work around https://github.com/less/less.js/pull/3002
new 63a5840 Debian-specific hack to fix upstream's (non-)incremental build
new 6c3e5d0 Ignore errors in documentation notebooks during build
new dd1ee83 merge patched into master
new 4aa4b95 New upstream: 5.2.1
new 9a5067e Update lintian-overrides
new 04e4872 Install upstream changelog
The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.travis.yml | 15 +-
CONTRIBUTING.rst | 4 +-
bower.json | 2 +-
debian/.git-dpm | 14 +-
debian/changelog | 9 +
.../0001-Nodejs-binary-and-import-names.patch | 2 +-
.../0002-Use-local-MathJax-in-documentation.patch | 6 +-
...ptools-in-setup.py-so-dependencies-are-de.patch | 4 +-
...0004-jquery-ui-1.12-compatibility-changes.patch | 6 +-
...with-source-map-basepath-option-for-repro.patch | 2 +-
...d-https-github.com-less-less.js-pull-3002.patch | 2 +-
...ific-hack-to-fix-upstream-s-non-increment.patch | 4 +-
...rs-in-documentation-notebooks-during-buil.patch | 6 +-
debian/rules | 3 +
debian/source.lintian-overrides | 9 +-
docs/source/changelog.rst | 23 +
docs/source/conf.py | 7 +
docs/source/config_overview.rst | 2 +-
...ing Jupyter Extensions as Python Packages.ipynb | 8 +-
.../examples/Notebook/Importing Notebooks.ipynb | 2 +-
.../Notebook/JavaScript Notebook Extensions.ipynb | 4 +-
.../examples/Notebook/Typesetting Equations.ipynb | 6 +-
.../Notebook/What is the Jupyter Notebook.ipynb | 12 +-
.../Notebook/Working With Markdown Cells.ipynb | 2 +-
docs/source/extending/contents.rst | 2 +-
docs/source/links.txt | 2 +-
docs/source/notebook.rst | 4 +-
docs/source/public_server.rst | 8 +-
notebook/_version.py | 2 +-
notebook/base/handlers.py | 92 +-
notebook/bundler/tarball_bundler.py | 7 +-
notebook/bundler/zip_bundler.py | 3 +-
notebook/files/handlers.py | 26 +-
notebook/i18n/nbjs.json | 1 +
.../i18n/{nbjs.pot => zh-CN/LC_MESSAGES/nbjs.po} | 1829 ++++++++++++--------
.../i18n/{nbui.pot => zh-CN/LC_MESSAGES/nbui.po} | 356 ++--
.../LC_MESSAGES/notebook.po} | 327 ++--
notebook/nbconvert/handlers.py | 56 +-
notebook/notebookapp.py | 8 +-
notebook/services/api/handlers.py | 3 +-
notebook/services/config/handlers.py | 5 +-
notebook/services/contents/filemanager.py | 4 +
notebook/services/contents/handlers.py | 12 +-
notebook/services/contents/manager.py | 51 +-
notebook/services/contents/tests/test_manager.py | 6 +
notebook/services/kernels/handlers.py | 69 +-
notebook/services/kernels/kernelmanager.py | 121 +-
notebook/services/kernelspecs/handlers.py | 4 +-
notebook/services/nbconvert/handlers.py | 3 +-
notebook/services/security/handlers.py | 3 +-
notebook/services/sessions/handlers.py | 7 +-
notebook/static/auth/js/main.js | 5 +-
notebook/static/auth/less/login.less | 19 +-
notebook/static/base/js/namespace.js | 2 +-
notebook/static/base/js/page.js | 4 +-
notebook/static/base/less/page.less | 15 +-
notebook/static/bidi/bidi.js | 57 +
notebook/static/bidi/numericshaping.js | 42 +
notebook/static/custom/custom.css | 16 +-
notebook/static/edit/js/editor.js | 12 +-
notebook/static/edit/js/main.js | 5 +-
notebook/static/edit/js/menubar.js | 2 +-
notebook/static/edit/js/savewidget.js | 8 +-
notebook/static/notebook/js/cell.js | 2 -
notebook/static/notebook/js/main.js | 7 +-
notebook/static/notebook/js/notebook.js | 2 +-
notebook/static/notebook/js/notificationarea.js | 17 +-
notebook/static/notebook/js/outputarea.js | 12 +-
notebook/static/notebook/js/quickhelp.js | 7 +-
notebook/static/notebook/js/savewidget.js | 7 +-
notebook/static/notebook/less/codemirror.less | 27 +-
notebook/static/notebook/less/commandpalette.less | 25 +
notebook/static/notebook/less/kernelselector.less | 4 +
notebook/static/notebook/less/menubar.less | 61 +
.../static/notebook/less/notificationarea.less | 18 +
notebook/static/notebook/less/renderedhtml.less | 7 +
notebook/static/notebook/less/savewidget.less | 11 +
notebook/static/notebook/less/toolbar.less | 3 +
notebook/static/tree/js/main.js | 6 +-
notebook/static/tree/js/notebooklist.js | 55 +-
notebook/static/tree/js/sessionlist.js | 8 +-
notebook/static/tree/less/tree.less | 51 +
notebook/templates/notebook.html | 2 +-
notebook/templates/page.html | 5 +-
notebook/terminal/api_handlers.py | 6 +-
notebook/tests/notebook/roundtrip.js | 15 +-
notebook/tests/test_files.py | 2 +-
notebook/tests/test_utils.py | 6 +-
notebook/utils.py | 7 +
package.json | 3 +-
setup.py | 2 +-
91 files changed, 2401 insertions(+), 1329 deletions(-)
copy notebook/i18n/{nbjs.pot => zh-CN/LC_MESSAGES/nbjs.po} (56%)
copy notebook/i18n/{nbui.pot => zh-CN/LC_MESSAGES/nbui.po} (71%)
copy notebook/i18n/{notebook.pot => zh-CN/LC_MESSAGES/notebook.po} (56%)
create mode 100644 notebook/static/bidi/bidi.js
create mode 100644 notebook/static/bidi/numericshaping.js
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/jupyter-notebook.git
More information about the Python-modules-commits
mailing list