Changes between Version 1 and Version 2 of TracReports


Ignore:
Timestamp:
Sep 16, 2005, 12:03:53 AM (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracReports

    v1 v2  
    2929=== Comma-delimited - CSV (Comma Separated Values) ===
    3030Export the report as plain text, each row on its own line, columns separated by a single comma (',').
    31 '''Note:''' Column data is stripped from carriage returns, line feeds and commas to preserve structure.
     31'''Note:''' Carriage returns, line feeds, and commas are stripped from column data to preserve the CSV structure.
    3232
    3333=== Tab-delimited ===
     
    3535
    3636=== RSS - XML Content Syndication ===
    37 All 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.
     37All 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.
    3838
    3939----
     
    103103}}}
    104104
     105To use multiple variables, separate them with an '&'.
     106
     107Example:
     108{{{
     109 http://projects.edgewall.com/trac/reports/14?PRIORITY=high&SEVERITY=critical
     110}}}
     111
    105112
    106113=== Special/Constant Variables ===
     
    192199}}}
    193200
     201=== Reporting on custom fields ===
     202
     203If 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
     205If 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.
    194206
    195207----