├── .binder ├── environment.yml └── postBuild ├── .eslintignore ├── .eslintrc.js ├── .github ├── pull_request_template.md └── workflows │ ├── benchmark-report.yml │ ├── binder-on-pr.yml │ ├── build.yml │ ├── check-release.yml │ ├── enforce-labels.yml │ ├── main.yml │ ├── packaging.yml │ ├── prep-release.yml │ ├── publish-release.yml │ ├── ui-tests.yml │ └── update_galata_references.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── docs ├── changelog.md ├── conf.py ├── contribute.md ├── customize.md ├── deploy.md ├── environment.yml ├── index.md ├── install.md ├── metadata-template-classic.png ├── metadata-theme-classic.png ├── using.md └── voila-logo.svg ├── etc └── jupyter │ ├── jupyter_notebook_config.d │ └── voila.json │ ├── jupyter_server_config.d │ └── voila.json │ └── nbconfig │ └── notebook.d │ └── voila.json ├── hatch_build.py ├── install.json ├── lerna.json ├── notebooks ├── basics.ipynb ├── bokeh.ipynb ├── bqplot.ipynb ├── dashboard.ipynb ├── gridspecLayout.ipynb ├── interactive.ipynb ├── ipympl.ipynb ├── ipyvolume.ipynb ├── jupyter_config.json ├── mimerenderers.ipynb ├── multiple_widgets.ipynb ├── query-strings.ipynb ├── reveal.ipynb ├── xleaflet.ipynb └── yaml.ipynb ├── package.json ├── packages ├── jupyterlab-preview │ ├── README.md │ ├── package.json │ ├── schema │ │ └── plugin.json │ ├── src │ │ ├── icons.ts │ │ ├── index.ts │ │ ├── preview.tsx │ │ └── svg.d.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ ├── index.js │ │ └── voila.svg │ └── tsconfig.json ├── voila │ ├── package.json │ ├── publicpath.js │ ├── src │ │ ├── app.ts │ │ ├── bootstrap.ts │ │ ├── global.d.ts │ │ ├── index.ts │ │ ├── main.ts │ │ ├── plugins │ │ │ ├── outputs │ │ │ │ ├── index.ts │ │ │ │ ├── plugins.ts │ │ │ │ ├── renderedcells.ts │ │ │ │ └── tools.ts │ │ │ ├── path.ts │ │ │ ├── themes │ │ │ │ ├── index.ts │ │ │ │ └── thememanager.ts │ │ │ ├── translator.ts │ │ │ └── tree │ │ │ │ ├── browser.ts │ │ │ │ ├── index.ts │ │ │ │ └── listing.ts │ │ ├── services │ │ │ ├── event.ts │ │ │ ├── kernelspec.ts │ │ │ ├── servicemanager.ts │ │ │ └── user.ts │ │ ├── sharedscope.ts │ │ ├── shell.ts │ │ ├── tools.ts │ │ ├── tree.ts │ │ ├── treebootstrap.ts │ │ └── voilaplugins.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── tsconfig.json │ └── webpack.config.js ├── widgets_manager7 │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── manager.ts │ └── tsconfig.json └── widgets_manager8 │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ └── manager.ts │ └── tsconfig.json ├── pyproject.toml ├── readthedocs.yml ├── requirements-visual-test.txt ├── scripts ├── bump-version.py └── reset-stable.sh ├── setup.py ├── share └── jupyter │ └── voila │ └── templates │ ├── base │ ├── 404.html │ ├── browser-open.html │ ├── error.html │ ├── jupyter_widgets.html.j2 │ ├── log.macro.html.j2 │ ├── page.html │ ├── spinner.macro.html.j2 │ ├── static │ │ └── require.min.js │ ├── tree.html │ └── voila_setup.macro.html.j2 │ ├── classic │ └── index.html.j2 │ ├── lab │ ├── browser-open.html │ ├── error.html │ ├── index.html.j2 │ ├── page.html │ ├── tree-lab.html │ └── tree.html │ └── reveal │ └── index.html.j2 ├── tests ├── app │ ├── __init__.py │ ├── cgi-test.py │ ├── config_paths_test.py │ ├── conftest.py │ ├── contents_handler_test.py │ ├── cwd_subdir_test.py │ ├── cwd_test.py │ ├── execute_cpp_test.py │ ├── execute_test.py │ ├── image_inlining_test.py │ ├── kernel_death_test.py │ ├── many_iopub_messages_test.py │ ├── nbextensions_test.py │ ├── no_kernelspec_test.py │ ├── no_metadata.py │ ├── no_strip_sources_test.py │ ├── non_existing_kernel_test.py │ ├── notebooks_test.py │ ├── page_config_hook_test.py │ ├── preheat_activation_test.py │ ├── preheat_configuration_test.py │ ├── preheat_default_kernel_env_test.py │ ├── preheat_multiple_notebooks_test.py │ ├── preheat_with_query_string_test.py │ ├── prelaunch_hook_papermill_test.py │ ├── prelaunch_hook_test.py │ ├── preprocessor_test.py │ ├── progressive_rendering_activation_test.py │ ├── progressive_rendering_test.py │ ├── serve_directory_test.py │ ├── show_traceback_test.py │ ├── shutdown_kernel_test.py │ ├── static_files_test.py │ ├── syntax_error_test.py │ ├── template_arg_test.py │ ├── template_cli_test.py │ ├── template_config_file_test.py │ ├── template_custom_test.py │ ├── template_sanity_test.py │ ├── timeout_test.py │ └── tree_test.py ├── configs │ ├── general │ │ ├── nbconfig │ │ │ └── notebook.d │ │ │ │ └── ipytest.json │ │ └── voila.json │ └── preheat │ │ └── voila.json ├── conftest.py ├── execute_output_test.py ├── notebooks │ ├── autokill.ipynb │ ├── cgi.ipynb │ ├── cwd.ipynb │ ├── file.txt │ ├── images.ipynb │ ├── jupyter.svg │ ├── many_iopub_messages.ipynb │ ├── no_kernelspec.ipynb │ ├── no_metadata.ipynb │ ├── non_existing_kernel.ipynb │ ├── other_comms.ipynb │ ├── output.ipynb │ ├── preheat │ │ ├── default_env_variables.ipynb │ │ ├── denylisted.ipynb │ │ ├── get_query_string.ipynb │ │ └── pre_heat.ipynb │ ├── print.ipynb │ ├── print.py │ ├── print.xcpp │ ├── print_cpp.ipynb │ ├── print_parameterized.ipynb │ ├── skip-voila-cell.ipynb │ ├── sleep.ipynb │ ├── sleep10seconds.ipynb │ ├── subdir │ │ └── cwd_subdir.ipynb │ └── syntax_error.ipynb ├── server │ ├── __init__.py │ ├── conftest.py │ ├── cwd_subdir_test.py │ ├── execute_cpp_test.py │ ├── execute_test.py │ ├── nbextensions_test.py │ ├── no_strip_sources_test.py │ ├── show_traceback_test.py │ ├── static_files_test.py │ └── tree_test.py ├── skip_template │ ├── setup.py │ └── share │ │ └── jupyter │ │ └── voila │ │ └── templates │ │ └── skip_template │ │ └── conf.json ├── template_prefixes │ ├── loader_test.py │ └── system │ │ ├── nbconvert │ │ └── templates │ │ │ ├── bar │ │ │ ├── index.tpl │ │ │ └── parent.tpl │ │ │ ├── default │ │ │ ├── index.tpl │ │ │ └── parent.tpl │ │ │ └── foo │ │ │ ├── conf.json │ │ │ └── index.tpl │ │ └── voila │ │ └── templates │ │ ├── default │ │ └── index.tpl │ │ └── foo │ │ └── index.tpl ├── test_template │ ├── setup.py │ └── share │ │ └── jupyter │ │ └── voila │ │ └── templates │ │ └── test_template │ │ ├── conf.json │ │ ├── index.html.j2 │ │ ├── static │ │ ├── only-in-test-template.js │ │ └── voila.js │ │ └── voila.tpl └── utils_test.py ├── tsconfig.eslint.json ├── tsconfigbase.json ├── ui-tests ├── package.json ├── playwright.config.js ├── tests │ ├── utils.ts │ ├── voila.test.ts │ └── voila.test.ts-snapshots │ │ ├── 404-classic-linux.png │ │ ├── 404-dark-linux.png │ │ ├── 404-linux.png │ │ ├── basics-classic-linux.png │ │ ├── basics-dark-linux.png │ │ ├── basics-linux.png │ │ ├── basics-miami-linux.png │ │ ├── bokeh-linux.png │ │ ├── bqplot-linux.png │ │ ├── gridspecLayout-linux.png │ │ ├── interactive-linux.png │ │ ├── ipympl-linux.png │ │ ├── mimerenderers-linux.png │ │ ├── multiple-widgets-linux.png │ │ ├── query-strings-linux.png │ │ ├── reveal-linux.png │ │ ├── voila-tree-classic-linux.png │ │ ├── voila-tree-dark-linux.png │ │ ├── voila-tree-light-linux.png │ │ ├── voila-tree-miami-linux.png │ │ └── yaml-linux.png ├── voila-benchmark-expected.json └── yarn.lock ├── voila-basics.gif ├── voila-bqplot.gif ├── voila-cling.gif ├── voila-sources.gif ├── voila ├── __init__.py ├── __main__.py ├── _version.py ├── app.py ├── configuration.py ├── execute.py ├── exporter.py ├── handler.py ├── notebook_renderer.py ├── paths.py ├── request_info_handler.py ├── server_extension.py ├── shutdown_kernel_handler.py ├── static │ └── extension.js ├── static_file_handler.py ├── tornado │ ├── contentshandler.py │ ├── execution_request_handler.py │ ├── handler.py │ ├── kernel_websocket_handler.py │ └── treehandler.py ├── treehandler.py ├── utils.py ├── voila_identity_provider.py └── voila_kernel_manager.py └── yarn.lock /.binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.binder/environment.yml -------------------------------------------------------------------------------- /.binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.binder/postBuild -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/benchmark-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/benchmark-report.yml -------------------------------------------------------------------------------- /.github/workflows/binder-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/binder-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/enforce-labels.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/packaging.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/ui-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update_galata_references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.github/workflows/update_galata_references.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/RELEASE.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/customize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/customize.md -------------------------------------------------------------------------------- /docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/deploy.md -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/metadata-template-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/metadata-template-classic.png -------------------------------------------------------------------------------- /docs/metadata-theme-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/metadata-theme-classic.png -------------------------------------------------------------------------------- /docs/using.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/using.md -------------------------------------------------------------------------------- /docs/voila-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/docs/voila-logo.svg -------------------------------------------------------------------------------- /etc/jupyter/jupyter_notebook_config.d/voila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/etc/jupyter/jupyter_notebook_config.d/voila.json -------------------------------------------------------------------------------- /etc/jupyter/jupyter_server_config.d/voila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/etc/jupyter/jupyter_server_config.d/voila.json -------------------------------------------------------------------------------- /etc/jupyter/nbconfig/notebook.d/voila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/etc/jupyter/nbconfig/notebook.d/voila.json -------------------------------------------------------------------------------- /hatch_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/hatch_build.py -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/install.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/lerna.json -------------------------------------------------------------------------------- /notebooks/basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/basics.ipynb -------------------------------------------------------------------------------- /notebooks/bokeh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/bokeh.ipynb -------------------------------------------------------------------------------- /notebooks/bqplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/bqplot.ipynb -------------------------------------------------------------------------------- /notebooks/dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/dashboard.ipynb -------------------------------------------------------------------------------- /notebooks/gridspecLayout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/gridspecLayout.ipynb -------------------------------------------------------------------------------- /notebooks/interactive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/interactive.ipynb -------------------------------------------------------------------------------- /notebooks/ipympl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/ipympl.ipynb -------------------------------------------------------------------------------- /notebooks/ipyvolume.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/ipyvolume.ipynb -------------------------------------------------------------------------------- /notebooks/jupyter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/jupyter_config.json -------------------------------------------------------------------------------- /notebooks/mimerenderers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/mimerenderers.ipynb -------------------------------------------------------------------------------- /notebooks/multiple_widgets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/multiple_widgets.ipynb -------------------------------------------------------------------------------- /notebooks/query-strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/query-strings.ipynb -------------------------------------------------------------------------------- /notebooks/reveal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/reveal.ipynb -------------------------------------------------------------------------------- /notebooks/xleaflet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/xleaflet.ipynb -------------------------------------------------------------------------------- /notebooks/yaml.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/notebooks/yaml.ipynb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/package.json -------------------------------------------------------------------------------- /packages/jupyterlab-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/README.md -------------------------------------------------------------------------------- /packages/jupyterlab-preview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/package.json -------------------------------------------------------------------------------- /packages/jupyterlab-preview/schema/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/schema/plugin.json -------------------------------------------------------------------------------- /packages/jupyterlab-preview/src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/src/icons.ts -------------------------------------------------------------------------------- /packages/jupyterlab-preview/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/src/index.ts -------------------------------------------------------------------------------- /packages/jupyterlab-preview/src/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/src/preview.tsx -------------------------------------------------------------------------------- /packages/jupyterlab-preview/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/src/svg.d.ts -------------------------------------------------------------------------------- /packages/jupyterlab-preview/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/style/base.css -------------------------------------------------------------------------------- /packages/jupyterlab-preview/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /packages/jupyterlab-preview/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /packages/jupyterlab-preview/style/voila.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/style/voila.svg -------------------------------------------------------------------------------- /packages/jupyterlab-preview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/jupyterlab-preview/tsconfig.json -------------------------------------------------------------------------------- /packages/voila/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/package.json -------------------------------------------------------------------------------- /packages/voila/publicpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/publicpath.js -------------------------------------------------------------------------------- /packages/voila/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/app.ts -------------------------------------------------------------------------------- /packages/voila/src/bootstrap.ts: -------------------------------------------------------------------------------- 1 | import('./main.js'); 2 | -------------------------------------------------------------------------------- /packages/voila/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/global.d.ts -------------------------------------------------------------------------------- /packages/voila/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/index.ts -------------------------------------------------------------------------------- /packages/voila/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/main.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/outputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/outputs/index.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/outputs/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/outputs/plugins.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/outputs/renderedcells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/outputs/renderedcells.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/outputs/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/outputs/tools.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/path.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/themes/index.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/themes/thememanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/themes/thememanager.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/translator.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/tree/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/tree/browser.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/tree/index.ts -------------------------------------------------------------------------------- /packages/voila/src/plugins/tree/listing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/plugins/tree/listing.ts -------------------------------------------------------------------------------- /packages/voila/src/services/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/services/event.ts -------------------------------------------------------------------------------- /packages/voila/src/services/kernelspec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/services/kernelspec.ts -------------------------------------------------------------------------------- /packages/voila/src/services/servicemanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/services/servicemanager.ts -------------------------------------------------------------------------------- /packages/voila/src/services/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/services/user.ts -------------------------------------------------------------------------------- /packages/voila/src/sharedscope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/sharedscope.ts -------------------------------------------------------------------------------- /packages/voila/src/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/shell.ts -------------------------------------------------------------------------------- /packages/voila/src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/tools.ts -------------------------------------------------------------------------------- /packages/voila/src/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/tree.ts -------------------------------------------------------------------------------- /packages/voila/src/treebootstrap.ts: -------------------------------------------------------------------------------- 1 | import('./tree.js'); 2 | -------------------------------------------------------------------------------- /packages/voila/src/voilaplugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/src/voilaplugins.ts -------------------------------------------------------------------------------- /packages/voila/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/style/base.css -------------------------------------------------------------------------------- /packages/voila/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /packages/voila/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/style/index.js -------------------------------------------------------------------------------- /packages/voila/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/tsconfig.json -------------------------------------------------------------------------------- /packages/voila/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/voila/webpack.config.js -------------------------------------------------------------------------------- /packages/widgets_manager7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager7/README.md -------------------------------------------------------------------------------- /packages/widgets_manager7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager7/package.json -------------------------------------------------------------------------------- /packages/widgets_manager7/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager7/src/index.ts -------------------------------------------------------------------------------- /packages/widgets_manager7/src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager7/src/manager.ts -------------------------------------------------------------------------------- /packages/widgets_manager7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager7/tsconfig.json -------------------------------------------------------------------------------- /packages/widgets_manager8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager8/README.md -------------------------------------------------------------------------------- /packages/widgets_manager8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager8/package.json -------------------------------------------------------------------------------- /packages/widgets_manager8/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager8/src/index.ts -------------------------------------------------------------------------------- /packages/widgets_manager8/src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager8/src/manager.ts -------------------------------------------------------------------------------- /packages/widgets_manager8/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/packages/widgets_manager8/tsconfig.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements-visual-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/requirements-visual-test.txt -------------------------------------------------------------------------------- /scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/scripts/bump-version.py -------------------------------------------------------------------------------- /scripts/reset-stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/scripts/reset-stable.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/setup.py -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/404.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/browser-open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/browser-open.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/error.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/jupyter_widgets.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/jupyter_widgets.html.j2 -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/log.macro.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/log.macro.html.j2 -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/page.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/spinner.macro.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/spinner.macro.html.j2 -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/static/require.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/static/require.min.js -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/tree.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/base/voila_setup.macro.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/base/voila_setup.macro.html.j2 -------------------------------------------------------------------------------- /share/jupyter/voila/templates/classic/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/classic/index.html.j2 -------------------------------------------------------------------------------- /share/jupyter/voila/templates/lab/browser-open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/lab/browser-open.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/lab/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/lab/error.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/lab/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/lab/index.html.j2 -------------------------------------------------------------------------------- /share/jupyter/voila/templates/lab/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/lab/page.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/lab/tree-lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/lab/tree-lab.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/lab/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/lab/tree.html -------------------------------------------------------------------------------- /share/jupyter/voila/templates/reveal/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/share/jupyter/voila/templates/reveal/index.html.j2 -------------------------------------------------------------------------------- /tests/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/cgi-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/cgi-test.py -------------------------------------------------------------------------------- /tests/app/config_paths_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/config_paths_test.py -------------------------------------------------------------------------------- /tests/app/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/conftest.py -------------------------------------------------------------------------------- /tests/app/contents_handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/contents_handler_test.py -------------------------------------------------------------------------------- /tests/app/cwd_subdir_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/cwd_subdir_test.py -------------------------------------------------------------------------------- /tests/app/cwd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/cwd_test.py -------------------------------------------------------------------------------- /tests/app/execute_cpp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/execute_cpp_test.py -------------------------------------------------------------------------------- /tests/app/execute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/execute_test.py -------------------------------------------------------------------------------- /tests/app/image_inlining_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/image_inlining_test.py -------------------------------------------------------------------------------- /tests/app/kernel_death_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/kernel_death_test.py -------------------------------------------------------------------------------- /tests/app/many_iopub_messages_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/many_iopub_messages_test.py -------------------------------------------------------------------------------- /tests/app/nbextensions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/nbextensions_test.py -------------------------------------------------------------------------------- /tests/app/no_kernelspec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/no_kernelspec_test.py -------------------------------------------------------------------------------- /tests/app/no_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/no_metadata.py -------------------------------------------------------------------------------- /tests/app/no_strip_sources_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/no_strip_sources_test.py -------------------------------------------------------------------------------- /tests/app/non_existing_kernel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/non_existing_kernel_test.py -------------------------------------------------------------------------------- /tests/app/notebooks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/notebooks_test.py -------------------------------------------------------------------------------- /tests/app/page_config_hook_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/page_config_hook_test.py -------------------------------------------------------------------------------- /tests/app/preheat_activation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/preheat_activation_test.py -------------------------------------------------------------------------------- /tests/app/preheat_configuration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/preheat_configuration_test.py -------------------------------------------------------------------------------- /tests/app/preheat_default_kernel_env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/preheat_default_kernel_env_test.py -------------------------------------------------------------------------------- /tests/app/preheat_multiple_notebooks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/preheat_multiple_notebooks_test.py -------------------------------------------------------------------------------- /tests/app/preheat_with_query_string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/preheat_with_query_string_test.py -------------------------------------------------------------------------------- /tests/app/prelaunch_hook_papermill_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/prelaunch_hook_papermill_test.py -------------------------------------------------------------------------------- /tests/app/prelaunch_hook_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/prelaunch_hook_test.py -------------------------------------------------------------------------------- /tests/app/preprocessor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/preprocessor_test.py -------------------------------------------------------------------------------- /tests/app/progressive_rendering_activation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/progressive_rendering_activation_test.py -------------------------------------------------------------------------------- /tests/app/progressive_rendering_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/progressive_rendering_test.py -------------------------------------------------------------------------------- /tests/app/serve_directory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/serve_directory_test.py -------------------------------------------------------------------------------- /tests/app/show_traceback_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/show_traceback_test.py -------------------------------------------------------------------------------- /tests/app/shutdown_kernel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/shutdown_kernel_test.py -------------------------------------------------------------------------------- /tests/app/static_files_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/static_files_test.py -------------------------------------------------------------------------------- /tests/app/syntax_error_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/syntax_error_test.py -------------------------------------------------------------------------------- /tests/app/template_arg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/template_arg_test.py -------------------------------------------------------------------------------- /tests/app/template_cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/template_cli_test.py -------------------------------------------------------------------------------- /tests/app/template_config_file_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/template_config_file_test.py -------------------------------------------------------------------------------- /tests/app/template_custom_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/template_custom_test.py -------------------------------------------------------------------------------- /tests/app/template_sanity_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/template_sanity_test.py -------------------------------------------------------------------------------- /tests/app/timeout_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/timeout_test.py -------------------------------------------------------------------------------- /tests/app/tree_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/app/tree_test.py -------------------------------------------------------------------------------- /tests/configs/general/nbconfig/notebook.d/ipytest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/configs/general/nbconfig/notebook.d/ipytest.json -------------------------------------------------------------------------------- /tests/configs/general/voila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/configs/general/voila.json -------------------------------------------------------------------------------- /tests/configs/preheat/voila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/configs/preheat/voila.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/execute_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/execute_output_test.py -------------------------------------------------------------------------------- /tests/notebooks/autokill.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/autokill.ipynb -------------------------------------------------------------------------------- /tests/notebooks/cgi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/cgi.ipynb -------------------------------------------------------------------------------- /tests/notebooks/cwd.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/cwd.ipynb -------------------------------------------------------------------------------- /tests/notebooks/file.txt: -------------------------------------------------------------------------------- 1 | check for the cwd 2 | -------------------------------------------------------------------------------- /tests/notebooks/images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/images.ipynb -------------------------------------------------------------------------------- /tests/notebooks/jupyter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/jupyter.svg -------------------------------------------------------------------------------- /tests/notebooks/many_iopub_messages.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/many_iopub_messages.ipynb -------------------------------------------------------------------------------- /tests/notebooks/no_kernelspec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/no_kernelspec.ipynb -------------------------------------------------------------------------------- /tests/notebooks/no_metadata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/no_metadata.ipynb -------------------------------------------------------------------------------- /tests/notebooks/non_existing_kernel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/non_existing_kernel.ipynb -------------------------------------------------------------------------------- /tests/notebooks/other_comms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/other_comms.ipynb -------------------------------------------------------------------------------- /tests/notebooks/output.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/output.ipynb -------------------------------------------------------------------------------- /tests/notebooks/preheat/default_env_variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/preheat/default_env_variables.ipynb -------------------------------------------------------------------------------- /tests/notebooks/preheat/denylisted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/preheat/denylisted.ipynb -------------------------------------------------------------------------------- /tests/notebooks/preheat/get_query_string.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/preheat/get_query_string.ipynb -------------------------------------------------------------------------------- /tests/notebooks/preheat/pre_heat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/preheat/pre_heat.ipynb -------------------------------------------------------------------------------- /tests/notebooks/print.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/print.ipynb -------------------------------------------------------------------------------- /tests/notebooks/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/print.py -------------------------------------------------------------------------------- /tests/notebooks/print.xcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/print.xcpp -------------------------------------------------------------------------------- /tests/notebooks/print_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/print_cpp.ipynb -------------------------------------------------------------------------------- /tests/notebooks/print_parameterized.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/print_parameterized.ipynb -------------------------------------------------------------------------------- /tests/notebooks/skip-voila-cell.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/skip-voila-cell.ipynb -------------------------------------------------------------------------------- /tests/notebooks/sleep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/sleep.ipynb -------------------------------------------------------------------------------- /tests/notebooks/sleep10seconds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/sleep10seconds.ipynb -------------------------------------------------------------------------------- /tests/notebooks/subdir/cwd_subdir.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/subdir/cwd_subdir.ipynb -------------------------------------------------------------------------------- /tests/notebooks/syntax_error.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/notebooks/syntax_error.ipynb -------------------------------------------------------------------------------- /tests/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/server/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/conftest.py -------------------------------------------------------------------------------- /tests/server/cwd_subdir_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/cwd_subdir_test.py -------------------------------------------------------------------------------- /tests/server/execute_cpp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/execute_cpp_test.py -------------------------------------------------------------------------------- /tests/server/execute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/execute_test.py -------------------------------------------------------------------------------- /tests/server/nbextensions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/nbextensions_test.py -------------------------------------------------------------------------------- /tests/server/no_strip_sources_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/no_strip_sources_test.py -------------------------------------------------------------------------------- /tests/server/show_traceback_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/show_traceback_test.py -------------------------------------------------------------------------------- /tests/server/static_files_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/static_files_test.py -------------------------------------------------------------------------------- /tests/server/tree_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/server/tree_test.py -------------------------------------------------------------------------------- /tests/skip_template/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/skip_template/setup.py -------------------------------------------------------------------------------- /tests/skip_template/share/jupyter/voila/templates/skip_template/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/skip_template/share/jupyter/voila/templates/skip_template/conf.json -------------------------------------------------------------------------------- /tests/template_prefixes/loader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/loader_test.py -------------------------------------------------------------------------------- /tests/template_prefixes/system/nbconvert/templates/bar/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/nbconvert/templates/bar/index.tpl -------------------------------------------------------------------------------- /tests/template_prefixes/system/nbconvert/templates/bar/parent.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/nbconvert/templates/bar/parent.tpl -------------------------------------------------------------------------------- /tests/template_prefixes/system/nbconvert/templates/default/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/nbconvert/templates/default/index.tpl -------------------------------------------------------------------------------- /tests/template_prefixes/system/nbconvert/templates/default/parent.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/nbconvert/templates/default/parent.tpl -------------------------------------------------------------------------------- /tests/template_prefixes/system/nbconvert/templates/foo/conf.json: -------------------------------------------------------------------------------- 1 | { "base_template": "default" } 2 | -------------------------------------------------------------------------------- /tests/template_prefixes/system/nbconvert/templates/foo/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/nbconvert/templates/foo/index.tpl -------------------------------------------------------------------------------- /tests/template_prefixes/system/voila/templates/default/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/voila/templates/default/index.tpl -------------------------------------------------------------------------------- /tests/template_prefixes/system/voila/templates/foo/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/template_prefixes/system/voila/templates/foo/index.tpl -------------------------------------------------------------------------------- /tests/test_template/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/test_template/setup.py -------------------------------------------------------------------------------- /tests/test_template/share/jupyter/voila/templates/test_template/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/test_template/share/jupyter/voila/templates/test_template/conf.json -------------------------------------------------------------------------------- /tests/test_template/share/jupyter/voila/templates/test_template/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/test_template/share/jupyter/voila/templates/test_template/index.html.j2 -------------------------------------------------------------------------------- /tests/test_template/share/jupyter/voila/templates/test_template/static/only-in-test-template.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_template/share/jupyter/voila/templates/test_template/static/voila.js: -------------------------------------------------------------------------------- 1 | // this file overrides the default voila.js 2 | -------------------------------------------------------------------------------- /tests/test_template/share/jupyter/voila/templates/test_template/voila.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/test_template/share/jupyter/voila/templates/test_template/voila.tpl -------------------------------------------------------------------------------- /tests/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tests/utils_test.py -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfigbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/tsconfigbase.json -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/utils.ts -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/404-classic-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/404-classic-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/404-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/404-dark-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/404-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/404-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/basics-classic-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/basics-classic-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/basics-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/basics-dark-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/basics-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/basics-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/basics-miami-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/basics-miami-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/bokeh-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/bokeh-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/bqplot-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/bqplot-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/gridspecLayout-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/gridspecLayout-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/interactive-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/interactive-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/ipympl-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/ipympl-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/mimerenderers-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/mimerenderers-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/multiple-widgets-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/multiple-widgets-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/query-strings-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/query-strings-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/reveal-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/reveal-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/voila-tree-classic-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/voila-tree-classic-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/voila-tree-dark-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/voila-tree-dark-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/voila-tree-light-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/voila-tree-light-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/voila-tree-miami-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/voila-tree-miami-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/voila.test.ts-snapshots/yaml-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/tests/voila.test.ts-snapshots/yaml-linux.png -------------------------------------------------------------------------------- /ui-tests/voila-benchmark-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/voila-benchmark-expected.json -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /voila-basics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila-basics.gif -------------------------------------------------------------------------------- /voila-bqplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila-bqplot.gif -------------------------------------------------------------------------------- /voila-cling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila-cling.gif -------------------------------------------------------------------------------- /voila-sources.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila-sources.gif -------------------------------------------------------------------------------- /voila/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/__init__.py -------------------------------------------------------------------------------- /voila/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/__main__.py -------------------------------------------------------------------------------- /voila/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/_version.py -------------------------------------------------------------------------------- /voila/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/app.py -------------------------------------------------------------------------------- /voila/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/configuration.py -------------------------------------------------------------------------------- /voila/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/execute.py -------------------------------------------------------------------------------- /voila/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/exporter.py -------------------------------------------------------------------------------- /voila/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/handler.py -------------------------------------------------------------------------------- /voila/notebook_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/notebook_renderer.py -------------------------------------------------------------------------------- /voila/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/paths.py -------------------------------------------------------------------------------- /voila/request_info_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/request_info_handler.py -------------------------------------------------------------------------------- /voila/server_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/server_extension.py -------------------------------------------------------------------------------- /voila/shutdown_kernel_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/shutdown_kernel_handler.py -------------------------------------------------------------------------------- /voila/static/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/static/extension.js -------------------------------------------------------------------------------- /voila/static_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/static_file_handler.py -------------------------------------------------------------------------------- /voila/tornado/contentshandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/tornado/contentshandler.py -------------------------------------------------------------------------------- /voila/tornado/execution_request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/tornado/execution_request_handler.py -------------------------------------------------------------------------------- /voila/tornado/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/tornado/handler.py -------------------------------------------------------------------------------- /voila/tornado/kernel_websocket_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/tornado/kernel_websocket_handler.py -------------------------------------------------------------------------------- /voila/tornado/treehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/tornado/treehandler.py -------------------------------------------------------------------------------- /voila/treehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/treehandler.py -------------------------------------------------------------------------------- /voila/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/utils.py -------------------------------------------------------------------------------- /voila/voila_identity_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/voila_identity_provider.py -------------------------------------------------------------------------------- /voila/voila_kernel_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/voila/voila_kernel_manager.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voila-dashboards/voila/HEAD/yarn.lock --------------------------------------------------------------------------------