Skip to content

Commit

Permalink
Merge pull request #856 from plone/linkcheck-2024-10-09
Browse files Browse the repository at this point in the history
Fix broken links, set linkcheck_rate_limit_timeout=10
  • Loading branch information
stevepiercy authored Oct 10, 2024
2 parents 5888115 + 79fd5dc commit 1404dec
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
r"http://127.0.0.1",
r"http://example.com",
r"https://github.com/plone/training/issues/new/choose", # requires auth
r"https://github.com/search", # always rate limited, causes linkcheck to stall
r"https://docs.github.com/en/get-started/.*", # GitHub docs require auth
r"https://github.com/plone/mockup/blob/master/mockup/.jshintrc", # TODO: remove when javascript/development-process.md is updated. See https://github.com/plone/training/issues/611
r"https://www.dipf.de/.*", # a timeout from time to time
Expand All @@ -118,6 +119,7 @@
linkcheck_anchors = True
linkcheck_timeout = 5
linkcheck_retries = 1
linkcheck_rate_limit_timeout = 10.0

# The suffix of source filenames.
source_suffix = {
Expand Down
2 changes: 1 addition & 1 deletion docs/effective-volto/architecture/bootstrap-volto.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ In case you need production ready deployment, check the training {doc}`/plone-de
The example above does not persist yet any changes you make through Volto in
the Plone docker container backend! For this you need to map the /data directory
in the container properly. Check Docker
[storage documentation](https://docs.docker.com/storage/) for more information.
[storage documentation](https://docs.docker.com/engine/storage/) for more information.
As a quick example: if you add
`--mount type=bind,source="$(pwd)/plone-data",target=/data`
Expand Down
2 changes: 1 addition & 1 deletion docs/effective-volto/architecture/razzle.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ It defines the Babel configuration baseline, and allows you to extend it as well
It has all the modern development tools (HMR, etc) and a plugin system that you can use from your projects.

```{note}
While Razzle is stable, it doesn't see a lot of active development. A possible replacement could be [vite.js](https://vitejs.dev/) and there's already a Proof of Concept that integrates it with Volto.
While Razzle is stable, it doesn't see a lot of active development. A possible replacement could be [vite.js](https://vite.dev/) and there's already a Proof of Concept that integrates it with Volto.
```
2 changes: 1 addition & 1 deletion docs/effective-volto/getting-started/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Finally, install `yarn` according to the [Plone documentation](https://6.docs.pl

### Docker (optional, but recommended)

Install `Docker` according to the [official documentation](https://docs.docker.com/get-docker/).
Install `Docker` according to the [official documentation](https://docs.docker.com/get-started/get-docker/).

Generate a new Plone 6 Project:

Expand Down
2 changes: 1 addition & 1 deletion docs/effective-volto/testing/acceptance.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ dispatch(
);
```
More information about this: https://www.cypress.io/blog/2018/11/14/testing-redux-store/
More information about this: https://www.cypress.io/blog/testing-redux-store
#### Volto settings
Expand Down
8 changes: 4 additions & 4 deletions docs/plone-deployment/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Ensure a seamless learning experience by preparing your computer with the necess
### 1. **Operating System**

- **Linux/macOS:** A recent version is preferred. macOS users should have [Homebrew](https://brew.sh/) installed.
- **Windows:** Consider using [WSL2 with Ubuntu](https://canonical-ubuntu-wsl.readthedocs-hosted.com/en/latest/), though it’s not officially tested for this training.
- **Windows:** Consider using [WSL2 with Ubuntu](https://documentation.ubuntu.com/wsl/en/latest/), though it’s not officially tested for this training.

### 2. **Code Editor**

Expand Down Expand Up @@ -131,9 +131,9 @@ You can also configure settings for Docker Desktop.
Under {guilabel}`Prefences > Resources > Advanced`, you can configure appropriate settings for virtual disk limit and memory.

```{seealso}
- [Change Docker Desktop settings on Mac](https://docs.docker.com/desktop/settings/mac/#advanced)
- [Change Docker Desktop settings on Windows](https://docs.docker.com/desktop/settings/windows/#advanced)
- [Change Docker Desktop settings on Linux](https://docs.docker.com/desktop/settings/linux/#advanced)
- [Change Docker Desktop settings on Mac](https://docs.docker.com/desktop/settings/#advanced)
- [Change Docker Desktop settings on Windows](https://docs.docker.com/desktop/settings/#advanced)
- [Change Docker Desktop settings on Linux](https://docs.docker.com/desktop/settings/#advanced)
```
#### Insufficient Docker virtual memory
Expand Down

0 comments on commit 1404dec

Please sign in to comment.