Closed
Bug 61656
Opened 25 years ago
Closed 25 years ago
SmartUpdate Failed in Netscape 6
Categories
(Core Graveyard :: Installer: XPInstall Engine, defect, P3)
Tracking
(Not tracked)
VERIFIED
INVALID
People
(Reporter: thinh.pham, Assigned: dveditz)
References
Details
condition:
The Software Installation has been checked in the preference of N6
X Enable software instatllation
problem:
The javascript that supposed to install the plugin (JAR file) hang at the code
trigger = netscape.softupdate.Trigger;
complete install script:
function downloadNow ()
{
if (navigator.javaEnabled() )
{
trigger = netscape.softupdate.Trigger;
if (trigger.UpdateEnabled() )
{
// vi = new netscape.softupdate.VersionInfo(1,0,0,0);
// Downloads for Windows 95/NT
if (navigator.platform == "Win32")
{
trigger.StartSoftwareUpdate
(jar_url,trigger.FORCE_MODE);
}
else
{
if (navigator.language == "en")
{ // English
trigger.StartSoftwareUpdate
(jar_url,trigger.FORCE_MODE);
//alert("english language-FORCE Mode
install");
}
}
}
else
document.write("Enable SmartUpdate before running this
script.");
}
else
document.write("Enable Java before running this script.");
//alert("Download OK.");
Comment 1•25 years ago
|
||
I believe the methods for this have changed in Netscape 6; see this
comment, for example, from bug 60526:
------- Additional Comments From dveditz@netscape.com 2000-11-17 20:50 -------
The Netscape.softupdate.* package was implemented in Java and accessed via
Liveconnect. Netscape's JVM is gone in 6.0 so "SmartUpdate" has been
re-implemented as "XPInstall". The InstallTrigger object replaces
netscape.softupdate.Trigger, for example.
However, let me transfer this over to the XPInstallEngine component
just to be sure about this -
Assignee: rogerl → dveditz
Component: Live Connect → Installer: XPInstall Engine
QA Contact: pschwartau → jimmylee
Comment 2•25 years ago
|
||
Reporter is this still a problem in the latest nightlies?
Comment 3•25 years ago
|
||
Marking WORKSFORME due to the fact this has changed and due to lack of response.
Reopen if this is not the case.
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → WORKSFORME
| Assignee | ||
Comment 4•25 years ago
|
||
Re-opening so I can mark invalid
Status: RESOLVED → UNCONFIRMED
Resolution: WORKSFORME → ---
| Assignee | ||
Comment 5•25 years ago
|
||
There is no "SmartUpdate" in Mozilla. XPInstall is the moral equivalent, but
the java-based smartupdate commands will not work.
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago → 25 years ago
Resolution: --- → INVALID
Comment 7•23 years ago
|
||
*** Bug 143330 has been marked as a duplicate of this bug. ***
Updated•10 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•