Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#561 closed enhancement (fixed)

meta: add a new "normal" bug priority

Reported by: hamish Owned by: grass-dev@…
Priority: minor Milestone: Website
Component: Website Version:
Keywords: trac Cc:
CPU: Unspecified Platform: Unspecified

Description

Hi,

could a "normal" priority be created in the trac ticket system and be set as the default?

the default setting of "major" tends to dramatize the priority setting into irrelevance.

thanks, Hamish

Change History (4)

comment:1 by martinl, 15 years ago

Resolution: fixed
Status: newclosed

Done.

comment:2 by hamish, 15 years ago

I would like to request a couple more pre-defined bug reports:

+ open tickets reported by me + all tickets modified in the last week

I don't know if the second one is possible, but I thought I'd ask.

Hamish

comment:3 by neteler, 15 years ago

re "all tickets modified in the last week":

The "Active ticket" code is

SELECT p.value AS __color__,
   id AS ticket, summary, component, version, milestone, t.type AS type, 
   (CASE status WHEN 'assigned' THEN owner||' *' ELSE owner END) AS owner,
   time AS created,
   changetime AS _changetime, description AS _description,
   reporter AS _reporter
  FROM ticket t
  LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
  WHERE status IN ('new', 'assigned', 'reopened') 
  ORDER BY p.value, milestone, t.type, time

For trac admins, there is "Copy report" to clone this - then a modification could be implemented, please suggest.

re "open tickets reported by me" - likewise.

in reply to:  3 comment:4 by hamish, 15 years ago

Replying to neteler:

re "all tickets modified in the last week":

The "Active ticket" code is

 SELECT p.value AS __color__,
...

... a rather impressive bit of SQL follows ...

re "open tickets reported by me" - likewise.

AFAIK that can be simply built with existing menus into:

http://trac.osgeo.org/grass/query?status=new&status=assigned&status=reopened&reporter=$OSGEOID

or do those reports require direct SQL into the DB?

thanks, Hamish

Note: See TracTickets for help on using tickets.