Closed
Bug 845466
Opened 12 years ago
Closed 5 years ago
[CTP] Click-To-Play: String for enabling Java uses 'Java(TM) Platform SE 7 U' as plugin name
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
RESOLVED
INVALID
People
(Reporter: aryx, Unassigned)
Details
Click-To-Play uses 'Java(TM) Platform SE 7 U' as plugin name for enabling Java.
Code:
http://mxr.mozilla.org/mozilla-central/source/browser/base/content/browser-plugins.js#70
makeNicePluginName : function (aName) {
if (aName == "Shockwave Flash")
return "Adobe Flash";
// Clean up the plugin name by stripping off any trailing version numbers
// or "plugin". EG, "Foo Bar Plugin 1.23_02" --> "Foo Bar"
// Do this by first stripping the numbers, etc. off the end, and then
// removing "Plugin" (and then trimming to get rid of any whitespace).
// (Otherwise, something like "Java(TM) Plug-in 1.7.0_07" gets mangled)
let newName = aName.replace(/[\s\d\.\-\_\(\)]+$/, "").replace(/\bplug-?in\b/i, "").trim();
return newName;
},
Should this be added after the Flash test?
if (aName.startsWith("Java(TM) Platform SE ")
return "Java";
| Reporter | ||
Comment 1•12 years ago
|
||
Of course there should be a second closing parenthesis in line 1
Comment 2•5 years ago
|
||
We're in the process of removing support for plugins (bug 1677160), so I think this bug is irrelevant now.
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•