Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add impending deprecation notice and fix link for API #6920

Merged
merged 2 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/source/extending/frontend_extensions.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
.. warning::

**DEPRECATED APIs**
This documentation is for the Notebook 6 API which will soon be deprecated.
For up to date information on Notebook 7, please visit the latest version of the `Notebook documentation`_ or the `JEP for Notebook 7`_.
If you experience issues or are not yet able to migrate to Notebook 7, please visit the `NbClassic documentation`_

.. _JEP for Notebook 7: https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html
.. _Notebook documentation: https://jupyter-notebook.readthedocs.io/en/latest
.. _Nbclassic documentation: https://nbclassic.readthedocs.io/en/latest/nbclassic.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small suggestion for consistency:

Suggested change
.. _Nbclassic documentation: https://nbclassic.readthedocs.io/en/latest/nbclassic.html
.. _NbClassic documentation: https://nbclassic.readthedocs.io/en/latest/nbclassic.html


Custom front-end extensions
===========================

Expand Down
2 changes: 1 addition & 1 deletion docs/source/extending/handlers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Custom request handlers

The notebook webserver can be interacted with using a well `defined
RESTful
API <http://petstore.swagger.io/?url=https://raw.githubusercontent.com/jupyter/notebook/master/notebook/services/api/api.yaml>`__.
API <http://petstore.swagger.io/?url=https://raw.githubusercontent.com/jupyter/notebook/6.5.x/notebook/services/api/api.yaml>`__.
You can define custom RESTful API handlers in addition to the ones
provided by the notebook. As described below, to define a custom handler
you need to first write a notebook server extension. Then, in the
Expand Down