Ezio Melotti <ezio.melo...@gmail.com> added the comment:

My guess is that the matching algorithm used in the "title" search is more 
permissive than the one used for the "All text" search.
For the title search the algorithm seems to be something like:
  for term in title_search_query.split():
    if term in issue_title: # match
(that's why "urllib/httplib header capitalization" is included in the results), 
whereas in the normal search all the text is splitted in order to match whole 
words only.
The search is handled in 
http://svn.python.org/view/tracker/roundup-src/roundup/cgi/actions.py?view=markup
 (in the SearchAction class), but I couldn't find anything useful there.

----------
nosy: +ezio.melotti
priority: urgent -> bug
status: unread -> chatting

_______________________________________________________
PSF Meta Tracker <metatrac...@psf.upfronthosting.co.za>
<http://psf.upfronthosting.co.za/roundup/meta/issue372>
_______________________________________________________
_______________________________________________
Tracker-discuss mailing list
Tracker-discuss@python.org
http://mail.python.org/mailman/listinfo/tracker-discuss

Reply via email to