Skip to content

Commit bc94f13

Browse files
committed
Fix docs
1 parent e099ccc commit bc94f13

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/source/conf.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@
7676
'sphinx.ext.mathjax',
7777
'IPython.sphinxext.ipython_console_highlighting',
7878
'sphinxcontrib_github_alt',
79+
'sphinxcontrib.openapi',
80+
'sphinxemoji.sphinxemoji',
7981
'sphinx-jsonschema',
8082
'jupyter_telemetry_sphinxext'
8183
]
@@ -387,9 +389,10 @@
387389
import jupyter_server.transutils
388390

389391
# Jupyter telemetry configuration values.
390-
jupyter_telemetry_schema_source = "../jupyter_server/event-schemas" # Path is relative to conf.py
391-
jupyter_telemetry_schema_output = "source/operators/events" # Path is relative to conf.py
392-
jupyter_telemetry_index_title = "Telemetry Event Schemas" # Title of the index page that lists all found schemas.
392+
jupyter_telemetry_schema_source = osp.join(HERE, '../../jupyter_server/event-schemas')
393+
jupyter_telemetry_schema_output = osp.join(HERE, 'operators/events')
394+
# Title of the index page that lists all found schemas
395+
jupyter_telemetry_index_title = 'Telemetry Event Schemas'
393396

394397
def setup(app):
395398
dest = osp.join(HERE, 'other', 'changelog.md')

docs/source/other/full-config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1523,7 +1523,7 @@ AsyncFileContentsManager.use_atomic_writing : Bool
15231523
This procedure, namely 'atomic_writing', causes some bugs on file system whitout operation order enforcement (like some networked fs).
15241524
If set to False, the new notebook is written directly on the old one which could fail (eg: full filesystem or quota )
15251525

1526-
NotebookNotary.algorithm : any of ``'sha3_512'``|``'sha224'``|``'sha1'``|``'sha256'``|``'sha3_384'``|``'sha512'``|``'sha3_256'``|``'blake2s'``|``'sha3_224'``|``'md5'``|``'sha384'``|``'blake2b'``
1526+
NotebookNotary.algorithm : any of ``'sha512'``|``'md5'``|``'sha224'``|``'sha256'``|``'blake2s'``|``'blake2b'``|``'sha3_224'``|``'sha384'``|``'sha1'``|``'sha3_256'``|``'sha3_512'``|``'sha3_384'``
15271527
Default: ``'sha256'``
15281528

15291529
The hashing algorithm used to sign notebooks.

0 commit comments

Comments
 (0)