Closed Bug 280798 Opened 20 years ago Closed 18 years ago

InstallTrigger checks http://foo.com/undefined when no IconURL is specified

Categories

(Toolkit :: Add-ons Manager, defect)

1.7 Branch
defect
Not set
normal

Tracking

()

RESOLVED WORKSFORME

People

(Reporter: bugzilla, Unassigned)

References

()

Details

For the Firefox and Thundebird there is recomended new XPI installation code.
see on <http://www.mozilla.org/projects/firefox/extensions/web-api.html>

It meand you can declare object:

var params = {
    "Bar": { URL: aEvent.target.href,
             IconURL: aEvent.target.getAttribute("iconURL"),
             toString: function () { return this.URL; }
    }

But if you doesn't include declaration of IconURL (which means it is undefined),
Firefox still genererate 404 request to the server for icon on the URL like
<http://server.cz/download/undefined>.

There should be some check and if IconURL == undefined Firefox should not try to
load the icon.

Old code InstallTrigger.install({'name': URL}) has not this problem.
I don't see your point. On that page I see "You could also use the old style
parameter block ({ "Bar": aEvent.target.href }) if you wanted - and didn't have
an Icon to use for the confirmation dialog."

That's it. If you don't have an icon, use the old variant. If you have an icon,
use the new variant.
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
Nickolay: "You could also use the old style
parameter block ({ "Bar": aEvent.target.href }) *if you wanted*" - what if I
don't want?

What you are basically saying is that it is OK that the new method is slightly
broken (I assume you consider described behavior broken, at least you didn't say
the opposite) as long as there exists some other way how to do things. But what
if the install code is generated mechanically (from the database of extensions,
for exapmle) and sometimes there will be icon and sometimes not? Should I use
two different install codes in this case (branch the HTML/JS writing code...)?
What if developer wants to remember/use only one way how to do the install?

Or, look form the other side: Can you please tell me some reason why the
solution Met proposed shouldn't be applied? Will it break something? Will it
make something worse? IMHO the opposite is true, it will make thing sligtly better.

I mean no offense, I'm just asking for reconsidering your resolution of this bug.
"I assume you consider described behavior broken, at least you didn't say
the opposite"
I don't consider this behaviour broken. I don't think it's very hard to use two
different patterns when generating code. I don't say it shouldn't be applied, my
point is there's no reason (IMO) for it to be applied. I will reopen the bug if
you so desire, but I don't think it will be a priority.
Status: RESOLVED → UNCONFIRMED
Resolution: INVALID → ---
Summary: Installation of extension generate 404 request when no icon is defined → InstallTrigger checks http://foo.com/undefined when no IconURL is specified
I believe it belongs to XPInstall component
Assignee: bugs → xpi-engine
Status: UNCONFIRMED → NEW
Component: Extension/Theme Manager → Installer: XPInstall Engine
Ever confirmed: true
Product: Firefox → Core
QA Contact: bugs
Version: unspecified → 1.0 Branch
This was assigned correctly. The xpinstall engine does nothing with the icon
argument, it's simply passed along to the front end.
Assignee: xpi-engine → bugs
Component: Installer: XPInstall Engine → Extension/Theme Manager
Product: Core → Firefox
QA Contact: bugs
(In reply to comment #0)
> For the Firefox and Thundebird there is recomended new XPI installation code.
> see on <http://www.mozilla.org/projects/firefox/extensions/web-api.html>
> 
> It meand you can declare object:
> 
> var params = {
>     "Bar": { URL: aEvent.target.href,
>              IconURL: aEvent.target.getAttribute("iconURL"),
>              toString: function () { return this.URL; }
>     }
> 
> But if you doesn't include declaration of IconURL (which means it is undefined),
> Firefox still genererate 404 request to the server for icon on the URL like
> <http://server.cz/download/undefined>.
> 
> There should be some check and if IconURL == undefined Firefox should not try to
> load the icon.
> 
> Old code InstallTrigger.install({'name': URL}) has not this problem.

Just to clarify the issue here, is what you are asking for is that it you use
the code above and the link does not include a definition for iconURL that it
should default to using chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png?

> Just to clarify the issue here, is what you are asking for is that it you use
> the code above and the link does not include a definition for iconURL that it
> should default to using chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png?

Yes, xpinstallItemGeneric.png is a good idea.
I just tried to reproduce this with committing the iconURL parameter and wasn't able to with a latest nightly. Met, can you check if this is still a problem?
Assignee: bugs → nobody
QA Contact: bugs → extension.manager
s/committing/omitting/
When I tested this I wasn't able to reproduce it and I suspect one of the many em patches that have landed since this was reported fixed this. Resolving -> wfm - reporter, if you can reproduce this still please reopen or file a new bug. Thanks!
Status: NEW → RESOLVED
Closed: 20 years ago18 years ago
Resolution: --- → WORKSFORME
Product: Firefox → Toolkit
You need to log in before you can comment on or make changes to this bug.