Roundup Tracker - Issues

Issue 1610724

classification
Improve searching for status
Type: rfe Severity: normal
Components: Interface Versions:
process
Status: closed rejected
:
: richard : richard, thomas_ah
Priority: normal :

Created on 2006-12-07 11:21 by thomas_ah, last changed 2006-12-07 20:14 by richard.

Messages
msg3454 Author: [hidden] (thomas_ah) Date: 2006-12-07 11:21
In an old roundup 0.6 installation I have modified the search template to allow searching not only for unresolved issues, but for some more combinations, too. The drop down box has the following entries:

don't care
not resolved
 & not done-dbb
   & not testing
     & not deferred
not selected
--------------
(followed by a list of all status values)

For 0.6 the modification of issue.search.html is:
     <tal:block metal:fill-slot="extra_options">
       <option value="-1,1,2,3,4,5,6,7"
               tal:attributes="selected python:value == '-1,1,2,3,4,5,6,7'">not resolved</option>
+      <option value="-1,1,2,3,4,5,6"
+              tal:attributes="selected python:value == '-1,1,2,3,4,5,6'"> & not done-cbb</option>
+      <option value="-1,1,2,3,4,5"
+              tal:attributes="selected python:value == '-1,1,2,3,4,5'">   & not testing</option>
+      <option value="-1,1,3,4,5"
+              tal:attributes="selected python:value == '-1,1,3,4,5'">     & not deferred</option>
       <option value="-1"
               tal:attributes="selected python:value == '-1'">not selected</option>
     </tal:block>    


Before I prepare a patch for current roundup, is it desired to have this in the standard classic template?
msg3455 Author: [hidden] (richard) Date: 2006-12-07 20:14
I'd prefer this be added as a wiki page if you wouldn't mind. The login for the wiki is "wiki"/"wiki".
History
Date User Action Args
2006-12-07 11:21:15thomas_ahcreate