Skip to content

Commit 447ddfa

Browse files
authored
docs: Fix broken links in documentation (#15454)
Signed-off-by: Per Tillisch <[email protected]>
1 parent 7190f91 commit 447ddfa

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

NOTICE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Icon configure-inverse.svg (n/a)
201201
* License: MIT
202202
* Project: <https://github.com/Microsoft/vscode>
203203
* Source:
204-
<https://github.com/Microsoft/vscode/blob/master/src/vs/workbench/contrib/tasks/common/media/configure-inverse.svg#L1>
204+
<https://github.com/Microsoft/vscode/blob/1.35.1/src/vs/workbench/contrib/tasks/common/media/configure-inverse.svg#L1>
205205

206206
Icons copied from microsoft/vscode-icons version:
207207
b73945c70f1117c4e65939dd3e10bdd623cb4ef3 (n/a)
@@ -468,4 +468,4 @@ licensing fees.
468468
We strongly recommend downstream consumers verify the type of FFmpeg support
469469
configured and modify as required. More information on instructions to verify
470470
can be found here
471-
<https://electronjs.org/docs/development/upgrading-chromium#verify-ffmpeg-support>
471+
<https://github.com/electron/electron/blob/c75c3ef61689733cf422c2cc76d51ce05033be33/docs/development/upgrading-chromium.md#verify-ffmpeg-support>

doc/coding-guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ class MyWidget extends ReactWidget {
461461
* [2.](#frontend-fs-path) Use `FileService.fsPath` to get a path on the frontend from a URI.
462462
<a name="backend-fs-path"></a>
463463
* [3.](#backend-fs-path) Use `FileUri.fsPath` to get a path on the backend from a URI. Never use it on the frontend.
464-
<a name="uri-scheme"></a>
464+
<a name="explicit-uri-scheme"></a>
465465
* [4.](#explicit-uri-scheme) Always define an explicit scheme for a URI.
466466
467467
> Why? A URI without scheme will fall back to `file` scheme for now; in the future it will lead to a runtime error.
@@ -480,7 +480,7 @@ class MyWidget extends ReactWidget {
480480
<a name="use-icon"></a>
481481
* [9.](#use-icon) Use `LabelProvider.getIcon(uri)` to get a system-wide file icon.
482482
<a name="uri-no-string-manipulation"></a>
483-
* [10.](#uri-no-string-manipulations) Don't use `string` to manipulate URIs and paths. Use `URI` and `Path` capabilities instead, like `join`, `resolve` and `relative`.
483+
* [10.](#uri-no-string-manipulation) Don't use `string` to manipulate URIs and paths. Use `URI` and `Path` capabilities instead, like `join`, `resolve` and `relative`.
484484
485485
> Why? Because object representation can handle corner cases properly, like trailing separators.
486486

doc/pull-requests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ If a rule causes distress during discussions itself, it has to be reviewed on [t
6262
<a name="checklist-sign-off"></a>
6363
- [7.](#checklist-sign-off) Commits are signed-off: <https://github.com/eclipse-theia/theia/blob/master/CONTRIBUTING.md#sign-your-work>.
6464
<a name="checklist-meaningful-commits"></a>
65-
- [8.](#checklist-meaningful-commit) Each commit has meaningful title and a body that explains what it does. One can take inspiration from the `What it does` section from the PR.
65+
- [8.](#checklist-meaningful-commits) Each commit has meaningful title and a body that explains what it does. One can take inspiration from the `What it does` section from the PR.
6666
<a name="checklist-commit-history"></a>
6767
- [9.](#checklist-commit-history) Commit history is rebased on master and contains only meaningful commits and changes (less are usually better).
6868
- For example, use `git pull -r` or `git fetch && git rebase` to pick up changes from the master.
@@ -128,7 +128,7 @@ provided that the original author accepted the [ECA](https://github.com/eclipse-
128128
- [1.](#landing-pr) A PR can be landed when:
129129
- CI build has succeeded.
130130
- The author has accepted the [Eclipse Contributor Agreement](https://github.com/eclipse-theia/theia/blob/master/CONTRIBUTING.md#eclipse-contributor-agreement).
131-
- All checks from [the review checklist](#pull-request-review-checklist) are approved by at least one reviewer.
131+
- All checks from [the review checklist](#review-checklist) are approved by at least one reviewer.
132132
- There are no unresolved review comments.
133133
<a name="merging-pr"></a>
134134
- [2.](#merging-pr) Pull requests satisfying the criteria above should be merged in a timely fashion to avoid a buildup of approved PR's at release time. Responsibility for merging a PR falls to

examples/playwright/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Theia 🎭 Playwright is a [page object](https://martinfowler.com/bliki/PageObje
2323
The Theia 🎭 Playwright page objects introduce abstraction over Theia's user interfaces, encapsulating the details of the user interface interactions, wait conditions, etc., to help keeping your tests more concise, maintainable, and stable.
2424
Ready for an [example](./docs/GETTING_STARTED.md)?
2525

26-
The actual interaction with the Theia application is implemented with 🎭 Playwright in Typescript. Thus, we can take advantage of [Playwright's benefits](https://playwright.dev/docs/why-playwright/) and run or debug tests headless or headful across all modern browsers.
26+
The actual interaction with the Theia application is implemented with 🎭 Playwright in Typescript. Thus, we can take advantage of [Playwright's benefits](https://playwright.dev/) and run or debug tests headless or headful across all modern browsers.
2727
Check out [Playwright's documentation](https://playwright.dev/docs/intro) for more information.
2828

2929
This page object framework not only covers Theia's generic capabilities, such as handling views, the quick command palette, file explorer etc.

packages/bulk-edit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `@theia/bulk-edit` extension contributes a `Refactor Preview` widget to the
1616

1717
## Additional Information
1818

19-
- [API documentation for `@theia/bulk-edit`](https://eclipse-theia.github.io/theia/docs/next/modules/bulk-edit.html)
19+
- [API documentation for `@theia/bulk-edit`](https://eclipse-theia.github.io/theia/docs/next/modules/bulk_edit.html)
2020
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
2121
- [Theia - Website](https://theia-ide.org/)
2222

packages/monaco/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Description
1414

15-
The `@theia/monaco` extension contributes the integration of the [monaco-editor](https://microsoft.github.io/monaco-editor/index.html).\
15+
The `@theia/monaco` extension contributes the integration of the [monaco-editor](https://microsoft.github.io/monaco-editor/).\
1616
This includes:
1717

1818
- full-feature code editor

packages/vsx-registry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ and its `OVSXRouterConfig` configuration.
3131

3232
## Additional Information
3333

34-
- [API documentation for `@theia/vsx-registry`](https://eclipse-theia.github.io/theia/docs/next/modules/vsx-registry.html)
34+
- [API documentation for `@theia/vsx-registry`](https://eclipse-theia.github.io/theia/docs/next/modules/vsx_registry.html)
3535
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
3636
- [Theia - Website](https://theia-ide.org/)
3737

0 commit comments

Comments
 (0)