Skip to content

Commit 63a073a

Browse files
committed
docs: fix page references
1 parent a1fbe3d commit 63a073a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docs/source/convenience/new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(convenience-new)=
1+
(convenience:new)=
22

33
# Making a new convenience package
44

docs/source/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ arbitrary-ports-hosts
3535
## Convenience packages for popular applications
3636

3737
This repository contains various python packages
38-
set up with appropriate {ref}`entrypoints <server-process/package>`
38+
set up with appropriate {ref}`entrypoints <server-process:package>`
3939
so pip installing them automatically sets up common config
4040
for popular applications.
4141

@@ -45,7 +45,7 @@ for popular applications.
4545
convenience/packages/theia
4646
```
4747

48-
Making and contributing a {ref}`new convenience package <convenience/new>`
48+
Making and contributing a {ref}`new convenience package <convenience:new>`
4949
is very much appreciated.
5050

5151
## Examples

docs/source/server-process.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ as separate packages.
1515
Server Processes are configured with a dictionary of key value
1616
pairs.
1717

18-
(server-process-cmd)=
18+
(server-process:cmd)=
1919

2020
### `command`
2121

@@ -32,7 +32,7 @@ One of:
3232
needs to know its full path it can be constructed from
3333
`{base_url}/proxy/{port}`
3434

35-
- A callable that takes any {ref}`callable arguments <server-process/callable-arguments>`,
35+
- A callable that takes any {ref}`callable arguments <server-process:callable-arguments>`,
3636
and returns a list of strings that are used & treated same as above.
3737

3838
If the command is not specified or is an empty list, the server process is
@@ -53,7 +53,7 @@ One of:
5353
the started process, in addition to the environment of the notebook
5454
process itself. The strings `{port}`, `{unix_socket}` and
5555
`{base_url}` will be replaced as for **command**.
56-
- A callable that takes any {ref}`callable arguments <server-process/callable-arguments>`,
56+
- A callable that takes any {ref}`callable arguments <server-process:callable-arguments>`,
5757
and returns a dictionary of strings that are used & treated same as above.
5858

5959
### `absolute_url`
@@ -88,7 +88,7 @@ Defaults to _False_.
8888
Set the port that the service will listen on. The default is to
8989
automatically select an unused port.
9090

91-
(server-process-unix-socket)=
91+
(server-process:unix-socket)=
9292

9393
### `unix_socket`
9494

@@ -98,7 +98,7 @@ Jupyter Server Proxy to create a temporary directory to hold the socket,
9898
ensuring that only the user running Jupyter can connect to it.
9999

100100
If this is used, the `{unix_socket}` argument in the command template
101-
(see {ref}`server-process-cmd`) will be a filesystem path. The server should
101+
(see {ref}`server-process:cmd`) will be a filesystem path. The server should
102102
create a Unix socket bound to this path and listen for HTTP requests on it.
103103
The `port` configuration key will be ignored.
104104

@@ -148,10 +148,10 @@ One of:
148148
- A dictionary of strings that are passed in as HTTP headers to the proxy
149149
request. The strings `{port}` and `{base_url}` will be replaced as
150150
for **command**.
151-
- A callable that takes any {ref}`callable arguments <server-process/callable-arguments>`,
151+
- A callable that takes any {ref}`callable arguments <server-process:callable-arguments>`,
152152
and returns a dictionary of strings that are used & treated same as above.
153153

154-
(server-process-callable-arguments)=
154+
(server-process:callable-arguments)=
155155

156156
#### Callable arguments
157157

@@ -237,7 +237,7 @@ if we want tighter control over what process is spawned.
237237
in your notebook url. The URL path is specified by the key,
238238
but this should be made more configurable in the future.
239239

240-
(server-process-package)=
240+
(server-process:package)=
241241

242242
## Specifying config from python packages
243243

0 commit comments

Comments
 (0)