Changes between Version 1 and Version 2 of TracReports
- Timestamp:
- Sep 16, 2005, 12:03:53 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracReports
v1 v2 29 29 === Comma-delimited - CSV (Comma Separated Values) === 30 30 Export the report as plain text, each row on its own line, columns separated by a single comma (','). 31 '''Note:''' C olumn data is stripped from carriage returns, line feeds and commas to preservestructure.31 '''Note:''' Carriage returns, line feeds, and commas are stripped from column data to preserve the CSV structure. 32 32 33 33 === Tab-delimited === … … 35 35 36 36 === RSS - XML Content Syndication === 37 All reports support syndication using XML/RSS 2.0. To subscribe to a , click thethe orange 'XML' icon at the bottom of the page. See TracRss for general information on RSS support in Trac.37 All reports support syndication using XML/RSS 2.0. To subscribe to an RSS feed, click the orange 'XML' icon at the bottom of the page. See TracRss for general information on RSS support in Trac. 38 38 39 39 ---- … … 103 103 }}} 104 104 105 To use multiple variables, separate them with an '&'. 106 107 Example: 108 {{{ 109 http://projects.edgewall.com/trac/reports/14?PRIORITY=high&SEVERITY=critical 110 }}} 111 105 112 106 113 === Special/Constant Variables === … … 192 199 }}} 193 200 201 === Reporting on custom fields === 202 203 If you have added custom fields to your tickets (experimental feature in v0.8, see TracTicketsCustomFields), you can write a SQL query to cover them. You'll need to make a join on the ticket_custom table, but this isn't especially easy. 204 205 If you have tickets in the database ''before'' you declare the extra fields in trac.ini, there will be no associated data in the ticket_custom table. To get around this, use SQL's "LEFT OUTER JOIN" clauses. See TracIniReportCustomFieldSample for some examples. 194 206 195 207 ----