You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by mf...@apache.org on 2013/03/12 15:39:35 UTC

svn commit: r1455552 - in /rave/site/trunk/content: data/releases.js data/releases.json downloads.mdtext

Author: mfranklin
Date: Tue Mar 12 14:39:34 2013
New Revision: 1455552

URL: http://svn.apache.org/r1455552
Log:
Fixed comma line ending in downloads

Added:
    rave/site/trunk/content/data/releases.js
      - copied unchanged from r1455551, rave/site/trunk/content/data/releases.json
Removed:
    rave/site/trunk/content/data/releases.json
Modified:
    rave/site/trunk/content/downloads.mdtext

Modified: rave/site/trunk/content/downloads.mdtext
URL: http://svn.apache.org/viewvc/rave/site/trunk/content/downloads.mdtext?rev=1455552&r1=1455551&r2=1455552&view=diff
==============================================================================
--- rave/site/trunk/content/downloads.mdtext (original)
+++ rave/site/trunk/content/downloads.mdtext Tue Mar 12 14:39:34 2013
@@ -63,22 +63,22 @@ All downloads can be verified using the 
    rave.downloads.getMirrorUrl =function(version, type) {
       switch(type) {
           case "SOURCE":
-             return "http://www.apache.org/dyn/closer.cgi/rave/sources/rave-project-" + version + "-source-release.zip",
+             return "http://www.apache.org/dyn/closer.cgi/rave/sources/rave-project-" + version + "-source-release.zip";
           case "TAR":
-             return "http://www.apache.org/dyn/closer.cgi/rave/binaries/apache-rave-" + version + "-bin.tar.gz",
+             return "http://www.apache.org/dyn/closer.cgi/rave/binaries/apache-rave-" + version + "-bin.tar.gz";
           case "ZIP":
-             return "http://www.apache.org/dyn/closer.cgi/rave/binaries/apache-rave-" + version + "-bin.zip"   
+             return "http://www.apache.org/dyn/closer.cgi/rave/binaries/apache-rave-" + version + "-bin.zip";   
        }
    }
 
    rave.downloads.getArchiveUrl = function(version, type) {
       switch(type) {
           case "SOURCE":
-             return "http://archive.apache.org/dist/rave/sources/rave-project-" + version + "-source-release.zip",
+             return "http://archive.apache.org/dist/rave/sources/rave-project-" + version + "-source-release.zip";
           case "TAR":
-             return "http://archive.apache.org/dist/rave/binaries/apache-rave-" + version + "-bin.tar.gz",
+             return "http://archive.apache.org/dist/rave/binaries/apache-rave-" + version + "-bin.tar.gz";
           case "ZIP":
-             return "http://archive.apache.org/dist/rave/binaries/apache-rave-" + version + "-bin.zip"   
+             return "http://archive.apache.org/dist/rave/binaries/apache-rave-" + version + "-bin.zip";   
        }
    }
 
@@ -117,7 +117,7 @@ All downloads can be verified using the 
    }
 </script>
 <script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.3/handlebars.min.js"></script>
-<script src="/data/releases.json"></script>
+<script src="/data/releases.js"></script>
 <script>
     if(typeof rave !== "undefined" && rave.initFunctions) {
        rave.initFunctions.push(rave.downloads.init);