gitextract_bz7cwb94/ ├── .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/ │ ├── conf.py │ ├── configuration.md │ ├── developer/ │ │ ├── architecture.md │ │ ├── contributing.md │ │ ├── javascript_api.md │ │ └── python_api.md │ └── index.md ├── install.json ├── lerna.json ├── package.json ├── packages/ │ ├── 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 │ ├── 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 │ ├── collaborative-drive/ │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── tokens.ts │ │ └── 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 │ └── docprovider-extension/ │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── src/ │ │ ├── executor.ts │ │ ├── filebrowser.ts │ │ ├── forkManager.ts │ │ ├── index.ts │ │ └── yprovider.ts │ ├── style/ │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── projects/ │ ├── jupyter-collaboration/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── jupyter_collaboration/ │ │ │ ├── __init__.py │ │ │ └── _version.py │ │ ├── pyproject.toml │ │ └── setup.py │ ├── jupyter-collaboration-ui/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── install.json │ │ ├── jupyter_collaboration_ui/ │ │ │ ├── __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 │ └── test_session_store.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 ├── data/ │ └── OutputExamples.ipynb ├── file.spec.ts ├── hub-share.spec.ts ├── notebook.spec.ts ├── timeline-slider.spec.ts └── user-menu.spec.ts