Author: buildbot
Date: Sun Jun 29 17:26:43 2014
New Revision: 914347
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/xx/index.html
Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Jun 29 17:26:43 2014
@@ -1 +1 @@
-1606535
+1606540
Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Jun 29 17:26:43 2014
@@ -1 +1 @@
-1606535
+1606540
Modified: websites/staging/ooo-site/trunk/content/xx/index.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/xx/index.html (original)
+++ websites/staging/ooo-site/trunk/content/xx/index.html Sun Jun 29 17:26:43
2014
@@ -37,45 +37,53 @@
function showAlertbox( show ) {
// More see "http://html-color-codes.info/"
var l10n_alert_box_background_color = "#F5A9A9";
- // Maximum 86 characters.
- var l10n_alert_box_headline_text = "Important message";
- // Maximum 517 characters.
- var l10n_alert_box_text1_text = "This alert box is now within the
layout of the list items below."
+ // Make the whole alert box clickable with a link.
+ var l10n_alert_box_href = "index.html";
+ // Maximum 49 characters.
+ var l10n_alert_box_headline_text = "Headline text with max. 49
characters";
+ // Maximum 630 characters.
+ var l10n_alert_box_text_text = "Text with max. 630 characters."
+ + "<br /><br />"
+ + "This alert box is now within
the layout of the list items below."
+ "<br /><br />"
+ "The following link can be
added to point the user to more information or "
+ "to a solution. But the link
can also be left out. Then the link will not "
- + "be shown."
- // Maximum 517 characters.
- var l10n_alert_box_text2_text = "Dummy link";
- var l10n_alert_box_text2_href = "download/index.html";
-
+ + "be shown.";
// Show alert box or not?
if( show ) {
- // If no color value was set then use the default value.
+ // If no background color value was set then use the default value.
if( ! l10n_alert_box_background_color )
var l10n_alert_box_background_color = "#FFD9A7";
// Show alert box with defined background color.
- document.write( "<div id='alert_box' style='background: " +
l10n_alert_box_background_color + "'>" );
+ // Depending if link is available, make the whole DIV clickable or
not.
+ if( l10n_alert_box_href ) {
+ // Show the text with link and cursor as poiner.
+ document.write( "<div id='alert_box' style='background: " +
l10n_alert_box_background_color
+ + "; ' onclick='window.open(\"" + l10n_alert_box_href + "\",
\"_blank\"); return false;'>" );
+
+ // Show headline.
+ document.write( "<h2 style='cursor: pointer;'>" +
l10n_alert_box_headline_text + "</h2>" );
+
+ // Show text.
+ if( l10n_alert_box_text_text )
+ document.write( "<p style='cursor: pointer;'>" +
l10n_alert_box_text_text + "</p>" );
+
+ } else {
+ // Show the text without link and normal cursor.
+ document.write( "<div id='alert_box' style='background: " +
l10n_alert_box_background_color + "'>" );
+
// Show headline.
- document.write( "<h2>" + l10n_alert_box_headline_text + "</h2>" );
+ document.write( "<h2 style='cursor: default;'>" +
l10n_alert_box_headline_text + "</h2>" );
+
+ // Shoe text.
+ if( l10n_alert_box_text_text )
+ document.write( "<p style='cursor: default;'>" +
l10n_alert_box_text_text + "</p>" );
+ }
- // If text without link is available then show it.
- if( l10n_alert_box_text1_text )
- document.write( "<p>" + l10n_alert_box_text1_text + "</p>" );
-
- // If text with link is available then show it.
- if( l10n_alert_box_text2_text ) {
- document.write( "<p>"
- + "<a href='" + l10n_alert_box_text2_href + "'
target='_blank'>"
- + l10n_alert_box_text2_text
- + "</a>"
- + "</p>" );
- }
document.write( "</div>" ); // Alert box
}
}
-
</script>
<!--#include virtual="/google-analytics.js" -->