├── .eslintignore ├── .eslintrc.js ├── .flake8 ├── .gitconfig ├── .github └── workflows │ ├── binder-badge.yml │ ├── check-release.yml │ ├── enforce-label.yml │ ├── license-header.yml │ ├── prep-release.yml │ ├── publish-changelog.yml │ ├── publish-release.yml │ ├── test.yml │ └── update_galata_references.yaml ├── .gitignore ├── .licenserc.yaml ├── .npmignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .readthedocs.yaml ├── .stylelintrc ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── binder ├── environment.yml ├── jupyter_config.py └── postBuild ├── codecov.yml ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ ├── jupyter_logo.svg │ └── logo-icon.png │ ├── conf.py │ ├── configuration.md │ ├── developer │ ├── architecture.md │ ├── contributing.md │ ├── javascript_api.md │ └── python_api.md │ ├── images │ └── rtc_shared_cursors.png │ └── index.md ├── install.json ├── lerna.json ├── package.json ├── packages ├── collaboration-extension │ ├── README.md │ ├── package.json │ ├── schema │ │ ├── shared-link.json │ │ └── user-menu-bar.json │ ├── src │ │ ├── collaboration.ts │ │ ├── index.ts │ │ └── sharedlink.ts │ ├── style │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── collaboration │ ├── README.md │ ├── package.json │ ├── src │ │ ├── collaboratorspanel.tsx │ │ ├── components.tsx │ │ ├── cursors.ts │ │ ├── index.ts │ │ ├── menu.ts │ │ ├── sharedlink.ts │ │ ├── tokens.ts │ │ ├── userinfopanel.tsx │ │ └── users-item.tsx │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ ├── index.js │ │ ├── menu.css │ │ ├── sharedlink.css │ │ ├── sidepanel.css │ │ └── users-item.css │ └── tsconfig.json ├── collaborative-drive │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── tokens.ts │ └── tsconfig.json ├── docprovider-extension │ ├── README.md │ ├── package.json │ ├── src │ │ ├── executor.ts │ │ ├── filebrowser.ts │ │ ├── forkManager.ts │ │ └── index.ts │ ├── style │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json └── docprovider │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── TimelineSlider.tsx │ ├── __tests__ │ │ ├── forkManager.spec.ts │ │ └── yprovider.spec.ts │ ├── awareness.ts │ ├── component.tsx │ ├── forkManager.ts │ ├── index.ts │ ├── notebookCellExecutor.ts │ ├── requests.ts │ ├── tokens.ts │ ├── ydrive.ts │ └── yprovider.ts │ ├── style │ ├── base.css │ ├── index.css │ ├── index.js │ └── slider.css │ ├── tsconfig.json │ └── tsconfig.test.json ├── projects ├── jupyter-collaboration-ui │ ├── LICENSE │ ├── README.md │ ├── install.json │ ├── jupyter_collaboration_ui │ │ ├── __init__.py │ │ └── _version.py │ ├── pyproject.toml │ └── setup.py ├── jupyter-collaboration │ ├── LICENSE │ ├── README.md │ ├── jupyter_collaboration │ │ ├── __init__.py │ │ └── _version.py │ ├── pyproject.toml │ └── setup.py ├── jupyter-docprovider │ ├── LICENSE │ ├── README.md │ ├── install.json │ ├── jupyter_docprovider │ │ ├── __init__.py │ │ └── _version.py │ ├── pyproject.toml │ └── setup.py └── jupyter-server-ydoc │ ├── LICENSE │ ├── README.md │ ├── jupyter-config │ └── jupyter_server_ydoc.json │ ├── jupyter_server_ydoc │ ├── __init__.py │ ├── _version.py │ ├── app.py │ ├── events │ │ ├── awareness.yaml │ │ ├── fork.yaml │ │ └── session.yaml │ ├── handlers.py │ ├── loaders.py │ ├── pytest_plugin.py │ ├── rooms.py │ ├── stores.py │ ├── test_utils.py │ ├── utils.py │ └── websocketserver.py │ ├── pyproject.toml │ └── setup.py ├── pyproject.toml ├── scripts ├── bump_version.py └── dev_install.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_app.py ├── test_documents.py ├── test_handlers.py ├── test_loaders.py └── test_rooms.py ├── tsconfig.json ├── tsconfig.test.json ├── typedoc.json ├── ui-tests ├── README.md ├── jupyter_server_test_config.py ├── package.json ├── playwright.config.js ├── playwright.timeline.config.js ├── tests │ ├── collaborationpanel.spec.ts │ ├── collaborationpanel.spec.ts-snapshots │ │ ├── collaboration-icon-linux.png │ │ ├── collaborationPanelCollapsed-linux.png │ │ ├── one-client-with-two-documents-linux.png │ │ ├── three-client-with-document-linux.png │ │ └── three-client-without-document-linux.png │ ├── data │ │ └── OutputExamples.ipynb │ ├── hub-share.spec.ts │ ├── hub-share.spec.ts-snapshots │ │ └── shared-link-dialog-hub-linux.png │ ├── notebook.spec.ts │ ├── notebook.spec.ts-snapshots │ │ ├── initialization-create-notebook-guest-linux.png │ │ ├── initialization-create-notebook-host-linux.png │ │ ├── initialization-open-notebook-guest-linux.png │ │ ├── initialization-open-notebook-host-linux.png │ │ └── ten-clients-add-a-new-cell-linux.png │ ├── timeline-slider.spec.ts │ ├── user-menu.spec.ts │ └── user-menu.spec.ts-snapshots │ │ ├── shared-link-dialog-linux.png │ │ └── shared-link-icon-linux.png └── yarn.lock └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/workflows/binder-badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/binder-badge.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/license-header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/license-header.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/publish-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update_galata_references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.github/workflows/update_galata_references.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.prettierrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/RELEASE.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/jupyter_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/binder/jupyter_config.py -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/binder/postBuild -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/jupyter_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/_static/jupyter_logo.svg -------------------------------------------------------------------------------- /docs/source/_static/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/_static/logo-icon.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/configuration.md -------------------------------------------------------------------------------- /docs/source/developer/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/developer/architecture.md -------------------------------------------------------------------------------- /docs/source/developer/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/developer/contributing.md -------------------------------------------------------------------------------- /docs/source/developer/javascript_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/developer/javascript_api.md -------------------------------------------------------------------------------- /docs/source/developer/python_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/developer/python_api.md -------------------------------------------------------------------------------- /docs/source/images/rtc_shared_cursors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/images/rtc_shared_cursors.png -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/install.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/package.json -------------------------------------------------------------------------------- /packages/collaboration-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/README.md -------------------------------------------------------------------------------- /packages/collaboration-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/package.json -------------------------------------------------------------------------------- /packages/collaboration-extension/schema/shared-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/schema/shared-link.json -------------------------------------------------------------------------------- /packages/collaboration-extension/schema/user-menu-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/schema/user-menu-bar.json -------------------------------------------------------------------------------- /packages/collaboration-extension/src/collaboration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/src/collaboration.ts -------------------------------------------------------------------------------- /packages/collaboration-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/src/index.ts -------------------------------------------------------------------------------- /packages/collaboration-extension/src/sharedlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/src/sharedlink.ts -------------------------------------------------------------------------------- /packages/collaboration-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/style/index.css -------------------------------------------------------------------------------- /packages/collaboration-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/style/index.js -------------------------------------------------------------------------------- /packages/collaboration-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/collaboration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/README.md -------------------------------------------------------------------------------- /packages/collaboration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/package.json -------------------------------------------------------------------------------- /packages/collaboration/src/collaboratorspanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/collaboratorspanel.tsx -------------------------------------------------------------------------------- /packages/collaboration/src/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/components.tsx -------------------------------------------------------------------------------- /packages/collaboration/src/cursors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/cursors.ts -------------------------------------------------------------------------------- /packages/collaboration/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/index.ts -------------------------------------------------------------------------------- /packages/collaboration/src/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/menu.ts -------------------------------------------------------------------------------- /packages/collaboration/src/sharedlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/sharedlink.ts -------------------------------------------------------------------------------- /packages/collaboration/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/tokens.ts -------------------------------------------------------------------------------- /packages/collaboration/src/userinfopanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/userinfopanel.tsx -------------------------------------------------------------------------------- /packages/collaboration/src/users-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/src/users-item.tsx -------------------------------------------------------------------------------- /packages/collaboration/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/base.css -------------------------------------------------------------------------------- /packages/collaboration/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/index.css -------------------------------------------------------------------------------- /packages/collaboration/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/index.js -------------------------------------------------------------------------------- /packages/collaboration/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/menu.css -------------------------------------------------------------------------------- /packages/collaboration/style/sharedlink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/sharedlink.css -------------------------------------------------------------------------------- /packages/collaboration/style/sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/sidepanel.css -------------------------------------------------------------------------------- /packages/collaboration/style/users-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/style/users-item.css -------------------------------------------------------------------------------- /packages/collaboration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaboration/tsconfig.json -------------------------------------------------------------------------------- /packages/collaborative-drive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaborative-drive/package.json -------------------------------------------------------------------------------- /packages/collaborative-drive/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaborative-drive/src/index.ts -------------------------------------------------------------------------------- /packages/collaborative-drive/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaborative-drive/src/tokens.ts -------------------------------------------------------------------------------- /packages/collaborative-drive/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/collaborative-drive/tsconfig.json -------------------------------------------------------------------------------- /packages/docprovider-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/README.md -------------------------------------------------------------------------------- /packages/docprovider-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/package.json -------------------------------------------------------------------------------- /packages/docprovider-extension/src/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/src/executor.ts -------------------------------------------------------------------------------- /packages/docprovider-extension/src/filebrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/src/filebrowser.ts -------------------------------------------------------------------------------- /packages/docprovider-extension/src/forkManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/src/forkManager.ts -------------------------------------------------------------------------------- /packages/docprovider-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/src/index.ts -------------------------------------------------------------------------------- /packages/docprovider-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/style/index.css -------------------------------------------------------------------------------- /packages/docprovider-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/style/index.js -------------------------------------------------------------------------------- /packages/docprovider-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/docprovider/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/babel.config.js -------------------------------------------------------------------------------- /packages/docprovider/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/jest.config.js -------------------------------------------------------------------------------- /packages/docprovider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/package.json -------------------------------------------------------------------------------- /packages/docprovider/src/TimelineSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/TimelineSlider.tsx -------------------------------------------------------------------------------- /packages/docprovider/src/__tests__/forkManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/__tests__/forkManager.spec.ts -------------------------------------------------------------------------------- /packages/docprovider/src/__tests__/yprovider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/__tests__/yprovider.spec.ts -------------------------------------------------------------------------------- /packages/docprovider/src/awareness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/awareness.ts -------------------------------------------------------------------------------- /packages/docprovider/src/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/component.tsx -------------------------------------------------------------------------------- /packages/docprovider/src/forkManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/forkManager.ts -------------------------------------------------------------------------------- /packages/docprovider/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/index.ts -------------------------------------------------------------------------------- /packages/docprovider/src/notebookCellExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/notebookCellExecutor.ts -------------------------------------------------------------------------------- /packages/docprovider/src/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/requests.ts -------------------------------------------------------------------------------- /packages/docprovider/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/tokens.ts -------------------------------------------------------------------------------- /packages/docprovider/src/ydrive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/ydrive.ts -------------------------------------------------------------------------------- /packages/docprovider/src/yprovider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/src/yprovider.ts -------------------------------------------------------------------------------- /packages/docprovider/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/style/base.css -------------------------------------------------------------------------------- /packages/docprovider/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/style/index.css -------------------------------------------------------------------------------- /packages/docprovider/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/style/index.js -------------------------------------------------------------------------------- /packages/docprovider/style/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/style/slider.css -------------------------------------------------------------------------------- /packages/docprovider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/tsconfig.json -------------------------------------------------------------------------------- /packages/docprovider/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/packages/docprovider/tsconfig.test.json -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration-ui/LICENSE -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration-ui/README.md -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration-ui/install.json -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/jupyter_collaboration_ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/__init__.py -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1.2" 2 | -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration-ui/pyproject.toml -------------------------------------------------------------------------------- /projects/jupyter-collaboration-ui/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration-ui/setup.py -------------------------------------------------------------------------------- /projects/jupyter-collaboration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration/LICENSE -------------------------------------------------------------------------------- /projects/jupyter-collaboration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration/README.md -------------------------------------------------------------------------------- /projects/jupyter-collaboration/jupyter_collaboration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration/jupyter_collaboration/__init__.py -------------------------------------------------------------------------------- /projects/jupyter-collaboration/jupyter_collaboration/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.1.2" 2 | -------------------------------------------------------------------------------- /projects/jupyter-collaboration/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration/pyproject.toml -------------------------------------------------------------------------------- /projects/jupyter-collaboration/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-collaboration/setup.py -------------------------------------------------------------------------------- /projects/jupyter-docprovider/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-docprovider/LICENSE -------------------------------------------------------------------------------- /projects/jupyter-docprovider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-docprovider/README.md -------------------------------------------------------------------------------- /projects/jupyter-docprovider/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-docprovider/install.json -------------------------------------------------------------------------------- /projects/jupyter-docprovider/jupyter_docprovider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-docprovider/jupyter_docprovider/__init__.py -------------------------------------------------------------------------------- /projects/jupyter-docprovider/jupyter_docprovider/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1.2" 2 | -------------------------------------------------------------------------------- /projects/jupyter-docprovider/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-docprovider/pyproject.toml -------------------------------------------------------------------------------- /projects/jupyter-docprovider/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-docprovider/setup.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/LICENSE -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/README.md -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter-config/jupyter_server_ydoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter-config/jupyter_server_ydoc.json -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/__init__.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1.2" 2 | -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/app.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/events/awareness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/events/awareness.yaml -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/events/fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/events/fork.yaml -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/events/session.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/events/session.yaml -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/handlers.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/loaders.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/pytest_plugin.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/rooms.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/stores.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/test_utils.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/utils.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/jupyter_server_ydoc/websocketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/jupyter_server_ydoc/websocketserver.py -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/pyproject.toml -------------------------------------------------------------------------------- /projects/jupyter-server-ydoc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/projects/jupyter-server-ydoc/setup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/scripts/bump_version.py -------------------------------------------------------------------------------- /scripts/dev_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/scripts/dev_install.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/test_documents.py -------------------------------------------------------------------------------- /tests/test_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/test_handlers.py -------------------------------------------------------------------------------- /tests/test_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/test_loaders.py -------------------------------------------------------------------------------- /tests/test_rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tests/test_rooms.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/typedoc.json -------------------------------------------------------------------------------- /ui-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/README.md -------------------------------------------------------------------------------- /ui-tests/jupyter_server_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/jupyter_server_test_config.py -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/playwright.timeline.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/playwright.timeline.config.js -------------------------------------------------------------------------------- /ui-tests/tests/collaborationpanel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/collaborationpanel.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaboration-icon-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaboration-icon-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaborationPanelCollapsed-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/collaborationpanel.spec.ts-snapshots/collaborationPanelCollapsed-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/collaborationpanel.spec.ts-snapshots/one-client-with-two-documents-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/collaborationpanel.spec.ts-snapshots/one-client-with-two-documents-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-with-document-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-with-document-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-without-document-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/collaborationpanel.spec.ts-snapshots/three-client-without-document-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/data/OutputExamples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/data/OutputExamples.ipynb -------------------------------------------------------------------------------- /ui-tests/tests/hub-share.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/hub-share.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/hub-share.spec.ts-snapshots/shared-link-dialog-hub-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/hub-share.spec.ts-snapshots/shared-link-dialog-hub-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/notebook.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-guest-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-guest-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-host-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/initialization-create-notebook-host-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-guest-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-guest-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-host-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/initialization-open-notebook-host-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/ten-clients-add-a-new-cell-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/ten-clients-add-a-new-cell-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/timeline-slider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/timeline-slider.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/user-menu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/user-menu.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-dialog-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-dialog-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-icon-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/tests/user-menu.spec.ts-snapshots/shared-link-icon-linux.png -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/HEAD/yarn.lock --------------------------------------------------------------------------------