Skip to content

Commit 2f7fd12

Browse files
authored
Merge pull request #134 from RRosio/docs
Updating documentation for nbclassic
2 parents fa65c00 + 65803c7 commit 2f7fd12

13 files changed

+312
-106
lines changed

CONTRIBUTING.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You can also use the installer from the `Node.js website <https://nodejs.org>`_.
4343

4444

4545
Installing the Jupyter NbClassic
46-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
46+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4747

4848
Once you have installed the dependencies mentioned above, use the following
4949
steps::
@@ -71,7 +71,7 @@ If you are working in development mode, you will see that your version of Jupyte
7171
Troubleshooting the Installation
7272
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7373

74-
If you do not see that your Jupyter NbClassic is not running on dev mode, it's possible that you are
74+
If you do not see that your Jupyter NbClassic is running on dev mode, it's possible that you are
7575
running other instances of Jupyter NbClassic. You can try the following steps:
7676

7777
1. Uninstall all instances of the NbClassic package. These include any installations you made using

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
master_doc = 'index'
9494

9595
# General information about the project.
96-
project = 'Jupyter Notebook'
96+
project = 'Jupyter NbClassic'
9797
copyright = '2015, Jupyter Team, https://jupyter.org'
9898
author = 'The Jupyter Team'
9999

docs/source/config_overview.rst

+19-14
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,19 @@
33
Configuration Overview
44
======================
55

6+
As NbClassic is a Jupyter Server Extension that is intended as an intermediary project while users
7+
migrate from Notebook 6 to Notebook 7, this document makes references to configuration
8+
files carried over from the classic Jupyter Notebook which will be executed when running
9+
nbclassic. For more general documentation regarding the Jupyter Server that NbClassic
10+
uses please visit the `Jupyter Server documentation <https://jupyter-server.readthedocs.io/en/latest/index.html>`_.
11+
612
Beyond the default configuration settings, you can configure a rich array of
713
options to suit your workflow. Here are areas that are commonly configured
8-
when using Jupyter Notebook:
14+
when using Jupyter NbClassic:
915

1016
- :ref:`Jupyter's common configuration system <configure_common>`
11-
- :ref:`Notebook server <configure_nbserver>`
12-
- :ref:`Notebook front-end client <configure_nbclient>`
17+
- :ref:`NbClassic server <configure_nbserver>`
18+
- :ref:`NbClassic front-end client <configure_nbclient>`
1319
- :ref:`Notebook extensions <configure_nbextensions>`
1420

1521
Let's look at highlights of each area.
@@ -30,30 +36,29 @@ and editing settings is similar for all the Jupyter applications.
3036

3137
.. _configure_nbserver:
3238

33-
Notebook server
34-
---------------
35-
The Notebook server runs the language kernel and communicates with the
36-
front-end Notebook client (i.e. the familiar notebook interface).
39+
NbClassic Server
40+
----------------
41+
The NbClassic server runs the language kernel and communicates with the
42+
front-end NbClassic client (i.e. the familiar notebook interface).
3743

38-
- Configuring the Notebook server
44+
- Configuring the NbClassic server
3945

4046
To create a ``jupyter_notebook_config.py`` file in the ``.jupyter``
4147
directory, with all the defaults commented out, use the following
4248
command::
4349

44-
$ jupyter notebook --generate-config
45-
46-
:ref:`Command line arguments for configuration <config>` settings are
47-
documented in the configuration file and the user documentation.
50+
$ jupyter nbclassic --generate-config
4851

52+
:ref:`Command line arguments for configuration <config>` settings are documented in the configuration file and the user documentation.
53+
4954
- :ref:`Running a Notebook server <working_remotely>`
5055
- Related: `Configuring a language kernel <https://ipython.readthedocs.io/en/latest/install/kernel_install.html>`_
5156
to run in the Notebook server enables your server to run other languages, like R or Julia.
5257

5358
.. _configure_nbclient:
5459

55-
Notebook front-end client
56-
-------------------------
60+
NbClassic front-end client
61+
--------------------------
5762

5863
.. toctree::
5964
:maxdepth: 2

docs/source/development_faq.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Developer FAQ
77

88
.. code-block:: bash
99
10-
python -m pip install notebook --pre --upgrade
10+
python -m pip install nbclassic --pre --upgrade

docs/source/frontend_config.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
.. _frontend_config:
22

3-
Configuring the notebook frontend
3+
Configuring the NbClassic frontend
44
=================================
55

66
.. note::
77

8-
The ability to configure the notebook frontend UI and preferences is
8+
The ability to configure the nbclassic frontend UI and preferences is
99
still a work in progress.
1010

1111
This document is a rough explanation on how you can persist some configuration
12-
options for the notebook JavaScript.
12+
options for the nbclassic JavaScript.
1313

1414
There is no exhaustive list of all the configuration options as most options
1515
are passed down to other libraries, which means that non valid

docs/source/index.rst

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
====================
2-
The Jupyter Notebook
3-
====================
1+
==================
2+
Jupyter NbClassic
3+
==================
44

5-
* `Installation <https://jupyter.readthedocs.io/en/latest/install.html>`_
6-
* `Starting the Notebook <https://jupyter.readthedocs.io/en/latest/running.html>`_
5+
:ref:`Getting Started <NbClassicUsage>`
76

87
.. toctree::
98
:maxdepth: 1
109
:caption: User Documentation
1110

11+
nbclassic
1212
notebook
1313
ui_components
1414
examples/Notebook/examples_index.rst
@@ -33,6 +33,7 @@ The Jupyter Notebook
3333
:caption: Contributor Documentation
3434

3535
contributing
36+
nbclassic_dev_faq
3637
development_faq
3738

3839
.. toctree::

docs/source/nbclassic.rst

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
.. _htmlnotebook:
2+
3+
Jupyter NbClassic
4+
====================
5+
6+
Introduction
7+
------------
8+
9+
The nbclassic package is the implementation of the classic Jupyter
10+
Notebook 6 as a Jupyter Server extension. As proposed in the accepted
11+
`Jupyter Enhancement Proposal #79`_ the development of this package
12+
is due to plans being carried out to create a Notebook 7, that is based on
13+
the modern JupyterLab code-base.
14+
15+
While Notebook 7 provides a user experience equivalent to that of the
16+
classic Notebook 6, the technology stack used is incompatible with
17+
that which many Jupyter Notebook users have developed their Jupyter
18+
Notebook extensions with. Users may find themselves in need of a
19+
way to continue using the Jupyter Notebook 6 tech-stack as they
20+
transition to using the Jupyter Notebook 7. The NbClassic package
21+
intends to address that need.
22+
23+
.. _Jupyter Enhancement Proposal #79: https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html
24+
25+
.. _NbClassicUsage:
26+
27+
NbClassic Usage
28+
---------------
29+
30+
Installation
31+
~~~~~~~~~~~~
32+
33+
Installing from PyPI:
34+
``> pip install nbclassic``
35+
This will automatically enable the extension in Jupyter Server.
36+
37+
Launch directly:
38+
``> jupyter nbclassic``
39+
40+
Alternatively, you can run Jupyter Server and visit the `/tree` endpoint:
41+
``> jupyter server``
42+
43+
Configuration
44+
~~~~~~~~~~~~~
45+
46+
To create a ``jupyter_nbclassic_config.py`` file in the ``.jupyter`` directory you can use the following command::
47+
48+
$ jupyter nbclassic --generate-config
49+
50+
Options
51+
~~~~~~~
52+
53+
You can view a list of the available options by typing::
54+
55+
$ jupyter nbclassic --help
56+
57+
58+
NbClassic in the Jupyter Ecosystem
59+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
60+
Read more details about the changes currently taking place in the
61+
Jupyter Ecosystem in this `team-compass issue`_.
62+
63+
You can install the nbclassic, notebook 7 and jupyterlab, all three of
64+
which will be providing different user interfaces that will be available
65+
on the same server.
66+
67+
As nbclassic provides the static assets for notebook 6.5.x, while
68+
having both installed should cause no issues, the user interface provided
69+
by these two packages will be the same. These UIs would be available in
70+
different servers.
71+
72+
When using nbclassic and notebook <= 6.4.x you can expect that these UIs
73+
will not be only presented at different servers but may also differ as
74+
potential changes to the nbclassic UI will not be reflected in Notebook
75+
versions <= 6.4.x.
76+
77+
.. _team-compass issue: https://github.com/jupyter/notebook-team-compass/issues/5#issuecomment-1085254000
78+
79+
NbClassic Development
80+
---------------------
81+
82+
`Nbclassic <https://github.com/jupyter/nbclassic>`_ is the package that holds the UI components of
83+
the classic Jupyter Notebook 6 and serves this UI through the server
84+
endpoints provided by Jupyter Server.
85+
86+
*Jupyter Server Extensions*
87+
- `Authoring a basic server extension <https://jupyter-server.readthedocs.io/en/latest/developers/extensions.html>`_
88+
89+
**The jupyter/notebook Repository**: The original `jupyter/notebook`_ GitHub
90+
repository now holds the codebase for the new Jupyter Notebook (version 7).
91+
92+
.. _jupyter/notebook: https://github.com/jupyter/notebook
93+
94+
95+
NbClassic Timeline
96+
------------------
97+
As proposed in the `JEP #79`_, the nbclassic
98+
package will continue to be supported with critical security fixes
99+
in the transition period as users move to using the more modern
100+
Jupyter Notebook 7.
101+
102+
**Porting Notebook 6 Extensions**: Work being done in parallel.
103+
ou can find a helpful list of classical Notebook extensions and corresponding Jupyterlab extensions
104+
if available at the `Jupyterlab-contrib website <https://jupyterlab-contrib.github.io/migrate_from_classical.html>`_.
105+
106+
107+
.. _JEP #79: https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html

docs/source/nbclassic_dev_faq.rst

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
The Development of NbClassic
2+
============================
3+
4+
Here you will find information about some especially noteworthy updates made in NbClassic, issues that have been reported
5+
and common questions.
6+
7+
8+
Noteworthy Updates in NbClassic
9+
--------------------------------
10+
11+
- Entrypoints in NbClassic
12+
- In NbClassic entrypoints have been renamed (`Rename duplicate entrypoints #138`_) to:
13+
14+
- ``jupyter-nbclassic-extension``
15+
- ``jupyter nbclassic-serverextension``
16+
- ``jupyter-nbclassic-bundlerextension``
17+
18+
- The decision to rename these entrypoints came about after some deliberation and consideration for user experience. When considering the confusion that having a more implicit handling of the entrypoints might pose, the concensus was that renaming the entrypoints would allow for more observability and it would help highlight some of the changes that are happening in the Jupyter ecosystem.
19+
20+
.. _`Rename duplicate entrypoints #138`: https://github.com/jupyter/nbclassic/pull/138
21+
22+
23+
- Providing backwards compatibility with the `jupyter_notebook_config.py` file
24+
- With the goal of allowing NbClassic to be installed along with Notebook 7, the release of NbClassic 0.4 included changing the project name from `notebook` to `nbclassic`. In changing the 'name' attribute to be `nbclassic`, the traitlet behavior changed and resulted in the configuration file which was previously named `jupyter_notebook_config`, to be named `jupyter_nbclassic_config`. However, this was updated to manually set the file name to `jupyter_notebook_config`. With this, the configuration file is picked up whether Notebook or NbClassic are installed.
25+
26+
- Endpoints in NbClassic
27+
- NbClassic handlers have been updated to account for Notebook 7 being installed (`Handlers under nbclassic if notebook 7 is found`_). If so, the resources from nbclassic will be served under the ``/nbclassic/`` URL subpath, so as to not interfere with those resources being served by Jupyter Notebook.
28+
29+
.. _`Handlers under nbclassic if notebook 7 is found`: https://github.com/jupyter/nbclassic/pull/141
30+
31+
NbClassic Developer FAQ
32+
-----------------------
33+
34+
1. Where should I submit my issue?
35+
36+
The Jupyter Notebook 6.4.x will only be taking security fixes, you can follow
37+
these guidelines to `report a vulnerability`_.
38+
39+
For Notebook 6.5.x, as it is intended to be end of life and will receive only
40+
bug and security fixes, issues of this type in the frontend should be reported in
41+
the `jupyter/nbclassic`_ repository, bug and security issues for the server can be
42+
submitted in the `jupyter/notebook`_ repository.
43+
44+
Generally, user interface issues dealing with the nbclassic package can be
45+
submitted to the `jupyter/nbclassic`_ repository, while server issues can be
46+
reported to the `jupyter_server/jupyter_server`_ repository.
47+
48+
Notebook 7.x issues would require closer consideration as they could be
49+
reported in the `jupyter/notebook`_, `jupyterlab/jupyterlab`_, or
50+
`jupyter_server/jupyter_server`_ repositories depending on the issue.
51+
52+
.. _`report a vulnerability`: https://github.com/jupyter/security/blob/main/docs/vulnerability-handling.md#reporting-vulnerabilities
53+
.. _`jupyter/nbclassic`: https://github.com/jupyter/nbclassic
54+
.. _`jupyter/notebook`: https://github.com/jupyter/notebook
55+
.. _`jupyter_server/jupyter_server`: https://github.com/jupyter-server/jupyter_server
56+
.. _`jupyterlab/jupyterlab`: https://github.com/jupyterlab/jupyterlab
57+
58+
The Jupyter Community appreciates your efforts in making sure your issue is submitted to the correct project.
59+
There are many projects within the Jupyter ecosystem which can mean some issues are best suited for repositories
60+
different than those in which they may have been opened. In the case that the issue belongs in a different
61+
repository, we can use the `MeeseeksDev bot`_ to move the issue to the appropriate repository so long as the
62+
target repository is included in the `allowed organization list`_ in the MeeseeksDev codebase. You can see a
63+
list of the Github links to Jupyter organizations, and the different Jupyter projects under each, in the
64+
`Jupyter Community`_ page.
65+
66+
.. _`MeeseeksDev bot`: https://github.com/MeeseeksBox/MeeseeksDev#meeseeksdev-migrate-to-target-orgrepo
67+
.. _`allowed organization list`: https://github.com/MeeseeksBox/MeeseeksDev/blob/master/meeseeksdev/__init__.py#L26
68+
.. _`Jupyter Community`: https://jupyter.org/community
69+
70+
71+
Known issues
72+
------------
73+
74+
Bellow are some known bugs and issues with the NbClassic project. These are items that may be of particular interest to users
75+
migrating from notebook to nbclassic.
76+
77+
1. `#140 Error using jupyter_nbextensions_configurator with nbclassic <https://github.com/jupyter/nbclassic/issues/140>`_ is a
78+
known issue with partial fix `Support nbclassic while updating the static path <https://github.com/Jupyter-contrib/jupyter_nbextensions_configurator/pull/141>`_
79+
pending to be merged into the `Jupyter-contrib/jupyter_nbextensions_configurator <https://github.com/Jupyter-contrib/jupyter_nbextensions_configurator>`_ repository.
80+
81+
Once a release with this fix is available, users will be able to activate the extension with the following commands::
82+
83+
$ pip install jupyter_nbextensions_configurator
84+
$ jupyter nbextension install --sys-prefix --py jupyter_nbextensions_configurator --overwrite
85+
$ jupyter nbextension enable --sys-prefix --py jupyter_nbextensions_configurator
86+
$ jupyter serverextension install --sys-prefix --py jupyter_nbextensions_configurator --overwrite
87+
$ jupyter serverextension enable --sys-prefix --py jupyter_nbextensions_configurator

0 commit comments

Comments
 (0)