Author: buildbot
Date: Mon Aug 5 08:51:21 2013
New Revision: 872967
Log:
Staging update by buildbot for ooo-site
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.js
Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Aug 5 08:51:21 2013
@@ -1 +1 @@
-1510349
+1510388
Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Aug 5 08:51:21 2013
@@ -1 +1 @@
-1510349
+1510388
Modified: websites/staging/ooo-site/trunk/content/download/test/download.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/download/test/download.js (original)
+++ websites/staging/ooo-site/trunk/content/download/test/download.js Mon Aug
5 08:51:21 2013
@@ -19,7 +19,7 @@ var RELEASE_MATRIX_PLATFORM = "";
var UI_PLATFORM = "";
var URL_PLATFORM = "";
var FILENAME = "";
-var FILESIZE = "";
+var FILESIZE = 0;
var EXTENSION = "";
var CHECKSUM_KEYS = "";
var CHECKSUM_ASC = "";
@@ -257,8 +257,8 @@ function getPlatform() {
// Linux
if ( os.indexOf( "linux" ) != -1 ) {
- if ( os.indexOf( "x86" ) != -1 ) {
- UI_PLATFORM
= "Linux 32-bit (RPM)";
+ if ( os.indexOf( "x86" ) != -1 ||
+ os.indexOf( "i686" ) != -1 ) { UI_PLATFORM
= "Linux 32-bit (RPM)";
// UI_PLATFORM
= "Linux 32-bit (RPM/DEB ?)";
URL_PLATFORM
= "Linux_x86_install-rpm";
EXTENSION
= ".tar.gz";
@@ -269,7 +269,8 @@ function getPlatform() {
EXTENSION
= ".tar.gz";
}
}
- if ( os.indexOf( "_64" ) != -1 ) { UI_PLATFORM
= "Linux 64-bit (RPM)";
+ if ( os.indexOf( "_64" ) != -1 ||
+ os.indexOf( "-64" ) != -1 ) { UI_PLATFORM
= "Linux 64-bit (RPM)";
// UI_PLATFORM
= "Linux 64-bit (RPM/DEB ?)";
URL_PLATFORM
= "Linux_x86-64_install-rpm";
EXTENSION
= ".tar.gz";