Modify

Opened 13 years ago

Closed 12 years ago

#9025 closed enhancement (wontfix)

Documentation enhancements examples

Reported by: jkey@… Owned by: Mark Ryan
Priority: normal Component: ChildTicketsPlugin
Severity: minor Keywords: Documentation examples
Cc: Trac Release: 0.11

Description

Hi. Just two examples for consideration - maybe could be part of the documentation...

Report showing tickets in a certain states: displayed are only tickets created prior to the installation of the ChildTickets plugin and Tickets created afterwards, but without parent (toplevel tickets)

Bericht über alle Tickets mit einem bestimmten Status, Untertickets sind ausgeblendet

SELECT id AS ticket, status, severity, priority, 
       time as created, summary 
FROM ticket
LEFT OUTER JOIN ticket_custom c ON (ticket.id = c.ticket AND c.name = 'parent')
  WHERE owner='$USER' and status != 'closed' and (c.value is null or c.value='') 
  ORDER BY time DESC

TicketQuery showing only Tickets in a certain state with no parent (toplevel tickets)

[[TicketQuery(priority=blocker&status=new|accepted|assigned|reopened&parent=)]]

Attachments (0)

Change History (2)

comment:1 Changed 13 years ago by anonymous

Component: SELECT A HACKChildTicketsPlugin
Owner: changed from anonymous to Mark Ryan

comment:2 Changed 12 years ago by Mark Ryan

Resolution: wontfix
Status: newclosed

Thanks for the suggestions ...

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Mark Ryan.
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.