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 2013/10/12 10:28:54 UTC

svn commit: r882264 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/download_other.js

Author: buildbot
Date: Sat Oct 12 08:28:54 2013
New Revision: 882264

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Oct 12 08:28:54 2013
@@ -1 +1 @@
-1531513
+1531514

Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Oct 12 08:28:54 2013
@@ -1 +1 @@
-1531513
+1531514

Modified: websites/staging/ooo-site/trunk/content/download/download_other.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/download/download_other.js (original)
+++ websites/staging/ooo-site/trunk/content/download/download_other.js Sat Oct 12 08:28:54 2013
@@ -80,6 +80,24 @@ function write_top() {
  * This writes the header row with the OS headlines
  */
 function write_header( FIRST_HEADER ) {
+	// 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 /*opt*/ ) {
+	    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;
+	  };
+	}
+
 	// If it's the first header at the top of a table use a normal font size
 	// But use a smaller font size for further headers within the table
 	if ( FIRST_HEADER == 1 ) {