Reviewers: robertvawter, jat,
Description:
Update MissingPlugin.html to reflect new Chrome platform support
Please review this at http://gwt-code-reviews.appspot.com/1184801/show
Affected files:
M plugins/MissingPlugin/war/MissingPlugin.html
Index: plugins/MissingPlugin/war/MissingPlugin.html
===================================================================
--- plugins/MissingPlugin/war/MissingPlugin.html (revision 9312)
+++ plugins/MissingPlugin/war/MissingPlugin.html (working copy)
@@ -62,25 +62,12 @@
"supported" : false
},
- "chrome-lin" :
+ "chrome" :
{
- "caption" : "Sorry, there is currently no GWT Developer Plugin
for Chrome on Linux",
- "url" : troubleshootingUrl,
- "supported" : false
- },
-
- "chrome-mac" :
- {
- "caption" : "Sorry, there is currently no GWT Developer Plugin
for Chrome on OS X",
- "url" : troubleshootingUrl,
- "supported" : false
- },
-
- "chrome-win" :
- {
- "caption" : "The GWT Developer Plugin requires Chrome 4 or
later,<br>so click here to learn about switching to the Chrome DevChannel
to get early access",
- "url" : "http://dev.chromium.org/getting-involved/dev-channel",
- "supported" : false
+ "caption" : "Download the GWT Developer Plugin<br>For Chrome",
+ "url" :
"https://dl-ssl.google.com/gwt/plugins/chrome/gwt-dev-plugin.crx",
+ "platforms" : "Win x86, Linux x86/x86_64, Mac x86",
+ "supported" : true
},
"safari-win" :
@@ -106,14 +93,6 @@
"supported" : true
},
- "chrome4-win" :
- {
- "caption" : "Download the GWT Developer Plugin<br>For Chrome",
- "url" :
"https://dl-ssl.google.com/gwt/plugins/chrome/gwt-dev-plugin.crx",
- "platforms" : "Win x86",
- "supported" : true
- },
-
"safari-mac" :
{
"caption" : "Download the GWT Developer Plugin<br>For Safari",
@@ -133,20 +112,7 @@
} else if (ua.indexOf("android") != -1) {
id = 'webkit-android';
} else if (ua.indexOf("chrome") != -1) {
- if (ua.indexOf("windows") != -1) {
- var ver = /chrome\/(\d+)(\.\d+)*/.exec(ua);
- if (ver && ver.length > 1 && ver[1] >= 4) {
- id = 'chrome4-win';
- } else {
- id = 'chrome-win';
- }
- } else if (ua.indexOf("linux") != -1) {
- id = 'chrome-lin';
- } else if (ua.indexOf("macintosh") != -1) {
- id = 'chrome-mac';
- } else {
- // unknown Chrome platform
- }
+ id = 'chrome';
} else if (ua.indexOf("macintosh") != -1) {
id = 'safari-mac';
} else if (ua.indexOf("windows") != -1) {
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors