You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ma...@apache.org on 2014/09/07 12:42:04 UTC

svn commit: r1622998 - /openoffice/ooo-site/trunk/content/index_asfcon.html

Author: marcus
Date: Sun Sep  7 10:42:03 2014
New Revision: 1622998

URL: http://svn.apache.org/r1622998
Log:
Test to show the banner logo for the Apache Con

Added:
    openoffice/ooo-site/trunk/content/index_asfcon.html   (with props)

Added: openoffice/ooo-site/trunk/content/index_asfcon.html
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/index_asfcon.html?rev=1622998&view=auto
==============================================================================
--- openoffice/ooo-site/trunk/content/index_asfcon.html (added)
+++ openoffice/ooo-site/trunk/content/index_asfcon.html Sun Sep  7 10:42:03 2014
@@ -0,0 +1,459 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" />
+<head>
+    <meta name="description" content="The official home page of the Apache OpenOffice open source project, home of OpenOffice Writer, Calc, Impress, Draw and Base." />
+    <meta name="keywords" content="OpenOffice, Open Office, Apache OpenOffice, Apache Open Office, OpenOffice.org, Calc, Impress, Draw, Base, ODF, Open Document Format, free office editors" />
+    <meta name="google-site-verification" content="x1jl2cGum4kCvj0PgxjTy_pasCsLY_fBT7my88fpKD4" />
+    <meta name="p:domain_verify" content="bd1ba1fb9d25b0eb3d64891f89e9195e" /> 
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <link href="https://plus.google.com/+openoffice" rel="publisher" />
+    <title>Apache OpenOffice - The Free and Open Productivity Suite</title>
+    <script type="text/javascript" src="download/globalvars.js"></script>
+    <script type="text/javascript" src="msg_prop_l10n.js"></script>
+    <script type="text/javascript" src="download/languages.js"></script>
+    <script type="text/javascript" src="download/download.js"></script>
+    <style type="text/css">
+    /* <![CDATA[ */
+    /*-------------------- Exceptions on standard css -----------------------*/
+    @import "home.css";
+    @import "styles.css";
+    @import "exceptions.css";
+    /* ]]> */
+    </style>
+    <script>
+      function follow( platform ) {
+        _gaq.push( ['_trackEvent', 'social', 'followUs', platform] ); 
+
+        if ( platform == 'ApacheBlog' ) {
+          window.open( "https://blogs.apache.org/OOo/", "_blank" );
+        } else if ( platform == 'Facebook' ) {
+          window.open( "https://www.facebook.com/ApacheOO", "_blank" );
+        } else if ( platform == 'Twitter' ) {
+          window.open( "https://twitter.com/ApacheOO", "_blank" );
+        } else if ( platform == 'GooglePlus' ) {
+          window.open( "https://plus.google.com/+openoffice", "_blank" );
+        }
+      }
+
+      function showAlertBox() {
+	// The text is defined in "/msg_prop_l10n.js".
+
+	// Show alert box or not?
+	if( l10n.index_alert_box_show ) {
+		// If no background color value was set then use the default value.
+		if( ! l10n.index_alert_box_background_color || l10n.index_alert_box_background_color === "" )
+			l10n.index_alert_box_background_color = "#FFD9A7";
+
+		// Show alert box with defined background color.
+		// Depending if link is available, make the whole DIV clickable or not.
+		if( l10n.index_alert_box_href ) {
+			// Show the text with link and cursor as poiner.
+			document.write( "<div id='alert_box' style='background: "
+			+ l10n.index_alert_box_background_color
+			+ "; ' onclick='window.open( \"" + l10n.index_alert_box_href
+			+ "\", \"_blank\" ); return false;'>" );
+
+			// Show headline.
+			document.write( "<h2 style='cursor: pointer;'>"
+			+ l10n.index_alert_box_headline_text + "</h2>" );
+
+			// Show text.
+			if( l10n.index_alert_box_text_text ) {
+				document.write( "<p style='cursor: pointer;'>"
+				+ l10n.index_alert_box_text_text + "</p>" );
+			}
+		} else {
+			// Show the text without link and normal cursor.
+			document.write( "<div id='alert_box' style='background: "
+			+ l10n.index_alert_box_background_color + "'>" );
+
+			// Show headline.
+			document.write( "<h2 style='cursor: default;'>"
+			+ l10n.index_alert_box_headline_text + "</h2>" );
+
+			// Show text.
+			if( l10n.index_alert_box_text_text ) {
+				document.write( "<p style='cursor: default;'>"
+				+ l10n.index_alert_box_text_text + "</p>" );
+			}
+		}
+		document.write( "</div>" ); // Alert box
+	}
+      }
+
+      function setRedirect() {
+	// The text is defined in "/msg_prop_l10n.js".
+	DL.NL_LANG	= "";					// Set to empty as both variables ...
+	DL.LANG_SEL	= "";					// ... must not be used in following function.
+	var lang_iso	= DL.getLanguage();			// Get the language ISO code from browser guessed data.
+	var lang_mode	= "";					// Customized redirect mode.
+	var lang_text	= "";					// Customized message text that can be shown.
+	var link	= "";					// Override redirect mode.
+
+	// Add ECMA262-5 Array methods if not supported natively.
+	// To workaround that MSIE 8 and older do not support this function.
+	if( !( 'indexOf' in Array.prototype ) ) {
+		Array.prototype.indexOf= function( find, i ) {	// 'i' is an optional parameter.
+			if( i === undefined ) {
+				i = 0;
+			}
+			if( i < 0 ) {
+				i+= this.length;
+			}
+			if( i < 0 ) {
+				i = 0;
+			}
+			for( var n = this.length; i < n; i++ ) {
+				if( i in this && this[ i ] === find ) {
+					return i;
+				}
+			}
+			return -1;
+		};
+	}
+
+	// Fix for Portuguese (European) as they are named only "pt" without region code!
+	if( lang_iso === "pt-pt" || lang_iso === "pt-PT" ) {
+		lang_iso = "pt";
+	}
+
+	// Query if the browser language is one of the released languages.
+	// The array has 3 elements per language (defined in "/download/globalvars.js"
+	for( var i = 0, j = DL.SEL_LANG.length; i < j; i = i + 3 ) {
+	  // If the ISO code is found in the language array.
+	  if( DL.SEL_LANG[ i ] === lang_iso ) {
+	    // Query for the redirect method (defined in "/msg_prop_l10n.js", column 0).
+	    lang_mode	= l10n.index_redirect_text[ i / 3 * 2 ];
+	    lang_text	= l10n.index_redirect_text[ i / 3 * 2 + 1 ];
+	    break;
+	  }
+	}
+
+	// Convert the browser URL into a string.
+	link = String( document.location );
+
+	// Does the browser URL contain already a redirect mode?
+	// If yes, set the new redirect mode to override the customized mode.
+	if( link.indexOf( "hard" ) !== -1 ) {
+	    lang_mode = "hard";
+	} else if( link.indexOf( "soft" ) !== -1 ) {
+	    lang_mode = "soft";
+	} else if( link.indexOf( "none" ) !== -1 ) {
+	    lang_mode = "none";
+	}
+
+	switch( lang_mode ) {
+	  case "hard":
+	    // Do not show a message, just redirect. 
+	    window.open( "http://www.openoffice.org/" + lang_iso , "_self" );
+	    break;
+	  case "soft":
+	    // Show a message and redirect only on user's click.
+	    // Assign the message text (defined in "/msg_prop_l10n.js", array "l10n.index_redirect_text", column 1).
+	    document.write( "<div id='redirect_box'"
+	      + " onclick='window.open( \"http://www.openoffice.org/" + lang_iso + "\", \"_self\" ); return false;'>"
+	      + "<p>" + lang_text + "</p>"
+	    + "</div>" ); // redirect box
+	    break;
+	  case "none":
+	  default:
+	    // Do nothing and show nothing.
+	}
+
+	return;
+      }
+    </script>
+</head>
+
+<body>
+
+<!-- The text in the H1 tag is intentionally shown as not displayable, just to please accessibility tools like a screen reader. -->
+<h1 style="display: none;">Apache OpenOffice</h1>
+
+<!-- Space for some stuff, e.g., banner logos for events. -->
+<div style="margin: 15px 15px 15px 30px;">
+  <p>
+    <a href="http://apachecon.com/" target="_blank">
+      <img src="http://www.apache.org/ads/ApacheCon/2014-eu-234x60.png" alt="Apache Software Foundation" />
+    </a>
+  </p>
+</div>
+
+<div style="float: left; margin: -95px 0px 0px 300px;">
+  <p>
+    <a style="color: black; text-decoration: none;" href="http://events.linuxfoundation.org/events/apachecon-europe"
+    target="_blank">
+      ApacheCon Europe, 2014
+      <br />
+      Budapest, November 17th - 21st, 2014
+      <br />
+      Click to see main conference site for details and registration.
+    </a>
+  </p>
+</div>
+
+<div id="actionstatements">
+
+  <script type="text/javascript">
+  <!--
+  // Show alert box.
+  // Show important messages and announcements.
+  // Change to 'true' if you want to show the text that is defined in the variables above.
+  showAlertBox();
+
+  // Check if and how a redirect to the respective NL webpage should be done.
+  setRedirect();
+  //-->
+  </script>
+
+  <ul>
+    <li>
+      <hr />
+    </li>
+    <li>
+      <div class="action-info">
+        <div class="action-text action-link">
+          <a href="why/index.html">
+            <h2>I want to learn more about OpenOffice</h2>
+            <p>What is Apache OpenOffice? And why should I use it?</p>
+          </a>
+        </div>
+      </div>
+    </li>
+    <li>
+      <hr />
+    </li>
+  </ul>
+
+  <!-- Show the download link with currently available version number, loaded via JavaScript -->
+  <script type="text/javascript">
+  <!--
+  document.write( "<ul><li>"
+    + "<div class='action-download'>"
+      + "<div class='action-text action-link'>"
+        + "<a href='download/index.html'>"
+          + "<h2>I want to download Apache OpenOffice</h2>"
+          + "<p style='font-size: 1.0em; font-weight: bold;'>(Most recent release: " + DL.VERSION + ")</p>"
+          + "<p>Download Apache OpenOffice for free <b>(really!)</b> | "
+            + "<a href='https://blogs.apache.org/OOo/entry/with_apache_openoffice_you_get'"
+              + "title='Blog post: With Apache OpenOffice you get what you do not pay for' target='_blank'>"
+              + "Click here to get more information"
+            + "</a>."
+          + "</p>"
+        + "</a>"
+      + "</div>"
+    + "</div>"
+  + "</li></ul>" );
+  //-->
+  </script>
+
+  <!-- Show the download link, without version number -->
+  <noscript>
+    <div class="action-download">
+      <div class="action-text action-link">
+        <a href="download/index.html">
+          <h2>I want to download Apache OpenOffice</h2>
+          <p>Download Apache OpenOffice for free, or find out about other ways of getting it.</p>
+        </a>
+      </div>
+    </div>
+  </noscript>
+
+  <ul>
+    <li>
+      <hr />
+    </li>
+    <li>
+      <div class="action-help">
+        <div class="action-text action-link">
+          <a href="support/index.html">
+            <h2>I need help with my OpenOffice</h2>
+            <p>Help is at hand whenever you need it.</p>
+          </a>
+        </div>
+      </div>
+    </li>
+    <li>
+      <hr />
+    </li>
+    <li>
+      <div class="action-extend">
+        <div class="action-text action-link">
+          <a href="extensions/index.html">
+            <h2>I want to do more with my OpenOffice</h2>
+            <p>Extend Apache OpenOffice with additional functionality, templates and clipart.</p>
+          </a>
+        </div>
+      </div>
+    </li>
+    <li>
+      <hr />
+    </li>
+    <li>
+      <div class="action-participate">
+        <div class="action-text action-link">
+          <a href="http://openoffice.apache.org/get-involved.html">
+            <h2>I want to participate in OpenOffice</h2>
+            <p>Apache OpenOffice is made with help from people all over the world. Feel free to contribute!</p>
+          </a>
+        </div>
+      </div>
+    </li>
+    <li>
+      <hr />
+    </li>
+    <li>
+      <div class="action-social">
+        <div class="action-text action-link">
+          <a href="social/index.html" onclick="javascript:follow( 'SocialLink' );">
+            <h2>I want to stay in touch with OpenOffice</h2>
+            <p>Follow the progress of OpenOffice via announce list, our blog or social media.</p>
+          </a>
+          <div class="action-social-extra">
+            <p>
+              <span style="padding: 0 5px; cursor: pointer;" onclick="javascript:follow( 'ApacheBlog' );"
+                title="Blog of OpenOffice.">
+                <img src="images/logo-rss-16.png" alt="Blog of OpenOffice" />
+                <a>Official Blog</a>
+              </span>
+              <span style="padding: 0 5px; cursor: pointer;" onclick="javascript:follow( 'Facebook' );"
+                title="Follow us on Facebook.">
+                <img src="images/logo-facebook-16.png" alt="Follow us on Facebook" />
+                <a>Facebook</a>
+              </span>
+              <span style="padding: 0 5px; cursor: pointer;" onclick="javascript:follow( 'Twitter' );"
+                title="Follow us on Twitter.">
+                <img src="images/logo-twitter-16.png" alt="Follow us on Twitter" />
+                <a>Twitter</a>
+              </span>
+              <span style="padding: 0 5px; cursor: pointer;" onclick="javascript:follow( 'GooglePlus' );"
+                title="Follow us on Google+.">
+                <img src="images/logo-googleplus-16.png" alt="Follow us on Google+" />
+                <a>Google+</a>
+              </span>
+            </p>
+          </div>
+        </div>
+      </div>
+    </li>
+    <li>
+      <hr />
+    </li>
+  </ul>
+
+  <div id="SupportedAndSupporters">
+    <a href="http://validator.w3.org/check?uri=referer"
+    title="W3C Markup Validation Service - Check the markup (HTML, XHTML, ...) of Web documents">
+    <img src="images/valid-xhtml10-blue.png"
+    alt="W3C Validator" /></a>
+  </div>
+</div>
+
+<div id="news" style="margin: 2% 3% 0 0; height: 520px;">
+
+  <div class="campaign" style="height: 200px; float: right; overflow: auto;">
+    <h2 style="display: inline;">Recent Blog Posts</h2>
+
+    <p style="text-align:right">
+      <a href="http://blogs.apache.org/OOo/">All Posts</a>
+    </p>
+
+    <p>
+      <em>21 August:</em>
+      <br />
+      <a href="https://blogs.apache.org/OOo/entry/announcing_apache_openoffice_4_1">
+      Apache OpenOffice 4.1.1 released</a>
+      <br />
+
+      <em>29 April:</em>
+      <br />
+      <a href="https://blogs.apache.org/OOo/entry/the_apache_openoffice_project_announce">
+      Apache OpenOffice 4.1.0 released</a>
+      <br />
+
+      <em>17 April:</em>
+      <br />
+      <a href="https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces56">
+      100 Million downloads</a>
+      <br />
+
+      <em>31 December:</em>
+      <br />
+      <a href="https://blogs.apache.org/OOo/entry/apache_openoffice_in_2013_a">
+      Apache OpenOffice in 2013: a year in review</a>
+      <br/>
+    </p>
+  </div>
+
+  <div id="all_news" style="height: 320px; float: left; overflow: auto;">
+    <div class="campaign">
+      <h2>Recent News</h2>
+
+      <p style="text-align:right">
+        <a href="news/index.html">All News</a>
+      </p>
+      <p></p>
+
+      <h2>Apache OpenOffice 4.1.0 released</h2>
+
+      <p>
+        <em>29 April 2014:</em>
+        The Apache OpenOffice project announces the   
+        <a href="https://blogs.apache.org/OOo/entry/the_apache_openoffice_project_announce"
+        title="Offical blog post about Apache OpenOffice 4.1.0">official release of version 4.1.0</a>.
+        In the <a href="https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes"
+        title="Release Notes for Apache OpenOffice 4.1.0">Release Notes</a> you can read about all new features,
+        functions and languages. <a href="https://www.openoffice.org/download/"
+        title="Download Apache OpenOffice 4.1.0">Don't miss to download</a> the new release and find out yourself.
+      </p>
+    </div>
+
+    <div class="campaign">
+      <h2>100 Million downloads</h2>
+
+      <p>
+        <em>17 April 2014:</em>
+        The Apache OpenOffice project is proud to tell you that our software was   
+        <a href="https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces56"
+        title="Apache OpenOffice was downloaded 100 million times">downloaded over 100 million times</a>. Join us in
+        celebrating this big achievement!
+      </p>
+    </div>
+
+    <div class="campaign">
+      <h2>Italian region adopts OpenOffice, saves 2 Million Euro</h2>
+
+      <p>
+        <em>10 October 2013:</em>
+        The Italian administrative region of Emilia-Romagna announced plans to move to OpenOffice,
+        <a href="https://joinup.ec.europa.eu/community/osor/news/openoffice-italian-emilia-romagna-save-2-million">
+        saving 2 million euro</a>.
+      </p>
+    </div>
+
+    <div class="campaign">
+      <h2>Volunteers, not Amateurs</h2>
+
+      <p>
+        <em>8 January 2013:</em>
+        Apache OpenOffice is developed 100% by volunteers.  Apache does not pay for developers, for translators, for QA,
+        for marketing, for UI, for support, etc. Of course, we're happy to accept
+        <a href="http://www.apache.org/foundation/contributing.html">donations to the Apache Software Foundation</a>, to
+        keep our servers runnings and for similar overhead expenses. But our products are developed entirely by
+        volunteers.
+      </p>
+      <p>Some users are initially worried by this statement:<br /><strong>How can software for free, developed by
+        volunteers, be any good?<br /></strong><a href="why/why_volunteers.html">Read on for an answer...</a>
+      </p>
+    </div>
+  </div>
+</div>
+
+<!-- Every new element and text that is defined below the previous DIV will be actually dislayed wrapped below this DIV
+(because of "clear: both" instead of floated around the previous DIVs. This is really needed. -->
+
+<div style="clear: both;"></div>
+
+</body>
+</html>
+

Propchange: openoffice/ooo-site/trunk/content/index_asfcon.html
------------------------------------------------------------------------------
    svn:eol-style = native