You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2016/12/20 18:59:14 UTC

[1/4] incubator-guacamole-website git commit: Track download statistics using Google Analytics.

Repository: incubator-guacamole-website
Updated Branches:
  refs/heads/master 88b55745c -> d5a14b476


Track download statistics using Google Analytics.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/commit/81564e16
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/tree/81564e16
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/diff/81564e16

Branch: refs/heads/master
Commit: 81564e1693ca76e77dfe339ee3775b278e90fc37
Parents: 88b5574
Author: Michael Jumper <mj...@apache.org>
Authored: Mon Dec 19 23:15:05 2016 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Mon Dec 19 23:15:05 2016 -0800

----------------------------------------------------------------------
 _includes/download-list.html        |  8 +++++++-
 _includes/legacy-download-list.html | 16 ++++++++++++++++
 _layouts/legacy-release.html        |  6 +++---
 3 files changed, 26 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/81564e16/_includes/download-list.html
----------------------------------------------------------------------
diff --git a/_includes/download-list.html b/_includes/download-list.html
index 4dc0764..fd286bb 100644
--- a/_includes/download-list.html
+++ b/_includes/download-list.html
@@ -4,7 +4,13 @@
             <tr>
                 {% assign mirror = include.artifact-root | append: include.path %}
                 {% assign dist = include.checksum-root | append: include.path %}
-                <td><a href="{{ mirror | append: file }}">{{ file | split: "/" | last }}</a></td>
+                <td><a href="{{ mirror | append: file }}"
+                       onclick="ga('send', 'event', {
+                           eventCategory : 'Download',
+                           eventAction   : 'click',
+                           eventLabel    : '{{ file }}',
+                           transport     : 'beacon'
+                       })">{{ file | split: "/" | last }}</a></td>
                 <td>[ <a href="{{ dist | append: file }}.md5">MD5</a> ]</td>
                 <td>[ <a href="{{ dist | append: file }}.sha">SHA</a> ]</td>
                 <td>[ <a href="{{ dist | append: file }}.asc">PGP</a> ]</td>

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/81564e16/_includes/legacy-download-list.html
----------------------------------------------------------------------
diff --git a/_includes/legacy-download-list.html b/_includes/legacy-download-list.html
new file mode 100644
index 0000000..bf46438
--- /dev/null
+++ b/_includes/legacy-download-list.html
@@ -0,0 +1,16 @@
+{% if include.entries != empty %}
+    {% if include.title %}
+        <h2>{{ include.title }}</h2>
+    {% endif %}
+    <ul>
+        {% for entry in include.entries %}
+            <li><a href="{{ entry[1] | prepend: site.baseurl }}"
+                   onclick="ga('send', 'event', {
+                       eventCategory : 'Download',
+                       eventAction   : 'click',
+                       eventLabel    : '{{ entry[0] }}',
+                       transport     : 'beacon'
+                   })">{{ entry[0] }}</a></li>
+        {% endfor %}
+    </ul>
+{% endif %}

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/81564e16/_layouts/legacy-release.html
----------------------------------------------------------------------
diff --git a/_layouts/legacy-release.html b/_layouts/legacy-release.html
index a0b2bcd..4899371 100644
--- a/_layouts/legacy-release.html
+++ b/_layouts/legacy-release.html
@@ -13,17 +13,17 @@ permalink: /release/release-notes-:title
 <div id="links">
 
     <!-- Compatible extensions -->
-    {% include link-list.html
+    {% include legacy-download-list.html
         title="Compatible extensions"
         entries=page.extensions %}
 
     <!-- Binary .war -->
-    {% include link-list.html
+    {% include legacy-download-list.html
         title="Web application (.war)"
         entries=page.binary-war %}
 
     <!-- Source archives -->
-    {% include link-list.html
+    {% include legacy-download-list.html
         title="Source"
         entries=page.source-archives %}
 


[2/4] incubator-guacamole-website git commit: Switch to direct URL for legacy SourceForge downloads.

Posted by jm...@apache.org.
Switch to direct URL for legacy SourceForge downloads.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/commit/384d6bbf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/tree/384d6bbf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/diff/384d6bbf

Branch: refs/heads/master
Commit: 384d6bbf7c7175665e9fd92ca7f78cc59f6ad237
Parents: 81564e1
Author: Michael Jumper <mj...@apache.org>
Authored: Mon Dec 19 23:28:09 2016 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Mon Dec 19 23:28:09 2016 -0800

----------------------------------------------------------------------
 _legacy-releases/0.8.3.md | 12 ++++++------
 _legacy-releases/0.8.4.md | 12 ++++++------
 _legacy-releases/0.9.0.md | 12 ++++++------
 _legacy-releases/0.9.1.md | 12 ++++++------
 _legacy-releases/0.9.2.md | 12 ++++++------
 _legacy-releases/0.9.3.md | 12 ++++++------
 _legacy-releases/0.9.4.md | 12 ++++++------
 _legacy-releases/0.9.5.md | 12 ++++++------
 _legacy-releases/0.9.6.md | 12 ++++++------
 _legacy-releases/0.9.7.md | 12 ++++++------
 _legacy-releases/0.9.8.md | 12 ++++++------
 _legacy-releases/0.9.9.md | 12 ++++++------
 12 files changed, 72 insertions(+), 72 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.8.3.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.8.3.md b/_legacy-releases/0.8.3.md
index 7bb69eb..6bfc319 100644
--- a/_legacy-releases/0.8.3.md
+++ b/_legacy-releases/0.8.3.md
@@ -6,16 +6,16 @@ summary: >
     support.
 
 binary-war:
-    "guacamole-0.8.3.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.8.3.war/download"
+    "guacamole-0.8.3.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.8.3.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.8.0.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.8.2.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.8.0.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.8.0.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.8.2.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.8.0.tar.gz"
 
 source-archives:
-    "guacamole-client-0.8.3.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.8.3.tar.gz/download"
-    "guacamole-server-0.8.3.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.8.3.tar.gz/download"
+    "guacamole-client-0.8.3.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.8.3.tar.gz"
+    "guacamole-server-0.8.3.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.8.3.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.8.3/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.8.4.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.8.4.md b/_legacy-releases/0.8.4.md
index 13de926..5ad8a1a 100644
--- a/_legacy-releases/0.8.4.md
+++ b/_legacy-releases/0.8.4.md
@@ -5,16 +5,16 @@ summary: >
     MySQL auth fixes
 
 binary-war:
-    "guacamole-0.8.4.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.8.4.war/download"
+    "guacamole-0.8.4.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.8.4.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.8.0.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.8.4.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.8.0.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.8.0.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.8.4.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.8.0.tar.gz"
 
 source-archives:
-    "guacamole-client-0.8.4.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.8.4.tar.gz/download"
-    "guacamole-server-0.8.4.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.8.4.tar.gz/download"
+    "guacamole-client-0.8.4.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.8.4.tar.gz"
+    "guacamole-server-0.8.4.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.8.4.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.8.4/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.0.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.0.md b/_legacy-releases/0.9.0.md
index 753df2b..32d1538 100644
--- a/_legacy-releases/0.9.0.md
+++ b/_legacy-releases/0.9.0.md
@@ -6,16 +6,16 @@ summary: >
     error handling.
 
 binary-war:
-    "guacamole-0.9.0.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.0.war/download"
+    "guacamole-0.9.0.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.0.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.0.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.9.0.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.0.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.0.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.9.0.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.0.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.0.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.0.tar.gz/download"
-    "guacamole-server-0.9.0.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.0.tar.gz/download"
+    "guacamole-client-0.9.0.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.0.tar.gz"
+    "guacamole-server-0.9.0.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.0.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.0/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.1.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.1.md b/_legacy-releases/0.9.1.md
index c8140f9..9966d83 100644
--- a/_legacy-releases/0.9.1.md
+++ b/_legacy-releases/0.9.1.md
@@ -6,16 +6,16 @@ summary: >
     auth fixes
 
 binary-war:
-    "guacamole-0.9.1.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.1.war/download"
+    "guacamole-0.9.1.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.1.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.0.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.9.1.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.0.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.0.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.9.1.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.0.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.1.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.1.tar.gz/download"
-    "guacamole-server-0.9.1.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.1.tar.gz/download"
+    "guacamole-client-0.9.1.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.1.tar.gz"
+    "guacamole-server-0.9.1.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.1.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.1/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.2.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.2.md b/_legacy-releases/0.9.2.md
index 8952e1f..3f979b5 100644
--- a/_legacy-releases/0.9.2.md
+++ b/_legacy-releases/0.9.2.md
@@ -6,16 +6,16 @@ summary: >
     bug fixes.
 
 binary-war:
-    "guacamole-0.9.2.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.2.war/download"
+    "guacamole-0.9.2.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.2.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.2.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.9.2.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.2.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.2.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.9.2.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.2.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.2.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.2.tar.gz/download"
-    "guacamole-server-0.9.2.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.2.tar.gz/download"
+    "guacamole-client-0.9.2.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.2.tar.gz"
+    "guacamole-server-0.9.2.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.2.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.2/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.3.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.3.md b/_legacy-releases/0.9.3.md
index 6e4342a..de6f04c 100644
--- a/_legacy-releases/0.9.3.md
+++ b/_legacy-releases/0.9.3.md
@@ -6,16 +6,16 @@ summary: >
     codes, bug fixes.
 
 binary-war:
-    "guacamole-0.9.3.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.3.war/download"
+    "guacamole-0.9.3.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.3.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.3.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.9.3.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.3.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.3.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.9.3.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.3.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.3.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.3.tar.gz/download"
-    "guacamole-server-0.9.3.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.3.tar.gz/download"
+    "guacamole-client-0.9.3.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.3.tar.gz"
+    "guacamole-server-0.9.3.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.3.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.3/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.4.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.4.md b/_legacy-releases/0.9.4.md
index 664e499..6cbb2fb 100644
--- a/_legacy-releases/0.9.4.md
+++ b/_legacy-releases/0.9.4.md
@@ -6,16 +6,16 @@ summary: >
     simultaneous connections.
 
 binary-war:
-    "guacamole-0.9.4.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.4.war/download"
+    "guacamole-0.9.4.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.4.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.4.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.9.4.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.4.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.4.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.9.4.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.4.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.4.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.4.tar.gz/download"
-    "guacamole-server-0.9.4.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.4.tar.gz/download"
+    "guacamole-client-0.9.4.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.4.tar.gz"
+    "guacamole-server-0.9.4.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.4.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.4/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.5.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.5.md b/_legacy-releases/0.9.5.md
index 5f14ee4..7124f09 100644
--- a/_legacy-releases/0.9.5.md
+++ b/_legacy-releases/0.9.5.md
@@ -6,16 +6,16 @@ summary: >
     SSH and telnet.
 
 binary-war:
-    "guacamole-0.9.5.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.5.war/download"
+    "guacamole-0.9.5.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.5.war"
 
 extensions:
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.5.tar.gz/download"
-    "MySQL Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-mysql-0.9.5.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.5.tar.gz/download"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.5.tar.gz"
+    "MySQL Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-0.9.5.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.5.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.5.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.5.tar.gz/download"
-    "guacamole-server-0.9.5.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.5.tar.gz/download"
+    "guacamole-client-0.9.5.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.5.tar.gz"
+    "guacamole-server-0.9.5.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.5.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.5/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.6.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.6.md b/_legacy-releases/0.9.6.md
index 875aba8..d4c6962 100644
--- a/_legacy-releases/0.9.6.md
+++ b/_legacy-releases/0.9.6.md
@@ -6,16 +6,16 @@ summary: >
     management.
 
 binary-war:
-    "guacamole-0.9.6.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.6.war/download"
+    "guacamole-0.9.6.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.6.war"
 
 extensions:
-    "Database Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-jdbc-0.9.6.tar.gz/download"
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.6.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.6.tar.gz/download"
+    "Database Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-0.9.6.tar.gz"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.6.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.6.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.6.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.6.tar.gz/download"
-    "guacamole-server-0.9.6.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.6.tar.gz/download"
+    "guacamole-client-0.9.6.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.6.tar.gz"
+    "guacamole-server-0.9.6.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.6.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.6/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.7.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.7.md b/_legacy-releases/0.9.7.md
index 3b3c75e..4e6f2b1 100644
--- a/_legacy-releases/0.9.7.md
+++ b/_legacy-releases/0.9.7.md
@@ -6,16 +6,16 @@ summary: >
     translations, multiple bug fixes.
 
 binary-war:
-    "guacamole-0.9.7.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.7.war/download"
+    "guacamole-0.9.7.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.7.war"
 
 extensions:
-    "Database Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-jdbc-0.9.7.tar.gz/download"
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.7.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.7.tar.gz/download"
+    "Database Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-0.9.7.tar.gz"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.7.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.7.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.7.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.7.tar.gz/download"
-    "guacamole-server-0.9.7.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.7.tar.gz/download"
+    "guacamole-client-0.9.7.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.7.tar.gz"
+    "guacamole-server-0.9.7.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.7.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.7/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.8.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.8.md b/_legacy-releases/0.9.8.md
index 60e6b48..fc88463 100644
--- a/_legacy-releases/0.9.8.md
+++ b/_legacy-releases/0.9.8.md
@@ -6,16 +6,16 @@ summary: >
     performance flags.
 
 binary-war:
-    "guacamole-0.9.8.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.8.war/download"
+    "guacamole-0.9.8.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.8.war"
 
 extensions:
-    "Database Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-jdbc-0.9.8.tar.gz/download"
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.8.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.8.tar.gz/download"
+    "Database Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-0.9.8.tar.gz"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.8.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.8.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.8.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.8.tar.gz/download"
-    "guacamole-server-0.9.8.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.8.tar.gz/download"
+    "guacamole-client-0.9.8.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.8.tar.gz"
+    "guacamole-server-0.9.8.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.8.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.8/gug"

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/384d6bbf/_legacy-releases/0.9.9.md
----------------------------------------------------------------------
diff --git a/_legacy-releases/0.9.9.md b/_legacy-releases/0.9.9.md
index 366f951..8099765 100644
--- a/_legacy-releases/0.9.9.md
+++ b/_legacy-releases/0.9.9.md
@@ -6,16 +6,16 @@ summary: >
     filterable connection/user lists.
 
 binary-war:
-    "guacamole-0.9.9.war" : "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.9.war/download"
+    "guacamole-0.9.9.war" : "http://downloads.sourceforge.net/project/guacamole/current/binary/guacamole-0.9.9.war"
 
 extensions:
-    "Database Authentication"          : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-jdbc-0.9.9.tar.gz/download"
-    "LDAP Authentication"              : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-ldap-0.9.9.tar.gz/download"
-    "NoAuth (Disabled) Authentication" : "http://sourceforge.net/projects/guacamole/files/current/extensions/guacamole-auth-noauth-0.9.9.tar.gz/download"
+    "Database Authentication"          : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-0.9.9.tar.gz"
+    "LDAP Authentication"              : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-ldap-0.9.9.tar.gz"
+    "NoAuth (Disabled) Authentication" : "http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-noauth-0.9.9.tar.gz"
 
 source-archives:
-    "guacamole-client-0.9.9.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.9.tar.gz/download"
-    "guacamole-server-0.9.9.tar.gz" : "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.9.tar.gz/download"
+    "guacamole-client-0.9.9.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-client-0.9.9.tar.gz"
+    "guacamole-server-0.9.9.tar.gz" : "http://downloads.sourceforge.net/project/guacamole/current/source/guacamole-server-0.9.9.tar.gz"
 
 documentation:
     "Manual"              : "/doc/0.9.9/gug"


[4/4] incubator-guacamole-website git commit: Merge new Google Analytics tracking for release downloads.

Posted by jm...@apache.org.
Merge new Google Analytics tracking for release downloads.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/commit/d5a14b47
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/tree/d5a14b47
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/diff/d5a14b47

Branch: refs/heads/master
Commit: d5a14b476b012d414ea6d6e9328e33425f595841
Parents: 88b5574 dc4ac2a
Author: James Muehlner <ja...@guac-dev.org>
Authored: Tue Dec 20 10:58:32 2016 -0800
Committer: James Muehlner <ja...@guac-dev.org>
Committed: Tue Dec 20 10:58:32 2016 -0800

----------------------------------------------------------------------
 _includes/download-list.html        |  9 ++++++++-
 _includes/legacy-download-list.html | 16 ++++++++++++++++
 _layouts/legacy-release.html        |  6 +++---
 _legacy-releases/0.8.3.md           | 12 ++++++------
 _legacy-releases/0.8.4.md           | 12 ++++++------
 _legacy-releases/0.9.0.md           | 12 ++++++------
 _legacy-releases/0.9.1.md           | 12 ++++++------
 _legacy-releases/0.9.2.md           | 12 ++++++------
 _legacy-releases/0.9.3.md           | 12 ++++++------
 _legacy-releases/0.9.4.md           | 12 ++++++------
 _legacy-releases/0.9.5.md           | 12 ++++++------
 _legacy-releases/0.9.6.md           | 12 ++++++------
 _legacy-releases/0.9.7.md           | 12 ++++++------
 _legacy-releases/0.9.8.md           | 12 ++++++------
 _legacy-releases/0.9.9.md           | 12 ++++++------
 15 files changed, 99 insertions(+), 76 deletions(-)
----------------------------------------------------------------------



[3/4] incubator-guacamole-website git commit: Include only the basename of the file in the event label.

Posted by jm...@apache.org.
Include only the basename of the file in the event label.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/commit/dc4ac2a8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/tree/dc4ac2a8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/diff/dc4ac2a8

Branch: refs/heads/master
Commit: dc4ac2a8a7ce3054af9ae0f2bc1fd0b23eb5524d
Parents: 384d6bb
Author: Michael Jumper <mj...@apache.org>
Authored: Mon Dec 19 23:35:43 2016 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Mon Dec 19 23:35:43 2016 -0800

----------------------------------------------------------------------
 _includes/download-list.html        | 5 +++--
 _includes/legacy-download-list.html | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/dc4ac2a8/_includes/download-list.html
----------------------------------------------------------------------
diff --git a/_includes/download-list.html b/_includes/download-list.html
index fd286bb..0413e3c 100644
--- a/_includes/download-list.html
+++ b/_includes/download-list.html
@@ -4,13 +4,14 @@
             <tr>
                 {% assign mirror = include.artifact-root | append: include.path %}
                 {% assign dist = include.checksum-root | append: include.path %}
+                {% assign basename = file | split: "/" | last %}
                 <td><a href="{{ mirror | append: file }}"
                        onclick="ga('send', 'event', {
                            eventCategory : 'Download',
                            eventAction   : 'click',
-                           eventLabel    : '{{ file }}',
+                           eventLabel    : '{{ basename }}',
                            transport     : 'beacon'
-                       })">{{ file | split: "/" | last }}</a></td>
+                       })">{{ basename }}</a></td>
                 <td>[ <a href="{{ dist | append: file }}.md5">MD5</a> ]</td>
                 <td>[ <a href="{{ dist | append: file }}.sha">SHA</a> ]</td>
                 <td>[ <a href="{{ dist | append: file }}.asc">PGP</a> ]</td>

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-website/blob/dc4ac2a8/_includes/legacy-download-list.html
----------------------------------------------------------------------
diff --git a/_includes/legacy-download-list.html b/_includes/legacy-download-list.html
index bf46438..e753ef2 100644
--- a/_includes/legacy-download-list.html
+++ b/_includes/legacy-download-list.html
@@ -8,7 +8,7 @@
                    onclick="ga('send', 'event', {
                        eventCategory : 'Download',
                        eventAction   : 'click',
-                       eventLabel    : '{{ entry[0] }}',
+                       eventLabel    : '{{ entry[1] | split: "/" | last }}',
                        transport     : 'beacon'
                    })">{{ entry[0] }}</a></li>
         {% endfor %}