Changes between Version 5 and Version 6 of TicketTreePlugin


Ignore:
Timestamp:
May 30, 2011, 3:52:47 PM (13 years ago)
Author:
Roberto Longobardi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TicketTreePlugin

    v5 v6  
    6363
    6464
    65 == Querying ==
     65== The Macro and how to use a Query ==
    6666The plugin provides a macro, which lets you build custom ticket trees based on specific ticket
    6767queries.
    6868Used without any parameter, the macro will display a tree with all of the tickets.
     69
     70Edit your preferred wiki page and add the following snippet to use the macro without any parameter. It will display all of your tickets.
     71{{{
     72[[TicketTree()]]
     73}}}
     74
     75To use a query, add it in parenthesys. For example, the following query will display only tickets in the "new" status.
     76{{{
     77[[TicketTree(status=new)]]
     78}}}
     79
     80You can use the usual [http://trac.edgewall.org/wiki/TracQuery Trac Query syntax] for the query.
    6981
    7082== Simplified categorization ==