Closed
Bug 411452
Opened 17 years ago
Closed 17 years ago
when a url bar search term is in both the place title and the bookmark title, show the bookmark title in the result
Categories
(Firefox :: Address Bar, defect)
Firefox
Address Bar
Tracking
()
VERIFIED
FIXED
Firefox 3 beta3
People
(Reporter: moco, Assigned: dietrich)
References
Details
when a url bar search term is in both the place title and the bookmark title, which should be shown?
with bug #394038, we now search both the title in moz_places and the title in moz_bookmarks (as well as the url).
say I bookmark http://espn.go.com/ (with the moz_place title of "ESPN: The Worldwide Leader in Sports") and make the bookmark title "espn"
when I type esp in the url bar, should my matching result be:
ESPN: The Worldwide Leader in Sports
http://espn.go.com/
or
espn
http://espn.go.com/
In the current patch for bug #394038, I'm currently doing the first, but perhaps the second is the correct behavior. thoughts?
from the patch:
+ // XXX is it correct to prefer moz_place title over bookmark title? if not, we need reorder our mDBAutoCompleteQuery and fix this code
+ PRBool matchInBookmarkTitle = PR_FALSE;
+ if (itemId &&
+ !CaseInsensitiveFindInReadable(mCurrentSearchString, entryTitle) &&
+ !CaseInsensitiveFindInReadable(mCurrentSearchString, entryURL)) {
+ matchInBookmarkTitle = PR_TRUE;
+ // XXX, if this is not debug only, wrap with an #ifdef DEBUG
+ NS_WARN_IF_FALSE(CaseInsensitiveFindInReadable(mCurrentSearchString, entryBookmarkTitle), "match should be in bookmark title");
+ }
note if you type "espn:", you'll get:
ESPN: The Worldwide Leader in Sports
http://espn.go.com/
Flags: blocking-firefox3?
Reporter | ||
Comment 1•17 years ago
|
||
I think we want the latter, because the moz_place can change (as can the bookmark title, with microsummaries), but if the user puts in "espn" or whatever, they probably prefer that over the other.
Reporter | ||
Comment 2•17 years ago
|
||
over email, both beltzner and faaborg agree.
sspitzer:
> (I think bookmark title over place title.)
faaborg:
> Yeah, I agree.
beltzner:
> I'm not entirely sure what a "place title" is; do you mean the page title? If > so, I agree this this proposal as well.
This already part of the latest patch in #394038.
OS: Mac OS X → All
Hardware: PC → All
Summary: when a url bar search term is in both the place title and the bookmark title, which should be shown? → when a url bar search term is in both the place title and the bookmark title, show the bookmark title in the result
Updated•17 years ago
|
Assignee: nobody → dietrich
Target Milestone: --- → Firefox 3 M11
Assignee | ||
Comment 3•17 years ago
|
||
fixed by bug 394038
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Updated•17 years ago
|
Flags: blocking-firefox3? → blocking-firefox3+
Comment 4•17 years ago
|
||
*** VERIFIED
Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9b3) Gecko/2008020514 Firefox/3.0b3
Comment 5•17 years ago
|
||
in-litmus+
https://litmus.mozilla.org/show_test.cgi?id=5172
Also, verified FIXED using Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9b4pre) Gecko/2008020904 Minefield/3.0b4pre
Status: RESOLVED → VERIFIED
Flags: in-litmus+
You need to log in
before you can comment on or make changes to this bug.
Description
•