Roundup Tracker - Issues

Issue 724708

classification
all text search doesn't find data found in title search.
Type: Severity: normal
Components: Database Versions:
process
Status: closed wont fix
:
: richard : richard, rouilj, schlatterbeck
Priority: low :

Created on 2003-04-20 19:25 by rouilj, last changed 2012-08-21 08:53 by ber.

Messages
msg759 Author: [hidden] (rouilj) Date: 2003-04-20 19:25
I am unable to search for revision tags like 4.1 or 2.8
when using 
the All Text search field.. My guess is that
the search index 
doesn't see [0-9][0-9.A-z]* as a word
and therefore doesn't index 
it.

When I enter 4.1 in the All Text search box, I get no issues 
back. If I do a title only search, this does return issues with 4.1 in the 
title.

I originally put this in as a feature request. Now I realize 
that it really is a bug because all text is supposed to search the titles 
as well.

-- rouilj
msg760 Author: [hidden] (richard) Date: 2003-04-23 11:54
Logged In: YES 
user_id=6405

The full-text search uses the text index, and its splitter is: 
 
  re.findall(r'\b\w{2,25}\b', text) 
 
which doesn't match "4.1" because that's split into two strings, "4" 
and "1" which are too short to index. I'm not sure there's a sane 
RE that will let us match "4.1". 
 
msg761 Author: [hidden] (richard) Date: 2003-05-09 01:26
Logged In: YES 
user_id=6405

Can this be considered something that won't be fixed? 
 
msg4486 Author: [hidden] (schlatterbeck) Date: 2012-01-05 22:49
was already considered "wont fix" more than 8 years ago. Closing.
History
Date User Action Args
2012-08-21 08:53:54bersetmessages: - msg762
2012-01-05 22:49:28schlatterbecksetstatus: open -> closed
nosy: + schlatterbeck
messages: + msg4486
2003-04-20 19:25:54rouiljcreate