Author: buildbot
Date: Sat May  3 10:07:45 2014
New Revision: 907897

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_droplist.js

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat May  3 10:07:45 2014
@@ -1 +1 @@
-1592168
+1592169

Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat May  3 10:07:45 2014
@@ -1 +1 @@
-1592168
+1592169

Modified: 
websites/staging/ooo-site/trunk/content/download/test/download_droplist.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/download/test/download_droplist.js 
(original)
+++ websites/staging/ooo-site/trunk/content/download/test/download_droplist.js 
Sat May  3 10:07:45 2014
@@ -50,7 +50,7 @@ function initVars() {
        RELEASE_MATRIX_PLATFORM_POS_LP          = 0;     // The position of the 
platform in the release matrix array
        RELEASE_MATRIX_PLATFORM                 = "";    // The platform in the 
release matrix array
        RELEASE_MATRIX_LANG                     = "";    // The language 
specific data depending on LANG_ISO
-       VERSION_ALT                             = "";    // The selected 
version from drop-down-box
+       VERSION_SEL                             = "";    // The selected 
version from drop-down-box
        FILENAME_FULL                           = "";    // The complete 
filename of the download URL (for full installation)
        FILENAME_LP                             = "";    // The complete 
filename of the download URL (for language pack)
        FILESIZE_FULL                           = 0;     // The filesize of the 
download file (for full installation)
@@ -88,7 +88,7 @@ function alertDbg( function_name ) {
        + "UI_PLATFORM: "                       + "\t\t\t\t\t"          + 
UI_PLATFORM                           + "\n"
        + "URL_PLATFORM: "                      + "\t\t\t\t\t"          + 
URL_PLATFORM                          + "\n"
        + "OLD_PLATFORM: "                      + "\t\t\t\t"            + 
OLD_PLATFORM                          + "\n"
-       + "VERSION_ALT: "                       + "\t\t\t\t\t"          + 
VERSION_ALT                           + "\n"
+       + "VERSION_SEL: "                       + "\t\t\t\t\t"          + 
VERSION_SEL                           + "\n"
        + "FILENAME_FULL: "                     + "\t\t\t\t"            + 
FILENAME_FULL                         + "\n"
        + "FILENAME_LP: "                       + "\t\t\t\t\t"          + 
FILENAME_LP                           + "\n"
        + "FILESIZE_FULL: "                     + "\t\t\t\t\t"          + 
FILESIZE_FULL                         + "\n"
@@ -339,13 +339,13 @@ function getVerSel() {
 
        // If one of the first 2 <select> elements was chosen, let the user 
chose again.
        if ( ver_value == "e1" || ver_value == "e2" ) {
-               VERSION_ALT = "";
+               VERSION_SEL = "";
                return;
        }
        // Search through the <select> element until the chosen version is 
found.
        for( i = 0; i < SEL_VER.length; i = i + 2 ) {
                if ( SEL_VER[ i ] == ver_value ) {
-                       VERSION_ALT = ver_value;
+                       VERSION_SEL = ver_value;
                        break;
                }
        }
@@ -621,7 +621,7 @@ function getLinkSel( rel_mode ) {
        getVerSel();
 
 //     if ( URL_PLATFORM == "" || LANG_ISO == "" ) {
-       if ( URL_PLATFORM == "" || LANG_ISO == "" || VERSION_ALT == "" ) {
+       if ( URL_PLATFORM == "" || LANG_ISO == "" || VERSION_SEL == "" ) {
                // When OS or language was not chosen, let the user choose 
again.
                // When OS, language or version was not chosen, let the user 
choose again.
 //             resetSel();
@@ -633,7 +633,7 @@ function getLinkSel( rel_mode ) {
        getFilename( VERSION );
 
 //     if ( URL_PLATFORM != "" && LANG_ISO != "" ) {
-       if ( URL_PLATFORM != "" && LANG_ISO != "" && VERSION_ALT != "" ) {
+       if ( URL_PLATFORM != "" && LANG_ISO != "" && VERSION_SEL != "" ) {
 
                if ( LANG_ISO != "" && RELEASE_MATRIX_PLATFORM_POS_FULL > -1 ) {
                        // If language and platform are recognized, assemble 
the filenames for download and checksums.
@@ -643,13 +643,13 @@ function getLinkSel( rel_mode ) {
                        LINK_LP                 = SOURCEFORGE_BASE_URL + 
LANG_ISO + "/" + FILENAME_LP   + "/download";
 
                        CHECKSUM_KEYS           = 
"https://people.apache.org/keys/group/openoffice.asc";;
-                       CHECKSUM_ASC_FULL       = APACHE_DIST_PREVIOUS_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_FULL + ".asc";
-                       CHECKSUM_MD5_FULL       = APACHE_DIST_PREVIOUS_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_FULL + ".md5";
-                       CHECKSUM_SHA256_FULL    = APACHE_DIST_PREVIOUS_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_FULL + ".sha256";
-
-                       CHECKSUM_ASC_LP         = APACHE_DIST_PREVIOUS_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_LP + ".asc";
-                       CHECKSUM_MD5_LP         = APACHE_DIST_PREVIOUS_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_LP + ".md5";
-                       CHECKSUM_SHA256_LP      = APACHE_DIST_PREVIOUS_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_LP + ".sha256";
+                       CHECKSUM_ASC_FULL       = APACHE_DIST_BASE_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_FULL + ".asc";
+                       CHECKSUM_MD5_FULL       = APACHE_DIST_BASE_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_FULL + ".md5";
+                       CHECKSUM_SHA256_FULL    = APACHE_DIST_BASE_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_FULL + ".sha256";
+
+                       CHECKSUM_ASC_LP         = APACHE_DIST_BASE_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_LP + ".asc";
+                       CHECKSUM_MD5_LP         = APACHE_DIST_BASE_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_LP + ".md5";
+                       CHECKSUM_SHA256_LP      = APACHE_DIST_BASE_URL + 
"/binaries/" + LANG_ISO + "/" + FILENAME_LP + ".sha256";
 
                        SOURCEFORGE             = true;
                        OTHER                   = false;


Reply via email to