Closed
Bug 325161
Opened 19 years ago
Closed 19 years ago
support URI property on all result nodes
Categories
(Firefox :: Bookmarks & History, defect, P1)
Firefox
Bookmarks & History
Tracking
()
RESOLVED
FIXED
Firefox 2 alpha1
People
(Reporter: bugs, Assigned: brettw)
Details
(Keywords: fixed1.8.1)
Attachments
(1 file)
|
79.94 KB,
patch
|
annie.sullivan
:
review+
|
Details | Diff | Splinter Review |
All results have an equivalent URI, whether that be the URI of the page, or the place: URI that generated them. As a result nsINavHistoryURIResultNode should be dispensed with, and the uri property brought down onto nsINavHistoryResultNode.
This will save the client js code a lot of work calling queriesToQueryString which will become fairly common if we store folder and query state as annotations keyed off place: uris.
| Reporter | ||
Comment 1•19 years ago
|
||
marking p1 since this blocks other feature dev.
Priority: -- → P1
Target Milestone: --- → Firefox 2
| Reporter | ||
Updated•19 years ago
|
Target Milestone: Firefox 2 → Firefox 2 alpha1
| Assignee | ||
Comment 2•19 years ago
|
||
This removes nsINavHistoryURIResultNode and moves the URI attribute onto nsINavHistoryResultNode. I also reordered parameters to put the URI in front of title in argument lists. It was in back of the common ones to reflect the fact that it wasn't always there.
Attachment #210950 -
Flags: review?(annie.sullivan)
Comment 3•19 years ago
|
||
Comment on attachment 210950 [details] [diff] [review]
Patch
>- bhist.removePage(this._uri(asURI(node).uri));
>+ bhist.removePage(this._uri(node,uri));
Shouldn't (node,uri) be (node.uri)?
Attachment #210950 -
Flags: review?(annie.sullivan) → review+
| Assignee | ||
Comment 4•19 years ago
|
||
On trunk and 1.8 branch.
Comment 5•15 years ago
|
||
Bug 451915 - move Firefox/Places bugs to Firefox/Bookmarks and History. Remove all bugspam from this move by filtering for the string "places-to-b-and-h".
In Thunderbird 3.0b, you do that as follows:
Tools | Message Filters
Make sure the correct account is selected. Click "New"
Conditions: Body contains places-to-b-and-h
Change the action to "Delete Message".
Select "Manually Run" from the dropdown at the top.
Click OK.
Select the filter in the list, make sure "Inbox" is selected at the bottom, and click "Run Now". This should delete all the bugspam. You can then delete the filter.
Gerv
Component: Places → Bookmarks & History
QA Contact: places → bookmarks
You need to log in
before you can comment on or make changes to this bug.
Description
•