Changes between Version 12 and Version 13 of TicketTreePlugin
- Timestamp:
- Aug 21, 2015, 8:34:42 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TicketTreePlugin
v12 v13 7 7 A Trac plugin to display tickets in a tree, organized based on structured ticket titles. 8 8 9 Often struggled with thousands of Trac tickets and missing a clear picture of where the problems are? 10 11 Ticket Tree allows you to categorize your tickets based on the areas affected. 12 Given this categorization, you can then display the tickets in a tree, getting a better picture of the areas and sub-areas with more problems. 9 Have you often struggled with thousands of Trac tickets and missing a clear picture of where the problems are? Ticket Tree allows you to categorize your tickets based on the areas affected. With this categorization you can then display the tickets in a tree, getting a better picture of the areas and sub-areas with more problems. 13 10 In addition to that, the tree view lets you navigate your tickets more easily. 14 11 … … 67 64 Used without any parameter, the macro will display a tree with all of the tickets. 68 65 69 Edit your preferred wiki page and add the following snippet to use the macro without any parameter. It will display all of your tickets .66 Edit your preferred wiki page and add the following snippet to use the macro without any parameter. It will display all of your tickets: 70 67 {{{ 71 68 [[TicketTree()]] 72 69 }}} 73 70 74 To use a query, add it in parenthes ys. For example, the following query will display only tickets in the "new" status.71 To use a query, add it in parentheses. For example, the following query will display only tickets in the "new" status: 75 72 {{{ 76 73 [[TicketTree(status=new)]] … … 94 91 === Refreshing 95 92 96 The "Refresh" button is useful to perform the query again and updatethe tree.93 The "Refresh" button performs the query again and updates the tree. 97 94 98 95 == Bugs/Feature Requests 99 96 100 97 If you have any issues, create a 101 [ http://trac-hacks.org/newticket?component=TicketTreePlugin&owner=seccanjnew ticket].98 [/newticket?component=TicketTreePlugin new ticket]. 102 99 103 100 Existing bugs and feature requests for TicketTreePlugin are … … 109 106 110 107 * Project web page on !SourceForge.net: http://sourceforge.net/projects/tickettree/ 111 * Project web page on Pypi: http://pypi.python.org/pypi/TicketTree 108 * Project web page on Pypi: [pypi:TicketTree] 109 110 == Installation 111 112 General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page. 112 113 113 114 == Example