You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by bu...@apache.org on 2012/04/26 01:54:18 UTC

svn commit: r814502 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/download_new_dl.js

Author: buildbot
Date: Wed Apr 25 23:54:17 2012
New Revision: 814502

Log:
Staging update by buildbot for openofficeorg

Modified:
    websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
    websites/staging/ooo-site/trunk/content/   (props changed)
    websites/staging/ooo-site/trunk/content/download/test/download_new_dl.js

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Apr 25 23:54:17 2012
@@ -1 +1 @@
-1330605
+1330606

Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Apr 25 23:54:17 2012
@@ -1 +1 @@
-1330605
+1330606

Modified: websites/staging/ooo-site/trunk/content/download/test/download_new_dl.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/download/test/download_new_dl.js (original)
+++ websites/staging/ooo-site/trunk/content/download/test/download_new_dl.js Wed Apr 25 23:54:17 2012
@@ -18,6 +18,7 @@ function getMirrorHost() {
 		// If random value is lower than ratio
         	if ( randVal < MIRROR_RATIO ) {
 			mirrorHost = "Apache";
+			document.write ("Apache wins" + <br/>");
 			return MIRROR_APACHE_URL;
 		}
 	}
@@ -26,6 +27,7 @@ function getMirrorHost() {
 		// If random value is higher than ratio
         	if ( randVal > MIRROR_RATIO ) {
 			mirrorHost = "SourceForge";
+			document.write ("SourceForge wins" + "<br />");
 			return MIRROR_SOURCEFORGE_URL;
 		}
 	}