Modify

Opened 12 years ago

Closed 10 years ago

Last modified 10 years ago

#10510 closed enhancement (fixed)

Remove Component column from reports {9} and {10}

Reported by: Ryan J Ollos Owned by: Ryan J Ollos
Priority: normal Component: TracHacks
Severity: normal Keywords:
Cc: Michael Renzmann, Steffen Hoffmann, osimons Trac Release: 1.0

Description (last modified by Ryan J Ollos)

When on Trac 1.0, we should be able to make the following untested modifications to reports {9} and {10}, which will remove the Component column, group the tickets by Component and still allow the report to be sorted by any column.

  • component -> component AS __group__
  • ORDER BY p.value, severity, time -> ORDER BY __group__, @SORT_COLUMN@, p.value, severity, time

See #10478 and #10488 for related tickets.

Attachments (4)

After.png (38.3 KB) - added by Ryan J Ollos 11 years ago.
Before.png (36.3 KB) - added by Ryan J Ollos 11 years ago.
Report9After.png (39.3 KB) - added by Ryan J Ollos 11 years ago.
Report9-Before.png (45.1 KB) - added by Ryan J Ollos 11 years ago.

Download all attachments as: .zip

Change History (10)

comment:1 Changed 12 years ago by Ryan J Ollos

Trac Release: 0.121.0

comment:2 Changed 11 years ago by Ryan J Ollos

Report {10} should also group by status (see comment:61:ticket:10193).

comment:3 Changed 11 years ago by Ryan J Ollos

Status: newassigned

comment:4 Changed 11 years ago by Ryan J Ollos

Description: modified (diff)

Changed 11 years ago by Ryan J Ollos

Attachment: After.png added

Changed 11 years ago by Ryan J Ollos

Attachment: Before.png added

Changed 11 years ago by Ryan J Ollos

Attachment: Report9After.png added

Changed 11 years ago by Ryan J Ollos

Attachment: Report9-Before.png added

comment:5 Changed 10 years ago by Ryan J Ollos

Resolution: fixed
Status: assignedclosed

The changes in comment:description had already been made. Additional, a link to the project wiki page was added as a __grouplink__. The reports are now:

SELECT p.value AS __color__,
    id AS ticket, summary, '/wiki/' || component AS __grouplink__, component AS __group__, t.type, r.value AS release,
    owner, status,
    time AS created,
    changetime AS modified, description AS _description,
    reporter AS _reporter
  FROM ticket t
    LEFT OUTER JOIN ticket_custom r
    ON (t.id = r.ticket AND r.name = 'release')
    JOIN enum p ON p.name = t.priority AND p.type='priority'
  WHERE status <> 'closed'
    AND component = '$COMPONENT'
  ORDER BY __group__, @SORT_COLUMN@, p.value, severity, time
SELECT p.value AS __color__,
    id AS ticket, summary, '/wiki/' || component AS __grouplink__, component AS __group__, t.type, r.value AS release,
    owner, status,
    time AS created,
    changetime AS modified, description AS _description,
    reporter AS _reporter
  FROM ticket t
    LEFT OUTER JOIN ticket_custom r
    ON (t.id = r.ticket AND r.name = 'release')
    JOIN enum p ON p.name = t.priority AND p.type='priority'
  WHERE component = '$COMPONENT'
  ORDER BY __group__, status, @SORT_COLUMN@, p.value, severity, time

In the future we'll be able to group report {10} by status, but a Trac upgrade will be needed first: #11464.

comment:6 Changed 10 years ago by Ryan J Ollos

Report {10} was not sorting by ticket id, so I made the following change:

-  ORDER BY __group__, status, @SORT_COLUMN@, p.value, severity, time
+  ORDER BY __group__, @SORT_COLUMN@, p.value, severity, time

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Ryan J Ollos.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.