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 2015/07/05 13:26:52 UTC

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

Author: buildbot
Date: Sun Jul  5 11:26:51 2015
New Revision: 957069

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Jul  5 11:26:51 2015
@@ -1 +1 @@
-1688072
+1689236

Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Jul  5 11:26:51 2015
@@ -1 +1 @@
-1688072
+1689236

Modified: websites/staging/ooo-site/trunk/content/download/download.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/download/download.js (original)
+++ websites/staging/ooo-site/trunk/content/download/download.js Sun Jul  5 11:26:51 2015
@@ -1115,6 +1115,21 @@ DL.getPlatform = function() {
 			    ua.indexOf( "10_3"		) !== -1 ) {	DL.UI_PLATFORM		= "Mac OS X (Version <= 10.6)";
 									DL.PLATFORM		= "mac32";
 			}
+
+			// OS X: 10.7 or newer?
+			if( ua.indexOf( "10.11_"	) !== -1 ||
+			    ua.indexOf( "10_11_"	) !== -1 ||
+			    ua.indexOf( "10.10_"	) !== -1 ||
+			    ua.indexOf( "10_10_"	) !== -1 ||
+			    ua.indexOf( "10.9_"		) !== -1 ||
+			    ua.indexOf( "10_9_"		) !== -1 ||
+			    ua.indexOf( "10.8_"		) !== -1 ||
+			    ua.indexOf( "10_8_"		) !== -1 ||
+			    ua.indexOf( "10.7_"		) !== -1 ||
+			    ua.indexOf( "10_7_"		) !== -1 ) {	DL.UI_PLATFORM		= "OS X 64-bit (x86-64) (DMG)";
+									DL.PLATFORM		= "mac64";
+			}
+
 		} 
 	}