On Saturday, August 17, 2013 12:11:24 PM UTC-7, Josh Moore wrote: > I am trying to show the active tickets, mine first report (report/8) on > the home wiki page. > > Right now I have it showing active by this: > > [[TicketQuery(client=ClientA,group=component)]] > > Not quite what I am looking for. Does anyone know how to do this? >
This gets you close: [[TicketQuery(group=owner, status!=closed, order=priority, format=table, col=ticket|summary|component|version|milestone|type|owner|status|created)]] I'm not sure how to order the groups so that you get "Mine first", and it seems likely that it's not possible. I don't know the code for ReportModule and QueryModule very well, but in general I view reports as a fallback for when you can't accomplish what you'd like in the Query module, perhaps needing more powerful SQL. Given that, it seems like it would be useful to allow reports to be displayed through the TicketQuery module, e.g. [[TicketQuery(report:8)]]. Addtionally, it would allow placing the TicketQuery macro call in many places and editing the report or query in a single location - via the saved report or query. We might eventually add support for Reports to the IncludeMacro: http://trac-hacks.org/ticket/9147 -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/groups/opt_out.
