|
79 | 79 | # Ignore localhost
|
80 | 80 | linkcheck_ignore = [
|
81 | 81 | # Ignore local and example URLs
|
82 |
| - r"http://0.0.0.0", |
83 | 82 | r"http://127.0.0.1",
|
84 | 83 | r"http://localhost",
|
85 | 84 | r"http://yoursite",
|
|
89 | 88 | # Ignore pages that require authentication
|
90 | 89 | r"https://github.com/orgs/plone/teams/", # requires auth
|
91 | 90 | r"https://github.com/plone/documentation/issues/new", # requires auth
|
92 |
| - r"https://github.com/plone/volto/issues/new/choose", # requires auth |
93 |
| - r"https://opensource.org/", # requires auth |
94 | 91 | # Ignore github.com pages with anchors
|
95 | 92 | r"https://github.com/.*#.*",
|
96 |
| - # Ignore github.com searches |
97 |
| - r"https://github.com/search", |
98 |
| - # Ignore GitHub 429 Client Error: Too Many Requests for url |
99 |
| - r"https://github.com/collective/plone.app.locales/commits/master/", |
100 | 93 | # Ignore rate limiting by github.com
|
101 | 94 | r"https://github.com/plone/volto/issues",
|
102 | 95 | r"https://github.com/plone/volto/pull",
|
103 | 96 | # Ignore other specific anchors
|
104 | 97 | r"https://coveralls.io/repos/github/plone/plone.restapi/badge.svg\?branch=main", # plone.restapi
|
105 |
| - r"https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors#Identifying_the_issue", # volto |
106 |
| - r"https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-version-10-0", # volto |
| 98 | + r"https://hosted.weblate.org/accounts/profile/#notifications", |
107 | 99 | r"https://browsersl.ist/#", # volto
|
108 | 100 | # Ignore unreliable sites
|
109 |
| - r"https://web.archive.org/", |
110 |
| - r"https://www.gnu.org/", # Consider removal when upgrading Sphinx |
111 |
| - r"http://z3c.pt", # fluke where Sphinx interprets this as a URL |
| 101 | + r"https://.*.gnu.org/", |
| 102 | + # fluke where Sphinx interprets this as a URL |
| 103 | + r"http://z3c.pt", |
112 | 104 | ]
|
113 | 105 | linkcheck_allowed_redirects = {
|
114 | 106 | # All HTTP redirections from the source URI to the canonical URI will be treated as "working".
|
|
0 commit comments