This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new fbd03f0 fix broken links
fbd03f0 is described below
commit fbd03f023cb6f821fe2a166fcafd850e3a9d018b
Author: Paul King <[email protected]>
AuthorDate: Thu Jan 30 21:31:01 2025 +1000
fix broken links
---
site/src/site/pages/support.groovy | 2 +-
site/src/site/sitemap-dev.groovy | 2 +-
site/src/site/sitemap-user.groovy | 6 +++---
site/src/site/wiki/GEP-13.adoc | 6 +++---
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/site/src/site/pages/support.groovy
b/site/src/site/pages/support.groovy
index 76d066b..a09fc4a 100644
--- a/site/src/site/pages/support.groovy
+++ b/site/src/site/pages/support.groovy
@@ -18,7 +18,7 @@ layout 'layouts/main.groovy', true,
p 'There are numerous ways to get help with
Groovy: '
ul {
li "discuss language usage or direction
with other Groovy users and developers through the ${$a(href:
'mailing-lists.html', 'mailing-lists')} - this is the place for all official
discussions"
- li "discuss matters on ${$a(href:
'https://wwww.groovycommunity.com/', 'Slack')}; it's run by Groovy enthusiasts
in the community for casual conversations and Q&A"
+ li "discuss matters on ${$a(href:
'https://www.groovycommunity.com/', 'Slack')}; it's run by Groovy enthusiasts
in the community for casual conversations and Q&A"
li "ask a question on ${$a(href:
'https://stackoverflow.com/questions/tagged/groovy', 'Stack Overflow')}; these
are answered by Groovy enthusiasts in the community"
li "find known issues (or create new ones)
in our ${$a(href: 'reporting-issues.html', 'bug tracker')}"
li "attend upcoming ${$a(href:
'events.html', 'events and conferences')} to learn more about Groovy and to
share your experience with others"
diff --git a/site/src/site/sitemap-dev.groovy b/site/src/site/sitemap-dev.groovy
index add2eed..fabe6ad 100644
--- a/site/src/site/sitemap-dev.groovy
+++ b/site/src/site/sitemap-dev.groovy
@@ -51,7 +51,7 @@ menu {
item 'Source code on GitHub',
'https://github.com/apache/groovy', 'fa-github'
item 'Report issues in Jira',
"${userSiteBase}reporting-issues.html", 'fa-bug'
item 'Stack Overflow questions',
'http://stackoverflow.com/questions/tagged/groovy', 'fa-stack-overflow'
- item 'Slack Community',
'http://wwww.groovycommunity.com/', 'fa-slack'
+ item 'Slack Community', 'http://www.groovycommunity.com/',
'fa-slack'
}
}
diff --git a/site/src/site/sitemap-user.groovy
b/site/src/site/sitemap-user.groovy
index fbb1cae..2b465ac 100644
--- a/site/src/site/sitemap-user.groovy
+++ b/site/src/site/sitemap-user.groovy
@@ -49,7 +49,7 @@ menu {
item 'Source code on GitHub',
'https://github.com/apache/groovy', 'fa-github'
item 'Report issues in Jira', 'reporting-issues.html',
'fa-bug'
item 'Stack Overflow questions',
'http://stackoverflow.com/questions/tagged/groovy', 'fa-stack-overflow'
- item 'Slack Community',
'http://wwww.groovycommunity.com/', 'fa-slack'
+ item 'Slack Community',
'http://www.groovycommunity.com/', 'fa-slack'
}
}
@@ -271,7 +271,7 @@ books {
book('Programming Groovy 2') {
authors 'Venkat Subramaniam'
cover 'img/books/vslg2.jpg'
- url 'http://pragprog.com/book/vslg2/programming-groovy-2'
+ url 'https://pragprog.com/titles/vslg2/programming-groovy-2/'
description 'Dynamic productivity for the Java developer'
}
@@ -377,7 +377,7 @@ usergroups {
// South-America
userGroup('Grails Brasil - Groovy and Grails users group of Brazil') {
location 'South-America/Brazil'
- url 'http://www.grailsbrasil.com.br'
+ url 'https://www.facebook.com/groups/grails.brasil/'
}
userGroup('Brazil Groovy and Grails Meetup') {
location 'South-America/Brazil'
diff --git a/site/src/site/wiki/GEP-13.adoc b/site/src/site/wiki/GEP-13.adoc
index f96d333..4e2079f 100644
--- a/site/src/site/wiki/GEP-13.adoc
+++ b/site/src/site/wiki/GEP-13.adoc
@@ -100,9 +100,9 @@ and not all types are exhaustively covered.
== References and useful links
-* https://openjdk.java.net/jeps/360[JEP 360: Sealed Classes (Preview)]
-* https://openjdk.java.net/jeps/397[JEP 397: Sealed Classes (Second Preview)]
-* https://openjdk.java.net/jeps/409[JEP 409: Sealed Classes]
+* https://openjdk.org/jeps/360[JEP 360: Sealed Classes (Preview)]
+* https://openjdk.org/jeps/397[JEP 397: Sealed Classes (Second Preview)]
+* https://openjdk.org/jeps/409[JEP 409: Sealed Classes]
* https://kotlinlang.org/docs/sealed-classes.html[Sealed Classes] in Kotlin
* https://github.com/scala/improvement-proposals/pull/43[Sealed Types] in
Scala (withdrawn)