Skip to content

Commit 0d9f945

Browse files
committed
switch to pydata theme
1 parent 600a65c commit 0d9f945

24 files changed

+1407
-143
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Jupyter Server
22

3-
[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
43
[![Build Status](https://github.com/jupyter/jupyter_server/workflows/CI/badge.svg)](https://github.com/jupyter/jupyter_server/actions)
54
[![Documentation Status](https://readthedocs.org/projects/jupyter-server/badge/?version=latest)](http://jupyter-server.readthedocs.io/en/latest/?badge=latest)
65

docs/autogen_config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
from jupyter_server.serverapp import ServerApp
55

66
header = """\
7-
.. _config:
7+
.. _other-full-config:
88
99
1010
Config file and command line options
1111
====================================
1212
1313
The Jupyter Server can be run with a variety of command line arguments.
14-
A list of available options can be found below in the :ref:`options section
14+
A list of available options can be found below in the :ref:`options section
1515
<options>`.
1616
1717
Defaults for these options can also be set by creating a file named
@@ -29,16 +29,16 @@
2929
Options
3030
-------
3131
32-
This list of options can be generated by running the following and hitting
32+
This list of options can be generated by running the following and hitting
3333
enter::
3434
35-
$ jupyter server --help
35+
$ jupyter server --help-all
3636
3737
"""
3838
try:
39-
destination = os.path.join(os.path.dirname(__file__), 'source/config.rst')
39+
destination = os.path.join(os.path.dirname(__file__), 'source/other/full-config.rst')
4040
except:
41-
destination = os.path.join(os.getcwd(), 'config.rst')
41+
destination = os.path.join(os.getcwd(), 'full-config.rst')
4242

4343
with open(destination, 'w') as f:
4444
f.write(header)

docs/doc-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
sphinx>=1.3.6
2-
sphinx-rtd-theme
2+
git+https://github.com/pandas-dev/pydata-sphinx-theme.git@master
33
sphinxcontrib_github_alt
4+
sphinxcontrib-openapi
Lines changed: 191 additions & 0 deletions
Loading

docs/source/conf.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
'sphinx.ext.mathjax',
7171
'IPython.sphinxext.ipython_console_highlighting',
7272
'sphinxcontrib_github_alt',
73+
'sphinxcontrib.openapi'
7374
]
7475

7576
# Add any paths that contain templates here, relative to this directory.
@@ -88,7 +89,7 @@
8889

8990
# General information about the project.
9091
project = 'Jupyter Server'
91-
copyright = '2015, Jupyter Team, https://jupyter.org'
92+
copyright = '2020, Jupyter Team, https://jupyter.org'
9293
author = 'The Jupyter Team'
9394

9495
# ghissue config
@@ -170,7 +171,9 @@
170171

171172
# The theme to use for HTML and HTML Help pages. See the documentation for
172173
# a list of builtin themes.
173-
html_theme = 'sphinx_rtd_theme'
174+
#html_theme = 'sphinx_rtd_theme'
175+
html_theme = "pydata_sphinx_theme"
176+
html_logo = "_static/jupyter_server_logo.svg"
174177

175178
# Theme options are theme-specific and customize the look and feel of a theme
176179
# further. For a list of options available for each theme, see the
@@ -359,7 +362,7 @@
359362
'ipython': ('https://ipython.readthedocs.io/en/stable/', None),
360363
'nbconvert': ('https://nbconvert.readthedocs.io/en/latest/', None),
361364
'nbformat': ('https://nbformat.readthedocs.io/en/latest/', None),
362-
'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
365+
'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None)
363366
}
364367

365368
spelling_lang='en_US'

docs/source/config_overview.rst

Lines changed: 0 additions & 64 deletions
This file was deleted.

docs/source/contributors/index.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Documentation for Contributors
2+
------------------------------
3+
4+
These pages target people who are interested in contributing directly to the Jupyter Server Project.
5+
6+
.. toctree::
7+
:caption: Contributors
8+
:maxdepth: 1
9+
:name: contributors
10+
11+
team-meetings
12+
contributing
Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
Team Meetings and Road Map
2-
==========================
1+
.. _contributors-team-meetings-roadmap-calendar:
2+
3+
Team Meetings, Road Map and Calendar
4+
====================================
35

46
Many of the lead Jupyter Server developers meet weekly over Zoom. These meetings are open to everyone.
57

@@ -9,4 +11,11 @@ https://github.com/jupyter/jupyter_server/issues/126
911

1012
Also check out Jupyter Server's roadmap where we track future plans for Jupyter Server:
1113

12-
https://github.com/jupyter/jupyter_server/issues/127
14+
https://github.com/jupyter/jupyter_server/issues/127
15+
16+
17+
Jupyter Calendar:
18+
19+
.. raw:: html
20+
21+
<iframe src="https://calendar.google.com/calendar/embed?height=600&amp;wkst=1&amp;bgcolor=%23ffffff&amp;ctz=America%2FLos_Angeles&amp;src=bTNoZWs2OWRhZzczODF1bXQ4a2NqZDc1dTRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&amp;color=%23F6BF26" style="border:solid 1px #777" width="700" height="500" frameborder="0" scrolling="no"></iframe>

docs/source/developers/configurable-extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Authoring a configurable, server extension application
1+
Authoring a configurable extension application
22
======================================================
33

44
Jupyter Server offers a base class, ``ExtensionApp``, for authoring configurable Jupyter Server extensions. This class handles most of the boilerplate code for setting up config, CLI, and registration with Jupyter Server.

0 commit comments

Comments
 (0)