Trac ReportsThe Trac reports module provides a simple, yet powerful reporting facility to present information about tickets in the Trac database. Rather than have its own report definition format, TracReports relies on standard SQL SELECT statements for custom report definition. A report consists of these basic parts:
Changing Sort OrderSimple reports - ungrouped reports to be specific - can be changed to be sorted by any column simply by clicking the column header. If a column header is a hyperlink (red), click the column you would like to sort by. Clicking the same header again reverses the order. Alternate Download FormatsAside from the default HTML view, reports can also be exported in a number of alternate formats. At the bottom of the report page, you will find a list of available data formats. Click the desired link to download the alternate report format. Comma-delimited - CSV (Comma Separated Values)Export the report as plain text, each row on its own line, columns separated by a single comma (','). Note: Column data is stripped from carriage returns, line feeds and commas to preserve structure. Tab-delimitedLike above, but uses tabs ( ) instead of comma. RSS - XML Content SyndicationAll reports support syndication using XML/RSS 2.0. To subscribe to a , click the the orange 'XML' icon at the bottom of the page. See TracRss for general information on RSS support in Trac. Creating Custom ReportsCreating a custom report requires a comfortable knowledge of SQL. A report is basically a single named SQL query, executed and presented by Trac. Reports can be viewed and created from a custom SQL expression directly in from the web interface. Typically, a report consists of a SELECT-expression from the 'ticket' table, using the available columns and sorting the way you want it. Ticket columnsThe ticket table has the following columns:
See TracTickets for a detailed description of the column fields. all active tickets, sorted by priority and time Example: All active tickets, sorted by priority and time SELECT id AS ticket, status, severity, priority, owner, time as created, summary FROM ticket WHERE status IN ('new', 'assigned', 'reopened') ORDER BY priority, time Advanced Reports: Dynamic VariablesFor more flexible reports, Trac supports the use of dynamic variables in report SQL statements. In short, dynamic variables are special strings that are replaced by custom data before query execution. Using Variables in a QueryThe syntax for dynamic variables is simple, any upper case word beginning with '$' is considered a variable. Example: SELECT id AS ticket,summary FROM ticket WHERE priority='$PRIORITY' To assign a value to $PRIORITY when viewing the report, you must define it as an argument in the report URL, leaving out the the leading '$'. Example: http://projects.edgewall.com/trac/reports/14?PRIORITY=high Special/Constant VariablesThere is one magic dynamic variable to allow practical reports, its value automatically set without having to change the URL.
Example (List all tickets assigned to me): SELECT id AS ticket,summary FROM ticket WHERE owner='$USER' Advanced Reports: Custom FormattingTrac is also capable of more advanced reports, including custom layouts, result grouping and user-defined CSS styles. To create such reports, we'll use specialized SQL statements to control the output of the Trac report engine. Special ColumnsTo format reports, TracReports looks for 'magic' column names in the query result. These 'magic' names are processed and affect the layout and style of the final report. Automatically formatted columns
Example: SELECT id as ticket, created, status, summary FROM ticket Custom formatting columnsColumns whose names begin and end with 2 underscores (Example: _'_color_'_) are assumed to be formatting hints, affecting the appearance of the row.
Example: List active tickets, grouped by milestone, colored by priority SELECT p.value AS __color__, t.milestone AS __group__, (CASE owner WHEN 'daniel' THEN 'font-weight: bold; background: red;' ELSE '' END) AS __style__, t.id AS ticket, summary FROM ticket t,enum p WHERE t.status IN ('new', 'assigned', 'reopened') AND p.name=t.priority AND p.type='priority' ORDER BY t.milestone, p.value, t.severity, t.time Note: A table join is used to match ticket priorities with their numeric representation from the enum table. Changing layout of report rowsBy default, all columns on each row are display on a single row in the HTML report, possibly formatted according to the descriptions above. However, it's also possible to create multi-line report entries.
Example: List active tickets, grouped by milestone, colored by priority, with description and multi-line layout SELECT p.value AS __color__, t.milestone AS __group__, (CASE owner WHEN 'daniel' THEN 'font-weight: bold; background: red;' ELSE '' END) AS __style__, t.id AS ticket, summary AS summary_, -- ## Break line here component,version, severity, milestone, status, owner, time AS created, changetime AS modified, -- ## Dates are formatted description AS _description_, -- ## Uses a full row changetime AS _changetime, reporter AS _reporter -- ## Hidden from HTML output FROM ticket t,enum p WHERE t.status IN ('new', 'assigned', 'reopened') AND p.name=t.priority AND p.type='priority' ORDER BY t.milestone, p.value, t.severity, t.time See also: TracTickets, TracQuery, TracGuide |