Skip to content

Commit d768a83

Browse files
authored
Fix /5/ urls (plone#1463)
* temporary exclude broken/unsecure link from check
1 parent 7a56bae commit d768a83

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ For technical support for **Plone in general**, please ask a question on our [Co
5151

5252
[Training](https://github.com/plone/training) is a collection of different trainings, developed and created by the Plone Community.
5353

54-
For an HTML version, please browse to our [Training Website](https://training.plone.org/5/).
54+
For an HTML version, please browse to our [Training Website](https://training.plone.org/).
5555

5656

5757
## License

docs/backend/upgrading/version-specific-migration/p4x-to-p5x-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ The value you use for this CSS rule should identify one of the fontello icons in
448448

449449
It is not possible at this time to set an icon for your add-on package control panels without including CSS in your package.
450450

451-
For documentation on how to use it in your own add-ons see https://training.plone.org/5/mastering-plone-5/registry.html.
451+
For documentation on how to use it in your own add-ons see {doc}`training:mastering-plone-5/registry`.
452452

453453

454454
### Properties

docs/conf.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
r"http://127.0.0.1",
8080
r"http://yoursite",
8181
r"https://www.linode.com",
82+
r"https://vhs-ehrenamtsportal.de", # SSLError(SSLCertVerificationError
8283
r"https://github.com/orgs/plone/teams/developers", # requires auth
8384
r"https://github.com/plone/documentation/issues/new/choose", # requires auth
8485
# Ignore specific anchors
@@ -99,8 +100,10 @@
99100
r"^/_static/",
100101
]
101102
linkcheck_anchors = True
102-
linkcheck_timeout = 10
103-
linkcheck_retries = 2
103+
# linkcheck_timeout = 10
104+
# linkcheck_retries = 2
105+
linkcheck_timeout = 5
106+
linkcheck_retries = 1
104107

105108
# The suffix of source filenames.
106109
source_suffix = {
@@ -186,7 +189,7 @@
186189
intersphinx_mapping = {
187190
"plone": ("https://6.docs.plone.org/", None), # for imported packages
188191
"python": ("https://docs.python.org/3/", None),
189-
"training": ("https://training.plone.org/5/", None),
192+
"training": ("https://training.plone.org/", None),
190193
}
191194

192195

0 commit comments

Comments
 (0)