You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Split up the backend, frontend, and the docprovider (#280)
* Split up the backend, frontend, and the docprovider
* Fix LICENSE issue
* Try a different way
* Include LICENSE copies in git for simplicity
* Test creating sdist for projects, not the root metapackage
* Without concurrency
* Fix sdist install
* Include tests in `jupyter-server-ydoc`
* Move test dependencies, align indent
* Fix module name
* Hopefully final test to sdist test
* Only run pytest where needed
* Add Python 3.12 version classifier
Co-authored-by: David Brochart <[email protected]>
* Implement independent version bumps, and minor/major/release specifiers
* Bump all version to 3.0.0-alpha.0
* Reset versions for the three Python packages to 1.0.0a0
* Improve wording
Co-authored-by: David Brochart <[email protected]>
* Raise rather than assert
---------
Co-authored-by: David Brochart <[email protected]>
JupyterLab Real-Time Collaboration is a Jupyter Server Extension and JupyterLab extensions providing support for [Y documents](https://github.com/jupyter-server/jupyter_ydoc) and adding collaboration UI elements in JupyterLab.
Copy file name to clipboardExpand all lines: docs/source/developer/python_api.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@
4
4
Python API
5
5
==========
6
6
7
-
``jupyter_collaboration`` instantiates :any:`YDocExtension` and stores it under ``serverapp.settings`` dictionary, under the ``"jupyter_collaboration"`` key.
7
+
``jupyter_server_ydoc`` instantiates :any:`YDocExtension` and stores it under ``serverapp.settings`` dictionary, under the ``"jupyter_server_ydoc"`` key.
8
8
This instance can be used in other extensions to access the public API methods.
9
9
10
10
For example, to access a read-only view of the shared notebook model in your jupyter-server extension, you can use the :any:`get_document` method:
0 commit comments