This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git


The following commit(s) were added to refs/heads/master by this push:
     new 3e576c5e Replace legacy markmail links with archive.org equivalents to 
avoid broken links #261
3e576c5e is described below

commit 3e576c5ef05485baad30926b114f0b09faab266a
Author: Paul King <[email protected]>
AuthorDate: Fri Feb 21 19:30:52 2025 +1000

    Replace legacy markmail links with archive.org equivalents to avoid broken 
links #261
---
 RELEASING.md                                      | 2 +-
 doc/manual/src/docs/asciidoc/021-driver.adoc      | 2 +-
 doc/site/site.gradle                              | 2 ++
 doc/site/src/test/groovy/geb/LinkCrawlSpec.groovy | 4 ++--
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/RELEASING.md b/RELEASING.md
index c2c7adfa..7e614ccb 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -46,4 +46,4 @@ limitations under the License.
        * Find all unresolved issues in the tracker that have the fix version 
set to the recently released version and bulk edit them to have the fix version 
set to the next version.
        * Find the recently released milestone, change the version number if 
it's different from the one that was released and close it.
 1. Wait for the build of the next version to pass and the site including 
manual for the released version to be published.
-1. Send an email to the mailing list, you can use [this 
one](http://markmail.org/message/j35koyww35lh4mxk) as a template. Please 
mention significant breaking changes if there are any.
+1. Send an email to the mailing list, you can use [this 
one](https://web.archive.org/web/20220822074356/https://groups.google.com/g/geb-user/c/VmqpY4Z6JrY)
 as a template. Please mention significant breaking changes if there are any.
diff --git a/doc/manual/src/docs/asciidoc/021-driver.adoc 
b/doc/manual/src/docs/asciidoc/021-driver.adoc
index eb83b6f8..912f38b9 100644
--- a/doc/manual/src/docs/asciidoc/021-driver.adoc
+++ b/doc/manual/src/docs/asciidoc/021-driver.adoc
@@ -78,7 +78,7 @@ 
include::{snippets-dir}/driver/HtmlUnitRefreshHandlerSpec.groovy[tag=changing_ha
 ----
 <1> From here on refresh meta tag value will be respected.
 
-See link:http://markmail.org/thread/bu3g56oxz2uqzq43[this mailing list thread] 
for details.
+See 
link:https://web.archive.org/web/20120211213811/http://markmail.org/thread/bu3g56oxz2uqzq43[this
 mailing list thread] for details.
 
 [discrete]
 ==== Configuring logging
diff --git a/doc/site/site.gradle b/doc/site/site.gradle
index eeefcc3d..7ee3a36e 100644
--- a/doc/site/site.gradle
+++ b/doc/site/site.gradle
@@ -116,6 +116,8 @@ tasks.register("replaceAnalyticsWithMatomo") {
                     '../../css/prettify.min.css')
                 html = 
html.replace('https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js',
                     '../../js/prettify.min.js')
+                html = 
html.replace('http://markmail.org/thread/bu3g56oxz2uqzq43',
+                    
'https://web.archive.org/web/20120211213811/http://markmail.org/thread/bu3g56oxz2uqzq43')
                 file.text = html
             }
         }
diff --git a/doc/site/src/test/groovy/geb/LinkCrawlSpec.groovy 
b/doc/site/src/test/groovy/geb/LinkCrawlSpec.groovy
index cb813e43..3c7d94aa 100644
--- a/doc/site/src/test/groovy/geb/LinkCrawlSpec.groovy
+++ b/doc/site/src/test/groovy/geb/LinkCrawlSpec.groovy
@@ -35,10 +35,10 @@ class LinkCrawlSpec extends Specification {
         given:
         def aut = ApplicationContext.run(EmbeddedServer)
 
-        def allowBroken = ["https://travis-ci.org";, "http://markmail.org";, 
"https://circleci.com";, "https://saucelabs.com";, "https://wiki.saucelabs.com";, 
"http://ldaley.com";]
+        def allowBroken = ["https://travis-ci.org";, "https://circleci.com";, 
"https://saucelabs.com";, "https://wiki.saucelabs.com";, "http://ldaley.com";]
 
         String startingUrl = "http://localhost:${aut.port}/";
-        Set<String> knowBadHosts = ["markmail.org", "ldaley.com"] as 
Set<String>
+        Set<String> knowBadHosts = ["ldaley.com"] as Set<String>
         def crawler = new Crawler(startingUrl, knowBadHosts) {
             boolean shouldUseHeadRequest(Link url) {
                 !(url.uri.host in ["blog.proxerd.pl", "search.maven.org"]) && 
super.shouldUseHeadRequest(url)

Reply via email to