Skip to content

Commit 70e6b3f

Browse files
authoredAug 22, 2023
Port to PyData-Sphinx Theme (#256)
* start port to pydata-sphinx theme * add theme to extensions in conf file * add pydata-sphinx-theme to requirements * modifying docs structure for correct layout of headings
1 parent addf6de commit 70e6b3f

33 files changed

+157
-65
lines changed
 

‎CONTRIBUTING.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
Contributing to the Jupyter NbClassic
2-
=====================================
1+
=================================
2+
Contributing to Jupyter NbClassic
3+
=================================
34

45
If you're reading this section, you're probably interested in contributing to
56
Jupyter. Welcome and thanks for your interest in contributing!

‎docs/autogen_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
header = """\
77
.. _config:
88
9-
9+
====================================
1010
Config file and command line options
1111
====================================
1212

‎docs/doc-requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
sphinx>=1.3.6
22
sphinx-rtd-theme
3+
pydata-sphinx-theme
34
nbsphinx
45
sphinxcontrib_github_alt
56
myst_parser
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<style>
2+
#bd-docs-nav .toctree-toggle,
3+
#bd-docs-nav .toctree-checkbox {
4+
display: none;
5+
}
6+
#bd-docs-nav .toctree-l1 > a{
7+
font-weight: bold;
8+
}
9+
</style>
10+
11+
<nav class="bd-links" id="bd-docs-nav" aria-label="{{ _('Documentation Contents') }}">
12+
<div class="bd-toc-item navbar-nav">
13+
<!-- Specify a startdepth of 0 instead of default of 1 -->
14+
{{ generate_toctree_html(
15+
"sidebar",
16+
startdepth=0,
17+
show_nav_level=4,
18+
maxdepth=4,
19+
collapse=True,
20+
includehidden=True,
21+
titles_only=True
22+
) }}
23+
</div>
24+
</nav>

‎docs/source/comms.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
=====
12
Comms
23
=====
34

‎docs/source/conf.py

+30-3
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,37 @@
161161

162162
# The theme to use for HTML and HTML Help pages. See the documentation for
163163
# a list of builtin themes.
164-
html_theme = 'sphinx_rtd_theme'
164+
html_theme = "pydata_sphinx_theme"
165165

166166
# Theme options are theme-specific and customize the look and feel of a theme
167167
# further. For a list of options available for each theme, see the
168168
# documentation.
169-
#html_theme_options = {}
169+
html_theme_options = {
170+
"icon_links": [
171+
{
172+
"name": "PyPI",
173+
"url": "https://pypi.org/project/nbclassic",
174+
"icon": "fa-solid fa-box",
175+
}
176+
],
177+
"use_edit_page_button": True,
178+
"github_url": "https://github.com/jupyter/nbclassic",
179+
"navbar_end": [
180+
# disabled until widget dark variables are available
181+
# "theme-switcher",
182+
"navbar-icon-links",
183+
],
184+
"secondary_sidebar_items": ["edit-this-page", "sourcelink", "search-field.html"]
185+
}
186+
187+
html_context = {
188+
# disabled until widget dark variables are available
189+
"default_mode": "light",
190+
"doc_path": "docs",
191+
"github_repo": "nbclassic",
192+
"github_user": "jupyter",
193+
"github_version": "main",
194+
}
170195

171196
# Add any paths that contain custom themes here, relative to this directory.
172197
#html_theme_path = []
@@ -209,7 +234,9 @@
209234
#html_use_smartypants = True
210235

211236
# Custom sidebar templates, maps document names to template names.
212-
#html_sidebars = {}
237+
html_sidebars = {
238+
"**": ["sidebar-nav-bs-index.html"]
239+
}
213240

214241
# Additional templates that should be rendered to pages, maps page names to
215242
# template names.

‎docs/source/config_docs.rst

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
=============
2+
Configuration
3+
=============
4+
5+
.. toctree::
6+
:maxdepth: 1
7+
:caption: Configuration
8+
9+
config_overview
10+
config
11+
public_server
12+
security
13+
frontend_config
14+
examples/Notebook/Distributing Jupyter Extensions as Python Packages
15+
extending/index.rst

‎docs/source/config_overview.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
.. _configuration-overview:
2-
1+
======================
32
Configuration Overview
43
======================
54

@@ -51,7 +50,7 @@ front-end NbClassic client (i.e. the familiar notebook interface).
5150

5251
:ref:`Command line arguments for configuration <config>` settings are documented in the configuration file and the user documentation.
5352

54-
- :ref:`Running a Notebook server <working_remotely>`
53+
- Review the section: :ref:`Running a Notebook server <working_remotely>`
5554
- Related: `Configuring a language kernel <https://ipython.readthedocs.io/en/latest/install/kernel_install.html>`_
5655
to run in the Notebook server enables your server to run other languages, like R or Julia.
5756

‎docs/source/contribute_docs.rst

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
==========
2+
Contribute
3+
==========
4+
5+
.. toctree::
6+
:maxdepth: 1
7+
:caption: Contributor Documentation
8+
9+
contributing
10+
nbclassic_dev_faq
11+
development_faq
12+
13+
.. toctree::
14+
:hidden:
15+
16+
examples/Notebook/nbpackage/mynotebook.ipynb
17+
examples/Notebook/nbpackage/nbs/other.ipynb

‎docs/source/development_faq.rst

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
.. _development_faq:
2-
31
Developer FAQ
42
=============
53

‎docs/source/examples/Notebook/Connecting with the Qt Console.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@
104104
}
105105
],
106106
"metadata": {
107-
"nbsphinx": {
108-
"execute": "never"
109-
},
110107
"kernelspec": {
111108
"display_name": "Python 3",
112109
"language": "python",
@@ -123,6 +120,9 @@
123120
"nbconvert_exporter": "python",
124121
"pygments_lexer": "ipython3",
125122
"version": "3.5.2"
123+
},
124+
"nbsphinx": {
125+
"execute": "never"
126126
}
127127
},
128128
"nbformat": 4,

‎docs/source/examples/Notebook/Custom Keyboard Shortcuts.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,6 @@
131131
}
132132
],
133133
"metadata": {
134-
"nbsphinx": {
135-
"execute": "never"
136-
},
137134
"kernelspec": {
138135
"display_name": "Python 3",
139136
"language": "python",
@@ -150,6 +147,9 @@
150147
"nbconvert_exporter": "python",
151148
"pygments_lexer": "ipython3",
152149
"version": "3.5.2"
150+
},
151+
"nbsphinx": {
152+
"execute": "never"
153153
}
154154
},
155155
"nbformat": 4,

‎docs/source/examples/Notebook/Distributing Jupyter Extensions as Python Packages.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,4 +507,4 @@
507507
},
508508
"nbformat": 4,
509509
"nbformat_minor": 1
510-
}
510+
}

‎docs/source/examples/Notebook/Importing Notebooks.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -511,9 +511,6 @@
511511
],
512512
"metadata": {
513513
"gist_id": "6011986",
514-
"nbsphinx": {
515-
"execute": "never"
516-
},
517514
"kernelspec": {
518515
"display_name": "Python 3",
519516
"language": "python",
@@ -530,6 +527,9 @@
530527
"nbconvert_exporter": "python",
531528
"pygments_lexer": "ipython3",
532529
"version": "3.5.1+"
530+
},
531+
"nbsphinx": {
532+
"execute": "never"
533533
}
534534
},
535535
"nbformat": 4,

‎docs/source/examples/Notebook/examples_index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ __ https://nbviewer.jupyter.org/github/jupyter/nbclassic/blob/main/
99
docs/source/examples/Notebook/
1010

1111
.. toctree::
12-
:maxdepth: 2
12+
:maxdepth: 1
1313

1414
What is the Jupyter Notebook
1515
Notebook Basics

‎docs/source/examples/Notebook/nbpackage/nbs/other.ipynb

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"metadata": {},
66
"source": [
77
"### Other notebook\n",
8-
"\n",
98
"This notebook just defines `bar`"
109
]
1110
},

‎docs/source/extending/bundler_extensions.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
=========================
12
Custom bundler extensions
23
=========================
34

‎docs/source/extending/contents.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
.. _contents_api:
2-
1+
============
32
Contents API
43
============
54

‎docs/source/extending/frontend_extensions.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
===========================
12
Custom front-end extensions
23
===========================
34

‎docs/source/extending/handlers.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
=======================
12
Custom request handlers
23
=======================
34

‎docs/source/extending/keymaps.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
=================
12
Customize keymaps
23
=================
34

‎docs/source/extending/savehooks.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
===============
12
File save hooks
23
===============
34

‎docs/source/frontend_config.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
.. _frontend_config:
2-
1+
==================================
32
Configuring the NbClassic frontend
4-
=================================
3+
==================================
54

65
.. note::
76

‎docs/source/index.rst

+11-25
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,24 @@ Jupyter NbClassic
66

77
.. toctree::
88
:maxdepth: 1
9-
:caption: User Documentation
9+
:titlesonly:
1010

11-
nbclassic
12-
notebook
13-
ui_components
14-
examples/Notebook/examples_index.rst
15-
troubleshooting
16-
changelog
17-
comms
11+
user_docs
12+
13+
Information about using and troubleshooting NbClassic as well as examples and changes throughout the history of the project.
1814

1915
.. toctree::
2016
:maxdepth: 1
21-
:caption: Configuration
17+
:titlesonly:
18+
19+
config_docs
2220

23-
config_overview
24-
config
25-
public_server
26-
security
27-
frontend_config
28-
examples/Notebook/Distributing Jupyter Extensions as Python Packages
29-
extending/index.rst
21+
Find out more about configuring NbClassic.
3022

3123
.. toctree::
3224
:maxdepth: 1
33-
:caption: Contributor Documentation
25+
:titlesonly:
3426

35-
contributing
36-
nbclassic_dev_faq
37-
development_faq
38-
39-
.. toctree::
40-
:hidden:
27+
contribute_docs
4128

42-
examples/Notebook/nbpackage/mynotebook.ipynb
43-
examples/Notebook/nbpackage/nbs/other.ipynb
29+
Additional information about contributing to and developing NbClassic.

‎docs/source/nbclassic.rst

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
.. _htmlnotebook:
1+
:html_theme.sidebar_secondary.remove:
22

3+
=================
34
Jupyter NbClassic
4-
====================
5-
5+
=================
6+
.. toctree::
7+
:maxdepth: 2
8+
69
Introduction
710
------------
811

@@ -34,14 +37,14 @@ Installation
3437
~~~~~~~~~~~~
3538

3639
Installing from PyPI:
37-
``> pip install nbclassic``
40+
``pip install nbclassic``
3841
This will automatically enable the extension in Jupyter Server.
3942

4043
Launch directly:
41-
``> jupyter nbclassic``
44+
``jupyter nbclassic``
4245

4346
Alternatively, you can run Jupyter Server and visit the `/tree` endpoint:
44-
``> jupyter server``
47+
``jupyter server``
4548

4649
Configuration
4750
~~~~~~~~~~~~~

‎docs/source/nbclassic_dev_faq.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
============================
12
The Development of NbClassic
23
============================
34

‎docs/source/notebook.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
.. _htmlnotebook:
2-
1+
====================
32
The Jupyter Notebook
43
====================
54

‎docs/source/public_server.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.. _working_remotely:
22

3+
=======================================
34
Running a Jupyter Server with NbClassic
45
=======================================
56

‎docs/source/security.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
2-
.. _server_security:
3-
1+
========================================
42
Security in the Jupyter NbClassic server
53
========================================
64

‎docs/source/troubleshooting.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
===============================
12
What to do when things go wrong
23
===============================
34

‎docs/source/ui_components.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
=========================
12
User interface components
23
=========================
34

‎docs/source/user_docs.rst

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
==================
2+
User Documentation
3+
==================
4+
5+
6+
.. toctree::
7+
:maxdepth: 1
8+
:caption: User Documentation
9+
10+
nbclassic
11+
notebook
12+
ui_components
13+
examples/Notebook/examples_index.rst
14+
troubleshooting
15+
changelog
16+
comms
17+

‎nbclassic/static/base/js/namespace.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ define(function(){
7373
// tree
7474
jglobal('SessionList','tree/js/sessionlist');
7575

76-
Jupyter.version = "1.0.0";
76+
Jupyter.version = "1.1.0.dev0";
7777
Jupyter._target = '_blank';
7878

7979
return Jupyter;

0 commit comments

Comments
 (0)
Please sign in to comment.