Changes between Version 53 and Version 54 of TracTicketStatsPlugin


Ignore:
Timestamp:
Sep 12, 2016, 5:58:32 PM (8 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketStatsPlugin

    v53 v54  
    1616== Description
    1717
    18 This plugin visualizes Trac ticket statistics. It plots the number of open tickets, the number of new tickets and the number of tickets closed over a time period. The plugin includes a macro that allows a TracQuery to be used as an arguments.
     18This plugin visualizes Trac ticket statistics. It plots the number of open tickets, the number of new tickets and the number of tickets closed over a time period. It correctly accounts for tickets being reopened and closed during the reporting period, ie by not including them in the total.
     19
     20The plugin includes a macro that allows a TracQuery to be used as an arguments.
    1921
    2022This plugin requires:
     
    7173
    7274{{{
    73 [[TicketStats(title = Total tickets last 15 days, height=250,daterange=15d,res_days=1)]]
     75[[TicketStats(title = Total tickets last 15 days, height=250, daterange=15d, res_days=1)]]
    7476}}}
    7577
    7678{{{
    77 [[TicketStats(title = Error tickets by week last 3 months, daterange=3m,res_days=7, query=Type='error')]]
     79[[TicketStats(title = Error tickets by week last 3 months, daterange=3m, res_days=7, query=Type='error')]]
    7880}}}
    7981
    8082The macro's arguments are:
     83 * '''title''': caption to your graph
    8184 * '''height''': graph height, default 500 px.
    8285 * '''column_width''': default 40 px.
    83  * '''res_days''': resolution (in days) for each point in the graph.
    84  * '''title'''
    8586 * '''daterange''': date range specified as "from;to" or just "to". Using Trac's 0.12 date field query syntax (trac:wiki:TracQuery?version=20#QueryLanguage).
     87 * '''res_days''': resolution in days for each point in the graph.
    8688
    8789== Recent Changes