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 2016/07/22 22:41:16 UTC

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

Author: buildbot
Date: Fri Jul 22 22:41:16 2016
New Revision: 993445

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/boxed_download.js

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Jul 22 22:41:16 2016
@@ -1 +1 @@
-1753839
+1753840

Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Jul 22 22:41:16 2016
@@ -1 +1 @@
-1753839
+1753840

Modified: websites/staging/ooo-site/trunk/content/download/test/boxed_download.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/download/test/boxed_download.js (original)
+++ websites/staging/ooo-site/trunk/content/download/test/boxed_download.js Fri Jul 22 22:41:16 2016
@@ -27,7 +27,7 @@ DL.createDownloadBox = function() {
 
     // Select drop-down boxes.
     + "<form name='download'>"
-      + "<select class='sel-os' id='os' name='os' ' onchange='DL.getLinkSelection()'"
+      + "<select class='sel-os' id='os' name='os' onchange='DL.getLinkSelection()'"
         + "title='" + l10n.dl_green_box_selectbox_os_title   + "'>"
       + "</select>"
       + "<select class='sel-language' id='language' name='language' onchange='DL.getLinkSelection()'"
@@ -119,6 +119,33 @@ DL.createDownloadBox = function() {
 }
 
 /*
+ * Get more developers box
+ * Show the clickable text for the "Get Involved" webpage
+ * @param:  None
+ * @return: None
+ */
+DL.createGetDevBox = function() {
+  document.write( "<div class='orange button' id='optionitem5' "
+    + "onclick='openItem(\"optionitem5\",\"" + l10n.dl_getdev_orange_box_text_href + "\"); return false;'>"
+    // No icon in the right corner of the box.
+    // + "<div class='<color>-icon'></div>"
+
+    // Headline.
+    + "<h2 title='" + l10n.dl_getdev_orange_box_headline_title + "'>"
+      + l10n.dl_getdev_orange_box_headline_text
+    + "</h2>"
+
+    // Box text.
+    + "<p style='margin-left: 5px; padding-bottom: 3%;'>"
+      + "<a href='" + l10n.dl_getdev_orange_box_text_href + "' title='" + l10n.dl_getdev_orange_box_text_title + "'>"
+        + l10n.dl_getdev_orange_box_text_text
+      + "</a>"
+    + "</p>"
+  + "</div>" );
+  return;
+}
+
+/*
  * Social network box
  * Show the clickable icons for the social networks
  * @param:  None
@@ -371,13 +398,13 @@ DL.createLogoSection = function() {
 
     // Sourceforge logo.
     + "<a href='" + l10n.dl_img_sourceforge_href + "' target='_blank' title='" + l10n.dl_img_sourceforge_title + "'>"
-      + "<img src='" + l10n.dl_img_sourceforge_src + "' width='160' height='34' alt='" + l10n.dl_img_sourceforge_alt + "' />"
+      + "<img class='sf_logo' src='" + l10n.dl_img_sourceforge_src + "' width='160' height='34' alt='" + l10n.dl_img_sourceforge_alt + "' />"
     + "</a>"
     + "<br /><br />"
 
     // W3C Validator logo.
     + "<a href='" + l10n.dl_img_w3c_href + "' target='_blank' title='" + l10n.dl_img_w3c_title + "'>"
-      + "<img src='" + l10n.dl_img_w3c_src + "' alt='" + l10n.dl_img_w3c_alt + "' />"
+      + "<img class='w3c_logo' src='" + l10n.dl_img_w3c_src + "' alt='" + l10n.dl_img_w3c_alt + "' />"
     + "</a>"
   + "</div>" );
   return;