Roundup Tracker - Issues

Message5146

Author mikeybs
Recipients mikeybs
Date 2014-09-22.19:54:26
Message-id <1411415667.21.0.18990547512.issue2550854@psf.upfronthosting.co.za>
In-reply-to
I created a new field for issues following these instructions

http://roundup.sourceforge.net/docs/customizing.html#changing-what-s-
stored-in-the-database

The new field is a string named "description", here is the relevant 
portion of my schema.py

issue = IssueClass(db, "issue",
                assignedto=Link("user"),
                keyword=Multilink("keyword"),
                priority=Link("priority"),
                status=Link("status"),
                description=String())

Everything is working fine with the new field and I have added a working 
search box for it on the search page.  But I would like the field to be 
included in All text* searches and it currently is not.

According to this it seems that it should automatically be included in 
the All text* search

http://sourceforge.net/p/roundup/mailman/message/12774892/

If I am misreading that post and it should not be automatically included 
in the All text* search, can anyone help with instructions on how to add 
this functionality.  I was not able to find an answer in any 
documentation/wiki/mailinglist.
History
Date User Action Args
2014-09-22 19:54:27mikeybssetrecipients: + mikeybs
2014-09-22 19:54:27mikeybssetmessageid: <1411415667.21.0.18990547512.issue2550854@psf.upfronthosting.co.za>
2014-09-22 19:54:27mikeybslinkissue2550854 messages
2014-09-22 19:54:26mikeybscreate