├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .eslintignore ├── .eslintrc.js ├── .eslintrc.json ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── actions │ └── build-dist │ │ └── action.yml ├── answered.yml ├── dependabot.yml ├── jupyterlab-probot.yml └── workflows │ ├── auto_author_assign.yml │ ├── binder.yml │ ├── build.yml │ ├── buildutils.yml │ ├── check-release.yml │ ├── enforce-label.yml │ ├── lock.yml │ ├── playwright-update.yml │ ├── prep-release.yml │ ├── publish-changelog.yml │ ├── publish-release.yml │ ├── ui-tests.yml │ └── upgrade-jupyterlab-dependencies.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .readthedocs.yaml ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── app ├── index.template.js ├── package.json ├── publicpath.js ├── style.js ├── templates │ ├── consoles_template.html │ ├── edit_template.html │ ├── error_template.html │ ├── notebooks_template.html │ ├── terminals_template.html │ └── tree_template.html ├── webpack.config.js ├── webpack.config.watch.js └── webpack.prod.config.js ├── binder ├── environment.yml ├── example.ipynb └── postBuild ├── docs ├── Makefile ├── jsdoc_config.json ├── jsdoc_plugin.js ├── make.bat ├── resources │ ├── Info.plist.example │ ├── generate_icons.sh │ ├── icon_16x16.svg │ ├── icon_24x24.svg │ ├── icon_32x32.svg │ ├── icon_512x512.svg │ ├── ipynb.icns │ ├── ipynb.iconset │ │ ├── icon_1024x1024.png │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_24x24.png │ │ ├── icon_24x24@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_48x48.png │ │ ├── icon_512x512.png │ │ ├── icon_512x512@2x.png │ │ ├── icon_64x64.png │ │ └── icon_64x64@2x.png │ └── running_code_med.png └── source │ ├── _static │ ├── .gitkeep │ ├── changelog_assets │ │ ├── 7.5-debugger.webp │ │ └── 7.5-media-player.webp │ ├── images │ │ ├── cell-tags-toolbar.png │ │ ├── cell-toolbar-41.png │ │ ├── command-palette-41.png │ │ ├── dashboard-sort.png │ │ ├── find-replace-41.png │ │ ├── multi-select-41.png │ │ ├── notebook-running-code.png │ │ ├── shortcut-editor.png │ │ ├── table-style-after.png │ │ └── table-style-before.png │ ├── jupyter_logo.svg │ ├── logo-rectangle-dark.svg │ ├── logo-rectangle.svg │ └── zulip-icon-square.svg │ ├── conf.py │ ├── configuration.md │ ├── configuring │ ├── config_overview.md │ ├── interface_customization.md │ └── plugins.md │ ├── contributor.md │ ├── custom_css.md │ ├── development_faq.md │ ├── examples │ ├── Notebook │ │ ├── Connecting with the Qt Console.ipynb │ │ ├── Custom Keyboard Shortcuts.ipynb │ │ ├── Importing Notebooks.ipynb │ │ ├── Notebook Basics.ipynb │ │ ├── Running Code.ipynb │ │ ├── Typesetting Equations.ipynb │ │ ├── What is the Jupyter Notebook.ipynb │ │ ├── Working With Markdown Cells.ipynb │ │ ├── examples_index.rst │ │ ├── images │ │ │ ├── command_mode.png │ │ │ ├── dashboard_files_tab.png │ │ │ ├── dashboard_files_tab_btns.png │ │ │ ├── dashboard_files_tab_new.png │ │ │ ├── dashboard_files_tab_run.png │ │ │ ├── dashboard_running_tab.png │ │ │ ├── edit_mode.png │ │ │ ├── menubar_toolbar.png │ │ │ └── nbconvert_arch.png │ │ └── nbpackage │ │ │ ├── __init__.py │ │ │ ├── mynotebook.ipynb │ │ │ └── nbs │ │ │ ├── __init__.py │ │ │ └── other.ipynb │ ├── images │ │ ├── FrontendKernel.graffle │ │ │ ├── data.plist │ │ │ └── image1.png │ │ ├── FrontendKernel.png │ │ ├── animation.m4v │ │ ├── ipython_logo.png │ │ ├── jupyter_logo.png │ │ └── python_logo.svg │ └── utils │ │ ├── list_pyfiles.ipy │ │ └── list_subdirs.ipy │ ├── extending │ ├── frontend_extensions.md │ └── index.md │ ├── index.md │ ├── ipython_security.asc │ ├── links.txt │ ├── migrate_to_notebook7.md │ ├── migrating │ ├── custom-themes.md │ ├── frontend-extensions.md │ ├── multiple-interfaces.md │ ├── server-extensions.md │ └── server-imports.md │ ├── notebook.md │ ├── notebook_7_features.md │ ├── spelling_wordlist.txt │ ├── template.tpl │ ├── troubleshooting.md │ ├── ui_components.md │ └── user-documentation.md ├── jupyter-config └── jupyter_server_config.d │ └── notebook.json ├── jupyter-notebook.desktop ├── jupyter.svg ├── jupyter_config.json ├── lerna.json ├── notebook.svg ├── notebook ├── __init__.py ├── __main__.py ├── _version.py ├── app.py └── custom │ └── custom.css ├── nx.json ├── package.json ├── packages ├── _metapackage │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── application-extension │ ├── package.json │ ├── schema │ │ ├── menus.json │ │ ├── pages.json │ │ ├── shell.json │ │ ├── shortcuts.json │ │ ├── title.json │ │ ├── top.json │ │ └── zen.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── application │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── index.ts │ │ ├── panelhandler.ts │ │ ├── pathopener.ts │ │ ├── shell.ts │ │ └── tokens.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ ├── index.js │ │ └── sidepanel.css │ ├── test │ │ └── shell.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── console-extension │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── docmanager-extension │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── documentsearch-extension │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── help-extension │ ├── package.json │ ├── schema │ │ └── open.json │ ├── src │ │ └── index.tsx │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── lab-extension │ ├── package.json │ ├── schema │ │ ├── interface-switcher.json │ │ └── launch-tree.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── notebook-extension │ ├── package.json │ ├── schema │ │ ├── checkpoints.json │ │ ├── edit-notebook-metadata.json │ │ ├── full-width-notebook.json │ │ ├── kernel-logo.json │ │ └── scroll-output.json │ ├── src │ │ ├── index.ts │ │ └── trusted.tsx │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ ├── index.js │ │ └── variables.css │ └── tsconfig.json ├── terminal-extension │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── tree-extension │ ├── package.json │ ├── schema │ │ ├── file-actions.json │ │ └── widget.json │ ├── src │ │ ├── fileactions.tsx │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── tree │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── notebook-tree.ts │ │ └── token.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json └── ui-components │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── icon │ │ ├── iconimports.ts │ │ └── index.ts │ ├── index.ts │ └── svg.d.ts │ ├── style │ ├── base.css │ ├── icons │ │ └── jupyter.svg │ ├── index.css │ └── index.js │ ├── test │ └── foo.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── pixi.lock ├── pyproject.toml ├── setup.py ├── tests ├── conftest.py └── test_app.py ├── tsconfig.eslint.json ├── tsconfigbase.json ├── tsconfigbase.test.json ├── ui-tests ├── package.json ├── playwright.config.ts ├── test │ ├── editor.spec.ts │ ├── filebrowser.spec.ts │ ├── fixtures.ts │ ├── general.spec.ts │ ├── general.spec.ts-snapshots │ │ ├── notebook-chromium-linux.png │ │ └── notebook-firefox-linux.png │ ├── jupyter_server_config.py │ ├── layout.spec.ts │ ├── layout.spec.ts-snapshots │ │ ├── debugger-chromium-linux.png │ │ └── debugger-firefox-linux.png │ ├── links.spec.ts │ ├── menus.spec.ts │ ├── menus.spec.ts-snapshots │ │ ├── opened-menu-edit-chromium-linux.png │ │ ├── opened-menu-edit-firefox-linux.png │ │ ├── opened-menu-file-chromium-linux.png │ │ ├── opened-menu-file-firefox-linux.png │ │ ├── opened-menu-file-new-chromium-linux.png │ │ ├── opened-menu-file-new-firefox-linux.png │ │ ├── opened-menu-file-save-and-export-notebook-as-chromium-linux.png │ │ ├── opened-menu-file-save-and-export-notebook-as-firefox-linux.png │ │ ├── opened-menu-help-chromium-linux.png │ │ ├── opened-menu-help-firefox-linux.png │ │ ├── opened-menu-kernel-chromium-linux.png │ │ ├── opened-menu-kernel-firefox-linux.png │ │ ├── opened-menu-run-chromium-linux.png │ │ ├── opened-menu-run-firefox-linux.png │ │ ├── opened-menu-settings-chromium-linux.png │ │ ├── opened-menu-settings-firefox-linux.png │ │ ├── opened-menu-settings-theme-chromium-linux.png │ │ ├── opened-menu-settings-theme-firefox-linux.png │ │ ├── opened-menu-view-chromium-linux.png │ │ └── opened-menu-view-firefox-linux.png │ ├── mobile.spec.ts │ ├── mobile.spec.ts-snapshots │ │ ├── notebook-chromium-linux.png │ │ ├── notebook-firefox-linux.png │ │ ├── tree-chromium-linux.png │ │ └── tree-firefox-linux.png │ ├── notebook.spec.ts │ ├── notebook.spec.ts-snapshots │ │ ├── notebook-full-width-chromium-linux.png │ │ ├── notebook-full-width-firefox-linux.png │ │ ├── notebooktools-right-panel-chromium-linux.png │ │ ├── notebooktools-right-panel-firefox-linux.png │ │ ├── toc-left-panel-chromium-linux.png │ │ └── toc-left-panel-firefox-linux.png │ ├── notebooks │ │ ├── autoscroll.ipynb │ │ ├── empty.ipynb │ │ ├── local_links.ipynb │ │ ├── simple.ipynb │ │ └── simple_toc.ipynb │ ├── settings.spec.ts │ ├── settings.spec.ts-snapshots │ │ ├── top-hidden-chromium-linux.png │ │ ├── top-hidden-firefox-linux.png │ │ ├── top-visible-chromium-linux.png │ │ └── top-visible-firefox-linux.png │ ├── smoke.spec.ts │ ├── tree.spec.ts │ └── utils.ts ├── tsconfig.test.json └── yarn.lock └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/build-dist/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/actions/build-dist/action.yml -------------------------------------------------------------------------------- /.github/answered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/answered.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/jupyterlab-probot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/jupyterlab-probot.yml -------------------------------------------------------------------------------- /.github/workflows/auto_author_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/auto_author_assign.yml -------------------------------------------------------------------------------- /.github/workflows/binder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/binder.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/buildutils.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/buildutils.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/playwright-update.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/publish-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/ui-tests.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-jupyterlab-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.github/workflows/upgrade-jupyterlab-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/RELEASE.md -------------------------------------------------------------------------------- /app/index.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/index.template.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/package.json -------------------------------------------------------------------------------- /app/publicpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/publicpath.js -------------------------------------------------------------------------------- /app/style.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/consoles_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/templates/consoles_template.html -------------------------------------------------------------------------------- /app/templates/edit_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/templates/edit_template.html -------------------------------------------------------------------------------- /app/templates/error_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/templates/error_template.html -------------------------------------------------------------------------------- /app/templates/notebooks_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/templates/notebooks_template.html -------------------------------------------------------------------------------- /app/templates/terminals_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/templates/terminals_template.html -------------------------------------------------------------------------------- /app/templates/tree_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/templates/tree_template.html -------------------------------------------------------------------------------- /app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/webpack.config.js -------------------------------------------------------------------------------- /app/webpack.config.watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/webpack.config.watch.js -------------------------------------------------------------------------------- /app/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/app/webpack.prod.config.js -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/binder/example.ipynb -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/binder/postBuild -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/jsdoc_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/jsdoc_config.json -------------------------------------------------------------------------------- /docs/jsdoc_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/jsdoc_plugin.js -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/resources/Info.plist.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/Info.plist.example -------------------------------------------------------------------------------- /docs/resources/generate_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/generate_icons.sh -------------------------------------------------------------------------------- /docs/resources/icon_16x16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/icon_16x16.svg -------------------------------------------------------------------------------- /docs/resources/icon_24x24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/icon_24x24.svg -------------------------------------------------------------------------------- /docs/resources/icon_32x32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/icon_32x32.svg -------------------------------------------------------------------------------- /docs/resources/icon_512x512.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/icon_512x512.svg -------------------------------------------------------------------------------- /docs/resources/ipynb.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.icns -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_1024x1024.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_128x128.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_16x16.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_24x24.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_24x24@2x.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_256x256.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_32x32.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_48x48.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_512x512.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_64x64.png -------------------------------------------------------------------------------- /docs/resources/ipynb.iconset/icon_64x64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/ipynb.iconset/icon_64x64@2x.png -------------------------------------------------------------------------------- /docs/resources/running_code_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/resources/running_code_med.png -------------------------------------------------------------------------------- /docs/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/changelog_assets/7.5-debugger.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/changelog_assets/7.5-debugger.webp -------------------------------------------------------------------------------- /docs/source/_static/changelog_assets/7.5-media-player.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/changelog_assets/7.5-media-player.webp -------------------------------------------------------------------------------- /docs/source/_static/images/cell-tags-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/cell-tags-toolbar.png -------------------------------------------------------------------------------- /docs/source/_static/images/cell-toolbar-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/cell-toolbar-41.png -------------------------------------------------------------------------------- /docs/source/_static/images/command-palette-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/command-palette-41.png -------------------------------------------------------------------------------- /docs/source/_static/images/dashboard-sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/dashboard-sort.png -------------------------------------------------------------------------------- /docs/source/_static/images/find-replace-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/find-replace-41.png -------------------------------------------------------------------------------- /docs/source/_static/images/multi-select-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/multi-select-41.png -------------------------------------------------------------------------------- /docs/source/_static/images/notebook-running-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/notebook-running-code.png -------------------------------------------------------------------------------- /docs/source/_static/images/shortcut-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/shortcut-editor.png -------------------------------------------------------------------------------- /docs/source/_static/images/table-style-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/table-style-after.png -------------------------------------------------------------------------------- /docs/source/_static/images/table-style-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/images/table-style-before.png -------------------------------------------------------------------------------- /docs/source/_static/jupyter_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/jupyter_logo.svg -------------------------------------------------------------------------------- /docs/source/_static/logo-rectangle-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/logo-rectangle-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/logo-rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/logo-rectangle.svg -------------------------------------------------------------------------------- /docs/source/_static/zulip-icon-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/_static/zulip-icon-square.svg -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/configuration.md -------------------------------------------------------------------------------- /docs/source/configuring/config_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/configuring/config_overview.md -------------------------------------------------------------------------------- /docs/source/configuring/interface_customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/configuring/interface_customization.md -------------------------------------------------------------------------------- /docs/source/configuring/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/configuring/plugins.md -------------------------------------------------------------------------------- /docs/source/contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/contributor.md -------------------------------------------------------------------------------- /docs/source/custom_css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/custom_css.md -------------------------------------------------------------------------------- /docs/source/development_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/development_faq.md -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Connecting with the Qt Console.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Connecting with the Qt Console.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Custom Keyboard Shortcuts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Custom Keyboard Shortcuts.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Importing Notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Importing Notebooks.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Notebook Basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Notebook Basics.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Running Code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Running Code.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Typesetting Equations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Typesetting Equations.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/Working With Markdown Cells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/Working With Markdown Cells.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/examples_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/examples_index.rst -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/command_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/command_mode.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/dashboard_files_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/dashboard_files_tab.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/dashboard_files_tab_btns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/dashboard_files_tab_btns.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/dashboard_files_tab_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/dashboard_files_tab_new.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/dashboard_files_tab_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/dashboard_files_tab_run.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/dashboard_running_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/dashboard_running_tab.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/edit_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/edit_mode.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/menubar_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/menubar_toolbar.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/images/nbconvert_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/images/nbconvert_arch.png -------------------------------------------------------------------------------- /docs/source/examples/Notebook/nbpackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/examples/Notebook/nbpackage/mynotebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/nbpackage/mynotebook.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Notebook/nbpackage/nbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/examples/Notebook/nbpackage/nbs/other.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/Notebook/nbpackage/nbs/other.ipynb -------------------------------------------------------------------------------- /docs/source/examples/images/FrontendKernel.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/FrontendKernel.graffle/data.plist -------------------------------------------------------------------------------- /docs/source/examples/images/FrontendKernel.graffle/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/FrontendKernel.graffle/image1.png -------------------------------------------------------------------------------- /docs/source/examples/images/FrontendKernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/FrontendKernel.png -------------------------------------------------------------------------------- /docs/source/examples/images/animation.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/animation.m4v -------------------------------------------------------------------------------- /docs/source/examples/images/ipython_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/ipython_logo.png -------------------------------------------------------------------------------- /docs/source/examples/images/jupyter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/jupyter_logo.png -------------------------------------------------------------------------------- /docs/source/examples/images/python_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/images/python_logo.svg -------------------------------------------------------------------------------- /docs/source/examples/utils/list_pyfiles.ipy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/utils/list_pyfiles.ipy -------------------------------------------------------------------------------- /docs/source/examples/utils/list_subdirs.ipy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/examples/utils/list_subdirs.ipy -------------------------------------------------------------------------------- /docs/source/extending/frontend_extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/extending/frontend_extensions.md -------------------------------------------------------------------------------- /docs/source/extending/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/extending/index.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/ipython_security.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/ipython_security.asc -------------------------------------------------------------------------------- /docs/source/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/links.txt -------------------------------------------------------------------------------- /docs/source/migrate_to_notebook7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/migrate_to_notebook7.md -------------------------------------------------------------------------------- /docs/source/migrating/custom-themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/migrating/custom-themes.md -------------------------------------------------------------------------------- /docs/source/migrating/frontend-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/migrating/frontend-extensions.md -------------------------------------------------------------------------------- /docs/source/migrating/multiple-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/migrating/multiple-interfaces.md -------------------------------------------------------------------------------- /docs/source/migrating/server-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/migrating/server-extensions.md -------------------------------------------------------------------------------- /docs/source/migrating/server-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/migrating/server-imports.md -------------------------------------------------------------------------------- /docs/source/notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/notebook.md -------------------------------------------------------------------------------- /docs/source/notebook_7_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/notebook_7_features.md -------------------------------------------------------------------------------- /docs/source/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/source/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/template.tpl -------------------------------------------------------------------------------- /docs/source/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/troubleshooting.md -------------------------------------------------------------------------------- /docs/source/ui_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/ui_components.md -------------------------------------------------------------------------------- /docs/source/user-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/docs/source/user-documentation.md -------------------------------------------------------------------------------- /jupyter-config/jupyter_server_config.d/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/jupyter-config/jupyter_server_config.d/notebook.json -------------------------------------------------------------------------------- /jupyter-notebook.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/jupyter-notebook.desktop -------------------------------------------------------------------------------- /jupyter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/jupyter.svg -------------------------------------------------------------------------------- /jupyter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/jupyter_config.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/lerna.json -------------------------------------------------------------------------------- /notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/notebook.svg -------------------------------------------------------------------------------- /notebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/notebook/__init__.py -------------------------------------------------------------------------------- /notebook/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/notebook/__main__.py -------------------------------------------------------------------------------- /notebook/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/notebook/_version.py -------------------------------------------------------------------------------- /notebook/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/notebook/app.py -------------------------------------------------------------------------------- /notebook/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/notebook/custom/custom.css -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/package.json -------------------------------------------------------------------------------- /packages/_metapackage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/_metapackage/package.json -------------------------------------------------------------------------------- /packages/_metapackage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/_metapackage/src/index.ts -------------------------------------------------------------------------------- /packages/_metapackage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/_metapackage/tsconfig.json -------------------------------------------------------------------------------- /packages/application-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/package.json -------------------------------------------------------------------------------- /packages/application-extension/schema/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/menus.json -------------------------------------------------------------------------------- /packages/application-extension/schema/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/pages.json -------------------------------------------------------------------------------- /packages/application-extension/schema/shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/shell.json -------------------------------------------------------------------------------- /packages/application-extension/schema/shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/shortcuts.json -------------------------------------------------------------------------------- /packages/application-extension/schema/title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/title.json -------------------------------------------------------------------------------- /packages/application-extension/schema/top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/top.json -------------------------------------------------------------------------------- /packages/application-extension/schema/zen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/schema/zen.json -------------------------------------------------------------------------------- /packages/application-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/src/index.ts -------------------------------------------------------------------------------- /packages/application-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/style/base.css -------------------------------------------------------------------------------- /packages/application-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/style/index.css -------------------------------------------------------------------------------- /packages/application-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/style/index.js -------------------------------------------------------------------------------- /packages/application-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/application/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/jest.config.js -------------------------------------------------------------------------------- /packages/application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/package.json -------------------------------------------------------------------------------- /packages/application/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/src/app.ts -------------------------------------------------------------------------------- /packages/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/src/index.ts -------------------------------------------------------------------------------- /packages/application/src/panelhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/src/panelhandler.ts -------------------------------------------------------------------------------- /packages/application/src/pathopener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/src/pathopener.ts -------------------------------------------------------------------------------- /packages/application/src/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/src/shell.ts -------------------------------------------------------------------------------- /packages/application/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/src/tokens.ts -------------------------------------------------------------------------------- /packages/application/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/style/base.css -------------------------------------------------------------------------------- /packages/application/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/style/index.css -------------------------------------------------------------------------------- /packages/application/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/style/index.js -------------------------------------------------------------------------------- /packages/application/style/sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/style/sidepanel.css -------------------------------------------------------------------------------- /packages/application/test/shell.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/test/shell.spec.ts -------------------------------------------------------------------------------- /packages/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/tsconfig.json -------------------------------------------------------------------------------- /packages/application/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/application/tsconfig.test.json -------------------------------------------------------------------------------- /packages/console-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/console-extension/package.json -------------------------------------------------------------------------------- /packages/console-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/console-extension/src/index.ts -------------------------------------------------------------------------------- /packages/console-extension/style/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/console-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/console-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/console-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/console-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/docmanager-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/docmanager-extension/package.json -------------------------------------------------------------------------------- /packages/docmanager-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/docmanager-extension/src/index.ts -------------------------------------------------------------------------------- /packages/docmanager-extension/style/base.css: -------------------------------------------------------------------------------- 1 | .jp-Document { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /packages/docmanager-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/docmanager-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/docmanager-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/docmanager-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/documentsearch-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/documentsearch-extension/package.json -------------------------------------------------------------------------------- /packages/documentsearch-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/documentsearch-extension/src/index.ts -------------------------------------------------------------------------------- /packages/documentsearch-extension/style/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/documentsearch-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/documentsearch-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/documentsearch-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/documentsearch-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/help-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/help-extension/package.json -------------------------------------------------------------------------------- /packages/help-extension/schema/open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/help-extension/schema/open.json -------------------------------------------------------------------------------- /packages/help-extension/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/help-extension/src/index.tsx -------------------------------------------------------------------------------- /packages/help-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/help-extension/style/base.css -------------------------------------------------------------------------------- /packages/help-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/help-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/help-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/help-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/lab-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/lab-extension/package.json -------------------------------------------------------------------------------- /packages/lab-extension/schema/interface-switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/lab-extension/schema/interface-switcher.json -------------------------------------------------------------------------------- /packages/lab-extension/schema/launch-tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/lab-extension/schema/launch-tree.json -------------------------------------------------------------------------------- /packages/lab-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/lab-extension/src/index.ts -------------------------------------------------------------------------------- /packages/lab-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/lab-extension/style/base.css -------------------------------------------------------------------------------- /packages/lab-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/lab-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/lab-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/lab-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/notebook-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/package.json -------------------------------------------------------------------------------- /packages/notebook-extension/schema/checkpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/schema/checkpoints.json -------------------------------------------------------------------------------- /packages/notebook-extension/schema/edit-notebook-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/schema/edit-notebook-metadata.json -------------------------------------------------------------------------------- /packages/notebook-extension/schema/full-width-notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/schema/full-width-notebook.json -------------------------------------------------------------------------------- /packages/notebook-extension/schema/kernel-logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/schema/kernel-logo.json -------------------------------------------------------------------------------- /packages/notebook-extension/schema/scroll-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/schema/scroll-output.json -------------------------------------------------------------------------------- /packages/notebook-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/src/index.ts -------------------------------------------------------------------------------- /packages/notebook-extension/src/trusted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/src/trusted.tsx -------------------------------------------------------------------------------- /packages/notebook-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/style/base.css -------------------------------------------------------------------------------- /packages/notebook-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/notebook-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/notebook-extension/style/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/style/variables.css -------------------------------------------------------------------------------- /packages/notebook-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/notebook-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/terminal-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/terminal-extension/package.json -------------------------------------------------------------------------------- /packages/terminal-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/terminal-extension/src/index.ts -------------------------------------------------------------------------------- /packages/terminal-extension/style/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/terminal-extension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('./base.css'); 2 | -------------------------------------------------------------------------------- /packages/terminal-extension/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/terminal-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/terminal-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/tree-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/package.json -------------------------------------------------------------------------------- /packages/tree-extension/schema/file-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/schema/file-actions.json -------------------------------------------------------------------------------- /packages/tree-extension/schema/widget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/schema/widget.json -------------------------------------------------------------------------------- /packages/tree-extension/src/fileactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/src/fileactions.tsx -------------------------------------------------------------------------------- /packages/tree-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/src/index.ts -------------------------------------------------------------------------------- /packages/tree-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/style/base.css -------------------------------------------------------------------------------- /packages/tree-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/style/index.css -------------------------------------------------------------------------------- /packages/tree-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/style/index.js -------------------------------------------------------------------------------- /packages/tree-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/tree/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/package.json -------------------------------------------------------------------------------- /packages/tree/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/src/index.ts -------------------------------------------------------------------------------- /packages/tree/src/notebook-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/src/notebook-tree.ts -------------------------------------------------------------------------------- /packages/tree/src/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/src/token.ts -------------------------------------------------------------------------------- /packages/tree/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/style/base.css -------------------------------------------------------------------------------- /packages/tree/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/style/index.css -------------------------------------------------------------------------------- /packages/tree/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/style/index.js -------------------------------------------------------------------------------- /packages/tree/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/tree/tsconfig.json -------------------------------------------------------------------------------- /packages/ui-components/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/ui-components/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/jest.config.js -------------------------------------------------------------------------------- /packages/ui-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/package.json -------------------------------------------------------------------------------- /packages/ui-components/src/icon/iconimports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/src/icon/iconimports.ts -------------------------------------------------------------------------------- /packages/ui-components/src/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/src/icon/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/src/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/src/svg.d.ts -------------------------------------------------------------------------------- /packages/ui-components/style/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ui-components/style/icons/jupyter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/style/icons/jupyter.svg -------------------------------------------------------------------------------- /packages/ui-components/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/style/index.css -------------------------------------------------------------------------------- /packages/ui-components/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/style/index.js -------------------------------------------------------------------------------- /packages/ui-components/test/foo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/test/foo.spec.ts -------------------------------------------------------------------------------- /packages/ui-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/tsconfig.json -------------------------------------------------------------------------------- /packages/ui-components/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/packages/ui-components/tsconfig.test.json -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/pixi.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfigbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/tsconfigbase.json -------------------------------------------------------------------------------- /tsconfigbase.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/tsconfigbase.test.json -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/playwright.config.ts -------------------------------------------------------------------------------- /ui-tests/test/editor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/editor.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/filebrowser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/filebrowser.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/fixtures.ts -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/general.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/general.spec.ts-snapshots/notebook-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/notebook-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/general.spec.ts-snapshots/notebook-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/jupyter_server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/jupyter_server_config.py -------------------------------------------------------------------------------- /ui-tests/test/layout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/layout.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/layout.spec.ts-snapshots/debugger-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/layout.spec.ts-snapshots/debugger-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/layout.spec.ts-snapshots/debugger-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/layout.spec.ts-snapshots/debugger-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/links.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/links.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-edit-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-edit-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-edit-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-edit-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-new-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-new-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-new-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-new-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-save-and-export-notebook-as-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-save-and-export-notebook-as-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-save-and-export-notebook-as-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-file-save-and-export-notebook-as-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-help-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-help-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-help-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-help-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-kernel-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-kernel-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-kernel-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-kernel-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-run-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-theme-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-theme-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-theme-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-settings-theme-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-view-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-view-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/menus.spec.ts-snapshots/opened-menu-view-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/menus.spec.ts-snapshots/opened-menu-view-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/mobile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/mobile.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/mobile.spec.ts-snapshots/notebook-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/mobile.spec.ts-snapshots/notebook-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/mobile.spec.ts-snapshots/notebook-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/mobile.spec.ts-snapshots/notebook-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/mobile.spec.ts-snapshots/tree-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/mobile.spec.ts-snapshots/tree-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/mobile.spec.ts-snapshots/tree-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/mobile.spec.ts-snapshots/tree-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/notebook-full-width-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts-snapshots/notebook-full-width-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/notebook-full-width-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts-snapshots/notebook-full-width-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/notebooktools-right-panel-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts-snapshots/notebooktools-right-panel-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/notebooktools-right-panel-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts-snapshots/notebooktools-right-panel-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/toc-left-panel-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts-snapshots/toc-left-panel-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/toc-left-panel-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebook.spec.ts-snapshots/toc-left-panel-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebooks/autoscroll.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebooks/autoscroll.ipynb -------------------------------------------------------------------------------- /ui-tests/test/notebooks/empty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebooks/empty.ipynb -------------------------------------------------------------------------------- /ui-tests/test/notebooks/local_links.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebooks/local_links.ipynb -------------------------------------------------------------------------------- /ui-tests/test/notebooks/simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebooks/simple.ipynb -------------------------------------------------------------------------------- /ui-tests/test/notebooks/simple_toc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/notebooks/simple_toc.ipynb -------------------------------------------------------------------------------- /ui-tests/test/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/settings.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/settings.spec.ts-snapshots/top-hidden-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/settings.spec.ts-snapshots/top-hidden-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/settings.spec.ts-snapshots/top-hidden-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/settings.spec.ts-snapshots/top-hidden-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/settings.spec.ts-snapshots/top-visible-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/settings.spec.ts-snapshots/top-visible-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/settings.spec.ts-snapshots/top-visible-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/settings.spec.ts-snapshots/top-visible-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/smoke.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/smoke.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/tree.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/test/utils.ts -------------------------------------------------------------------------------- /ui-tests/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/tsconfig.test.json -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/notebook/HEAD/yarn.lock --------------------------------------------------------------------------------