-- ## 4: Active Tickets for Version Control Modules ## -- -- Show all opened tickets related to the version control modules: -- - mercurial plugin -- - git plugin -- - version control -- - version control/browser -- - version control/changeset view -- - version control/log view -- List all active tickets by priority -- Color each row based on priority -- If a ticket has been accepted, a '*' is appended after the owner's name SELECT p.value AS __color__, id AS ticket, summary, component AS __group__, version, milestone, t.type AS type, severity, owner, status, time AS created, changetime AS _changetime, t.description AS _description, reporter AS _reporter FROM ticket t, enum p WHERE status <> 'closed' AND p.name = t.priority AND p.type = 'priority' AND (component LIKE 'version control%' OR component IN ('plugin/mercurial', 'plugin/git')) ORDER BY __group__, p.value, milestone, severity, time