Closed
Bug 515932
Opened 16 years ago
Closed 16 years ago
loadOneTab and addTab should accept a hash of parameters, including a parameter for opening the tab next to the current one
Categories
(Firefox :: Tabbed Browser, defect)
Firefox
Tabbed Browser
Tracking
()
VERIFIED
FIXED
Firefox 3.7a1
Tracking | Status | |
---|---|---|
status1.9.2 | --- | beta1-fixed |
People
(Reporter: dao, Assigned: dao)
References
Details
(Keywords: dev-doc-complete, verified1.9.2)
Attachments
(1 file, 1 obsolete file)
4.08 KB,
patch
|
mconnor
:
superreview+
johnath
:
approval1.9.2+
|
Details | Diff | Splinter Review |
For bug 515635, we need a way to open a tab next to the current one without sending the referrer.
Instead of just adding that parameter, I propose we also accept a hash of parameters, as the number of parameters is getting unreasonable and most callers just need a subset of them. That way, we can happily add more parameters without fearing that, if we added a tenth parameter that many callers would want to use, they would also have to set the eight previous parameters, even though they are optional.
So in bug 515635, instead of:
gBrowser.loadOneTab(submission.uri.spec, null, null, submission.postData, null, false, true);
... we'd do:
gBrowser.loadOneTab(submission.uri.spec, {postData: submission.postData, relatedToCurrent: false});
... which is easier to write, read and maintain.
Attachment #400014 -
Flags: superreview?(mconnor)
Attachment #400014 -
Flags: review?(gavin.sharp)
Assignee | ||
Comment 1•16 years ago
|
||
(In reply to comment #0)
> gBrowser.loadOneTab(submission.uri.spec, {postData: submission.postData,
> relatedToCurrent: false});
this was meant to be relatedToCurrent: true
Updated•16 years ago
|
Attachment #400014 -
Flags: review?(gavin.sharp) → review+
Comment 2•16 years ago
|
||
Comment on attachment 400014 [details] [diff] [review]
patch
I like it. Why add the explicit aRelatedToCurrent parameter, though?
Comment 3•16 years ago
|
||
Dão, This patch is similar to Simon Bünzli's patch from bug 465673 of adding another parameter to addTab, which you yourself thought to be complicating things (bug 465673 comment #84).
While this adds the argument in a hash, which is better than just adding more arguments, surely the implied relationship from setting aReferrerURI covers this?
This bug makes the fixes in bug 514310 and bug 465673 redundant to some extent. In short, an extra parameter isn't needed if a referrer can convey the same information. It seems more consistent to use the referrer in this case as it is with middle-clicking or ctrl-clicking.
Assignee | ||
Comment 4•16 years ago
|
||
(In reply to comment #3)
> Dão, This patch is similar to Simon Bünzli's patch from bug 465673 of adding
> another parameter to addTab, which you yourself thought to be complicating
> things (bug 465673 comment #84).
The extra parameter is redundant when there's a referrer. And the number of parameters is inconvenient, but the ability to pass a hash addresses this.
> While this adds the argument in a hash, which is better than just adding more
> arguments, surely the implied relationship from setting aReferrerURI covers
> this?
Because we don't want to send a referrer to google in the case of bug 515635.
Assignee | ||
Comment 5•16 years ago
|
||
Attachment #400089 -
Flags: superreview?(mconnor)
Updated•16 years ago
|
Attachment #400089 -
Flags: superreview?(mconnor) → superreview+
Comment 6•16 years ago
|
||
Comment on attachment 400089 [details] [diff] [review]
without an explicit aRelatedToCurrent
Yeah, let's go with this one. I'm a fan.
Can we file a followup to change our existing callers to use this instead? That way, extensions copying our code will do the better thing, and we can work on deprecating the giant bundle-o-params list in the future from a better place.
Updated•16 years ago
|
Attachment #400014 -
Flags: superreview?(mconnor) → superreview-
Assignee | ||
Comment 8•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 3.7a1
Assignee | ||
Updated•16 years ago
|
Attachment #400089 -
Flags: approval1.9.2?
Comment 9•16 years ago
|
||
> + ownerTab: owner,
Should this be aOwner like below?
> + aOwner = params.ownerTab;
Assignee | ||
Comment 10•16 years ago
|
||
No, aOwner isn't declared in the former case, but owner is.
Updated•16 years ago
|
Whiteboard: [doc-waiting-1.9.3]
Comment 11•16 years ago
|
||
Should loadURI or loadURIWithFlags also take a hash of the parameters for consistency?
loadURI takes 3 parameters and loadURIWithFlags takes 5.
Comment 12•16 years ago
|
||
Comment on attachment 400089 [details] [diff] [review]
without an explicit aRelatedToCurrent
Safe on its own, baking for most of a month and, while not exactly blocking bug
514327 (a P1 blocker), makes it substantially easier to land. a=me.
Dao - assuming you're the one landing these - please land them together with bug 514327 so that any regressions caused are clearly associated with the P1 blocker, and they get the appropriate level of immediate attention. In the future, if we need N patches to land a bug, please provide a single rollup patch to approve?
Attachment #400089 -
Flags: approval1.9.2? → approval1.9.2+
Assignee | ||
Comment 13•16 years ago
|
||
This and bug 516603 aren't part of bug 514327, they just happen to touch the same code.
Assignee | ||
Comment 14•16 years ago
|
||
status1.9.2:
--- → beta1-fixed
Whiteboard: [doc-waiting-1.9.3]
Comment 15•15 years ago
|
||
Documentation updated:
https://developer.mozilla.org/en/XUL/Method/addTab
https://developer.mozilla.org/en/XUL/Method/loadOneTab
And this change is listed on the Firefox 3.6 overview page.
Keywords: dev-doc-needed → dev-doc-complete
Assignee | ||
Comment 16•15 years ago
|
||
This signature doesn't exist:
addTab( URL, referrerURI, charset, postData, owner, allowThirdPartyFixup, relatedToCurrent )
It's either:
addTab( URL, referrerURI, charset, postData, owner, allowThirdPartyFixup )
Or:
addTab( URL, {referrerURI: ..., charset: ..., postData: ..., inBackground: ..., allowThirdPartyFixup: ..., relatedToCurrent: ...}), whereas all keys (referrerURI, charset, ...) are optional and the order doesn't matter.
Keywords: dev-doc-complete → dev-doc-needed
Comment 17•15 years ago
|
||
Hm, that's non-obvious from the patch. I have no idea at all how to document that given our current documentation format. I'll have to think about that one.
Assignee | ||
Comment 18•15 years ago
|
||
(In reply to comment #16)
> addTab( URL, {referrerURI: ..., charset: ..., postData: ..., inBackground: ...,
> allowThirdPartyFixup: ..., relatedToCurrent: ...})
I copied this from the wrong method. inBackground is for loadOneTab. addTab has the ownerTab key instead.
Assignee | ||
Comment 20•15 years ago
|
||
Perfect, thanks.
Updated•15 years ago
|
Attachment #400014 -
Attachment is obsolete: true
Comment 21•15 years ago
|
||
Verified fixed based on check-ins and passed tests on trunk and 1.9.2.
Status: RESOLVED → VERIFIED
Keywords: verified1.9.2
You need to log in
before you can comment on or make changes to this bug.
Description
•