You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2019/02/12 23:05:48 UTC

[groovy-website] branch asf-site updated (a080cf6 -> f119e5b)

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

paulk pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git.


    from a080cf6  Release 2.5.6: update sitemap
     new 70f67fe  remove g+ links (closes #6)
     new ace7c32  remove g+ links (closes #5)
     new 787ec5d  Fix 404 on "Improve this doc" button click (closes #4)
     new fb507dd  Remove GR8Conf US from events as it is cancelled
     new cfcc63a  Added extra line of text for Greach for better info and layout
     new f4332a3  Added DevNexus-2GM to Events (closes #3, closes #2)
     new f119e5b  add windows installer (closes #1)

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 site/src/site/assets/img/confs/devnexus-2gm.png | Bin 0 -> 4029 bytes
 site/src/site/includes/contribute-button.groovy |   4 +--
 site/src/site/sitemap-dev.groovy                |   2 --
 site/src/site/sitemap-user.groovy               |  33 +++++++++++-------------
 4 files changed, 17 insertions(+), 22 deletions(-)
 create mode 100644 site/src/site/assets/img/confs/devnexus-2gm.png


[groovy-website] 01/07: remove g+ links (closes #6)

Posted by pa...@apache.org.
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

commit 70f67fe3902bab1e46357839928179148a549bab
Author: Guillaume Laforge <gl...@gmail.com>
AuthorDate: Tue Feb 5 11:04:32 2019 +0100

    remove g+ links (closes #6)
---
 site/src/site/sitemap-dev.groovy | 2 --
 1 file changed, 2 deletions(-)

diff --git a/site/src/site/sitemap-dev.groovy b/site/src/site/sitemap-dev.groovy
index b009725..ef8a81c 100644
--- a/site/src/site/sitemap-dev.groovy
+++ b/site/src/site/sitemap-dev.groovy
@@ -49,8 +49,6 @@ menu {
         item 'Events and conferences',      "${userSiteBase}events.html",                       'fa-calendar'
         item 'Source code on GitHub',       'https://github.com/apache/groovy',                 'fa-github'
         item 'Report issues in Jira',       "${userSiteBase}reporting-issues.html",             'fa-bug'
-        item 'Google+ Groovy Page',         'https://google.com/+groovy',                       'fa-google-plus'
-        item 'Google+ Groovy Community',    'http://bit.ly/g-community',                        'fa-google-plus'
         item 'Stack Overflow questions',    'http://stackoverflow.com/questions/tagged/groovy', 'fa-stack-overflow'
         item 'Slack Community',             'http://groovycommunity.com/',                      'fa-slack'
     }


[groovy-website] 03/07: Fix 404 on "Improve this doc" button click (closes #4)

Posted by pa...@apache.org.
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

commit 787ec5d7746927c463423d4221bdf8fe9ae00185
Author: energister <en...@users.noreply.github.com>
AuthorDate: Mon Feb 4 22:10:19 2019 +0300

    Fix 404 on "Improve this doc" button click (closes #4)
---
 site/src/site/includes/contribute-button.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site/src/site/includes/contribute-button.groovy b/site/src/site/includes/contribute-button.groovy
index 41729e8..0cb4186 100644
--- a/site/src/site/includes/contribute-button.groovy
+++ b/site/src/site/includes/contribute-button.groovy
@@ -1,7 +1,7 @@
 div(id: 'contribute-btn') {
     button(type: 'button', class: 'btn btn-default',
-            onclick: "window.location.href=\"https://github.com/groovy/groovy-website/tree/master/site/src/site/pages/${currentPage}.groovy\"") {
+            onclick: "window.location.href=\"https://github.com/apache/groovy-website/tree/master/site/src/site/pages/${currentPage}.groovy\"") {
         i(class: 'fa fa-pencil-square-o') {}
         yield ' Improve this doc'
     }
-}
\ No newline at end of file
+}


[groovy-website] 02/07: remove g+ links (closes #5)

Posted by pa...@apache.org.
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

commit ace7c325f2dad8474cbd8922f2627370321675c4
Author: Guillaume Laforge <gl...@gmail.com>
AuthorDate: Tue Feb 5 11:08:15 2019 +0100

    remove g+ links (closes #5)
---
 site/src/site/sitemap-user.groovy | 2 --
 1 file changed, 2 deletions(-)

diff --git a/site/src/site/sitemap-user.groovy b/site/src/site/sitemap-user.groovy
index 17a43ac..76839e1 100644
--- a/site/src/site/sitemap-user.groovy
+++ b/site/src/site/sitemap-user.groovy
@@ -46,8 +46,6 @@ menu {
         item 'Events and conferences',      'events.html',                                      'fa-calendar'
         item 'Source code on GitHub',       'https://github.com/apache/groovy',                 'fa-github'
         item 'Report issues in Jira',       'reporting-issues.html',                            'fa-bug'
-        item 'Google+ Groovy Page',         'https://google.com/+groovy',                       'fa-google-plus'
-        item 'Google+ Groovy Community',    'http://bit.ly/g-community',                        'fa-google-plus'
         item 'Stack Overflow questions',    'http://stackoverflow.com/questions/tagged/groovy', 'fa-stack-overflow'
 	    item 'Slack Community',             'http://groovycommunity.com/',                      'fa-slack'
     }


[groovy-website] 06/07: Added DevNexus-2GM to Events (closes #3, closes #2)

Posted by pa...@apache.org.
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

commit f4332a3ed981f0b5486e69b299368da712992c28
Author: Jacob Aae Mikkelsen <gi...@grydeske.dk>
AuthorDate: Mon Feb 4 15:23:23 2019 +0100

    Added DevNexus-2GM to Events (closes #3, closes #2)
---
 site/src/site/assets/img/confs/devnexus-2gm.png | Bin 0 -> 4029 bytes
 site/src/site/sitemap-user.groovy               |  13 +++++++++++++
 2 files changed, 13 insertions(+)

diff --git a/site/src/site/assets/img/confs/devnexus-2gm.png b/site/src/site/assets/img/confs/devnexus-2gm.png
new file mode 100644
index 0000000..6f10f5b
Binary files /dev/null and b/site/src/site/assets/img/confs/devnexus-2gm.png differ
diff --git a/site/src/site/sitemap-user.groovy b/site/src/site/sitemap-user.groovy
index 3089e47..22ecc13 100644
--- a/site/src/site/sitemap-user.groovy
+++ b/site/src/site/sitemap-user.groovy
@@ -281,6 +281,19 @@ allEvents {
             </p>
         '''
     }
+    event('Devnexus-2GM') {
+        location 'Atlanta, GA, USA'
+        date 'Pre conference: March 4-5, Conference March 6-8'
+        url 'https://devnexus.com/2gm-home'
+        logo 'img/confs/devnexus-2gm.png'
+        description '''
+            <p>
+            For its 2019 conference, Devnexus has teamed up with the 2GM (Groovy, Grails, and Micronaut) communities, in furtherance of its mission, to promote and support open source values and technologies.
+            </p>
+            <p>
+            Pre-Conference Training Event: MICRONAUT FROM IOT TO GCP 
+            </p>'''
+    }
 }
 
 books {


[groovy-website] 04/07: Remove GR8Conf US from events as it is cancelled

Posted by pa...@apache.org.
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

commit fb507dda484324b414ce02e47fab15af50778463
Author: Jacob Aae Mikkelsen <ja...@cardlay.com>
AuthorDate: Mon Feb 4 14:48:43 2019 +0100

    Remove GR8Conf US from events as it is cancelled
---
 site/src/site/sitemap-user.groovy | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/site/src/site/sitemap-user.groovy b/site/src/site/sitemap-user.groovy
index 76839e1..90dbf33 100644
--- a/site/src/site/sitemap-user.groovy
+++ b/site/src/site/sitemap-user.groovy
@@ -277,19 +277,6 @@ allEvents {
             </p>
         '''
     }
-    event('GR8Conf US') {
-        location 'Minneapolis, MN, USA'
-        date 'July, 2019'
-        url 'http://gr8conf.us/'
-        logo 'img/confs/gr8confus.png'
-        description '''
-            <p>
-            GR8Conf US is the equivalent of GR8Conf EU, but yet different. It has its own organization and its own crew.
-            </p>
-            <p>
-            <p>The goal is the same. It is founded to spread the word about the fantastic Groovy technologies and community.
-            </p>'''
-    }
 }
 
 books {


[groovy-website] 07/07: add windows installer (closes #1)

Posted by pa...@apache.org.
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

commit f119e5b072eebfa51c94afa315a1f049d0f53ebc
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Feb 13 08:59:15 2019 +1000

    add windows installer (closes #1)
---
 site/src/site/sitemap-user.groovy | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/site/src/site/sitemap-user.groovy b/site/src/site/sitemap-user.groovy
index 22ecc13..105e212 100644
--- a/site/src/site/sitemap-user.groovy
+++ b/site/src/site/sitemap-user.groovy
@@ -167,12 +167,7 @@ downloads {
         }
         version('2.5.6') {
             stable true
-            //windowsInstaller 'https://dl.bintray.com/groovy/Distributions/groovy-2.5.6-installer.exe'
-        }
-        version('2.5.5') {
-            stable true
-            archive true
-            windowsInstaller 'https://dl.bintray.com/groovy/Distributions/groovy-2.5.5-installer.exe'
+            windowsInstaller 'https://dl.bintray.com/groovy/Distributions/groovy-2.5.6-installer.exe'
         }
     }
     distribution('Groovy 2.4') {


[groovy-website] 05/07: Added extra line of text for Greach for better info and layout

Posted by pa...@apache.org.
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

commit cfcc63a6be3ba846c52141354ab7da0906be0fda
Author: Jacob Aae Mikkelsen <gi...@grydeske.dk>
AuthorDate: Mon Feb 4 15:23:00 2019 +0100

    Added extra line of text for Greach for better info and layout
---
 site/src/site/sitemap-user.groovy | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/site/src/site/sitemap-user.groovy b/site/src/site/sitemap-user.groovy
index 90dbf33..3089e47 100644
--- a/site/src/site/sitemap-user.groovy
+++ b/site/src/site/sitemap-user.groovy
@@ -257,9 +257,13 @@ allEvents {
         date 'March 28 - 30, 2019'
         url 'http://greachconf.com'
         logo 'img/confs/greach.png'
-        description '<p>' +
-                'Android + JVM langs + JVM frameworks conference in Madrid, Spain with 100% English talks.' +
-                '</p>'
+        description '''<p>
+                Android + JVM langs + JVM frameworks conference in Madrid, Spain with 100% English talks.
+                </p>
+                <p>
+                Greach is a community conference intended for networking and collaboration in the developer community.
+
+                </p>'''
     }
     event('GR8Conf EU') {
         location 'Copenhagen, Denmark'