Roundup Tracker - Issues

Message760

Author richard
Recipients
Date 2003-04-23.11:54:30
Message-id
In-reply-to
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". 
 
History
Date User Action Args
2009-02-03 14:20:20adminlinkissue724708 messages
2009-02-03 14:20:20admincreate