[Tracker-discuss] [issue319] Add 'need review'/'has patch' queries to default template

A.M. Kuchling metatracker at psf.upfronthosting.co.za
Fri Feb 19 15:29:06 CET 2010


New submission from A.M. Kuchling <lists at amk.ca>:

At the language summit, someone suggested to me that the tracker should make it easier to find a list of issues needing review or that have a ready-made patch.

There are saved queries for these searches, but to access them you first need to register, and then go to the 'edit queries' page to have them displayed.  That's a number of steps; we could document those steps, but no one would read them.  It seems simpler to just add the queries to the default template.

>From testing on a private installation of the tracker, I think I got the queries correct, but obviously the queries should be checked.

----------
files: add-queries.txt
messages: 1553
nosy: amk
priority: wish
status: unread
title: Add 'need review'/'has patch' queries to default template

_______________________________________________________
PSF Meta Tracker <metatracker at psf.upfronthosting.co.za>
<http://psf.upfronthosting.co.za/roundup/meta/issue319>
_______________________________________________________
-------------- next part --------------
diff -r e513b1f2b58b html/page.html
--- a/html/page.html	Thu Feb 18 21:22:54 2010 -0500
+++ b/html/page.html	Fri Feb 19 09:13:18 2010 -0500
@@ -113,6 +113,32 @@
       '@startwith': 0,
      })"
        i18n:translate="">Show Unassigned</a></li>
+    <li><a href="#"
+       tal:attributes="href python:request.indexargs_url('issue', {
+      '@sort': '-activity',
+      '@group': 'priority',
+      '@filter': 'status,assignee',
+      '@columns': columns,
+      '@search_text': '',
+      'keywords': 4,
+      'status': status_notresolved,
+      '@dispname': i18n.gettext('Show Needing Review'),
+      '@startwith': 0,
+     })"
+       i18n:translate="">Show Needing Review</a></li>
+    <li><a href="#"
+       tal:attributes="href python:request.indexargs_url('issue', {
+      '@sort': '-activity',
+      '@group': 'priority',
+      '@filter': 'status,assignee',
+      '@columns': columns,
+      '@search_text': '',
+      'keywords': 5,
+      'status': status_notresolved,
+      '@dispname': i18n.gettext('Show Having Patch'),
+      '@startwith': 0,
+     })"
+       i18n:translate="">Show Having Patch</a></li>
         <li>
          <a href="issue?@template=search&status=1" i18n:translate="">Search</a>
         </li>


More information about the Tracker-discuss mailing list