Changes between Version 37 and Version 38 of TracTicketStatsPlugin


Ignore:
Timestamp:
May 13, 2013, 3:33:28 AM (11 years ago)
Author:
Ryan J Ollos
Comment:

Refs #8140, #9808, #8114.

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketStatsPlugin

    v37 v38  
    1010
    1111'''News'''
    12  * 2010-01-10: TicketStatsMacro will be merged with the TracTicketStatsPlugin (#8140).
     12 * 2013-05-12: TicketStatsMacro has been merged with the TracTicketStatsPlugin (#8140).
    1313}}}
    1414
     
    1717== Description ==
    1818
    19 TracTicketStatsPlugin visualizes Trac ticket statistics.  It plots the number of open tickets, the number of new tickets and the number of tickets closed.
     19TracTicketStatsPlugin visualizes Trac ticket statistics.  It plots the number of open tickets, the number of new tickets and the number of tickets closed. The plugin includes a macro that allows t:TracQuery's to be used as arguments.
    2020
    21 See also TicketChartsMacro, TracMetrixPlugin, TicketStatsMacro.
    22 
    23 '''License:''' This plugin currently has no license. Ticket #9808 has been opened to try and contact the author.
    24 
    25 == Requirements ==
    26 
    27 This plugin was developed for Trac 0.11 with Genshi running Python 2.6. I have not tested this plugin in other environment so if you have any issues, create a
    28 [http://trac-hacks.org/newticket?component=TracTicketStatsPlugin&owner=rjollos new ticket] or fix them and submit a patch.
    29 
    30 ''Note:'' Seems also to work with Python 2.4.
     21See also TicketChartsMacro, TracMetrixPlugin.
    3122
    3223== Screenshots ==
     
    3425[[Image(http://trac-hacks.org/attachment/wiki/TracTicketStatsPlugin/screenshot01.png?format=raw,50%)]] [[br]]
    3526Screenshot of v2.1 on our dev server.
    36 
    37 == Permissions ==
    38 
    39 This plugin adds the permission TSTATS_VIEW.  User must have this permission to view the ticket statistics page.
    4027
    4128== Bugs/Feature Requests ==
     
    5542#!ini
    5643[ticketstats]
    57 yui_base_url = http://yui.yahooapis.com/2.5.2      # Location of YUI API
     44yui_base_url = http://yui.yahooapis.com/2.9.0      # Location of YUI API
    5845}}}
    5946
     
    7562This plugin can be used to visualize the progress of a project by seeing the rate of tickets being created vs. tickets being closed.  Graphs can be customized.
    7663
     64The macro allows graphs to be inserted within wiki markup.
     65
     66{{{
     67[[TicketStats(title = Total tickets last 15 days, height=250,daterange=15d,res_days=1)]]
     68}}}
     69
     70{{{
     71[[TicketStats(title = Error tickets by week last 3 months, daterange=3m,res_days=7, query=Type='error')]]
     72}}}
     73
     74[[Image(wiki:TicketStatsMacro:severalGraphs.png, 50%)]]
     75
     76The macro arguments are:
     77 * '''height''': graph height, default 500 px.
     78 * '''column_width''': default 40 px.
     79 * '''res_days''': resolution (in days) for each point in the graph.
     80 * '''title'''
     81 * '''daterange''': date range specified as "from;to" or just "to". Using 0.12's date field query sintax (http://trac.edgewall.org/wiki/TracQuery?version=20#QueryLanguage)
     82
    7783== Recent Changes ==
    7884