Skip to content

Commit f11314c

Browse files
Backport PR jupyterlab#11378: Fix links (jupyterlab#11385)
Co-authored-by: Michał Krassowski <[email protected]>
1 parent e5d7c47 commit f11314c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/source/developer/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and `Code of
3838
Conduct <https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md>`__.
3939

4040
All source code is written in
41-
`TypeScript <http://www.typescriptlang.org/Handbook>`__. See the `Style
41+
`TypeScript <https://www.typescriptlang.org/Handbook>`__. See the `Style
4242
Guide <https://github.com/jupyterlab/jupyterlab/wiki/TypeScript-Style-Guide>`__.
4343

4444
All source code is formatted using `prettier <https://prettier.io>`__.
@@ -119,7 +119,7 @@ If you use ``conda``, you can get it with:
119119
120120
conda install -c conda-forge 'nodejs'
121121
122-
If you use `Homebrew <http://brew.sh>`__ on Mac OS X:
122+
If you use `Homebrew <https://brew.sh>`__ on Mac OS X:
123123

124124
.. code:: bash
125125

docs/source/developer/internationalization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ file in *language-packs* repository. The workflow to trigger an update is as fol
4646
4. That workflow will open a new pull request that will update the source strings and optionally the Crowdin configuration.
4747
5. Once that pull request is merged, Crowdin will upload the new source strings automatically.
4848
6. If the placement of strings in the user interface changed (or new interface components were added) consider preparing new screenshots for Crowdin (see note below) and either
49-
upload them directly to Crowdin (filename should include the version number), or open an issue in the `language-packs <https://github.com/jupyterlab/language-packs>` repository.
49+
upload them directly to Crowdin (filename should include the version number), or open an issue in the `language-packs <https://github.com/jupyterlab/language-packs>`_ repository.
5050

5151
.. note::
5252
Translating on Crowdin can be difficult when no sufficient context information is present, especially for Jupyter-specific terms.
5353
While some technically skilled translators will navigate to the codebase to check the context of a string, it is not an efficient workflow
5454
and prevents other translators from contributing. To enable more translators to contribute, and achieve higher accuracy of translations
5555
we should provide translators with annotated screenshots of the relevant usage of specific translatable strings
56-
(see `Crowdin guide on screenshots <https://support.crowdin.com/adding-screenshots/>`).
56+
(see `Crowdin guide on screenshots <https://support.crowdin.com/adding-screenshots/>`_).
5757

5858
.. note::
5959

docs/source/extension/extension_points.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Following the list of core tokens is a guide for using some of JupyterLab's most
1111
However, it is not an exhaustive account of how to extend the application components,
1212
and more detailed descriptions of their public APIs may be found in the
1313
`JupyterLab <../api/index.html>`__ and
14-
`Lumino <http://jupyterlab.github.io/lumino/index.html>`__ API documentation.
14+
`Lumino <https://jupyterlab.github.io/lumino/index.html>`__ API documentation.
1515

1616
.. contents:: Table of contents
1717
:local:
@@ -176,7 +176,7 @@ a string value or a function that returns a string value.
176176
177177
There are several more options which can be passed into the command registry when
178178
adding new commands. These are documented
179-
`here <http://jupyterlab.github.io/lumino/commands/interfaces/commandregistry.icommandoptions.html>`__.
179+
`here <https://jupyterlab.github.io/lumino/commands/interfaces/commandregistry.icommandoptions.html>`__.
180180
181181
After a command has been added to the application command registry
182182
you can add them to various places in the application user interface,
@@ -399,7 +399,7 @@ the shortcut handler propagates up the DOM tree from the focused element
399399
and tests each element against the registered selectors. If a match is found,
400400
then that command is executed with the provided ``args``.
401401
Full documentation for the options for ``addKeyBinding`` can be found
402-
`here <http://jupyterlab.github.io/lumino/commands/interfaces/commandregistry.ikeybindingoptions.html>`__.
402+
`here <https://jupyterlab.github.io/lumino/commands/interfaces/commandregistry.ikeybindingoptions.html>`__.
403403
404404
JupyterLab also provides integration with its settings system for keyboard shortcuts.
405405
Your extension can provide a settings schema with a ``jupyter.lab.shortcuts`` key,

docs/source/user/directories.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ schemas
186186
^^^^^^^
187187

188188
The ``schemas`` directory contains `JSON
189-
Schemas <http://json-schema.org/>`__ that describe the settings used by
189+
Schemas <https://json-schema.org/>`__ that describe the settings used by
190190
individual extensions. Users may edit these settings using the
191191
JupyterLab Advanced Settings Editor.
192192

0 commit comments

Comments
 (0)