22 | | * '''ID''' -- Unique (sequential) identifier |
23 | | * '''Title''' -- Descriptive title |
24 | | * '''Description''' -- A brief description of the report, in WikiFormatting text. |
25 | | * '''Report Body''' -- List of results from report query, formatted according to the methods described below. |
26 | | * '''Footer''' -- Links to alternative download formats for this report. |
27 | | |
28 | | == Changing Sort Order == |
29 | | Simple reports - ungrouped reports to be specific - can be changed to be sorted by any column simply by clicking the column header. |
30 | | |
31 | | 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. |
32 | | |
33 | | == Changing Report Numbering == |
34 | | There may be instances where you need to change the ID of the report, perhaps to organize the reports better. At present this requires changes to the trac database. The ''report'' table has the following schema (as of 0.10): |
35 | | * id integer PRIMARY KEY |
36 | | * author text |
37 | | * title text |
38 | | * query text |
39 | | * description text |
40 | | Changing the ID changes the shown order and number in the ''Available Reports'' list and the report's perma-link. This is done by running something like: |
41 | | {{{ |
42 | | update report set id=5 where id=3; |
43 | | }}} |
44 | | Keep in mind that the integrity has to be maintained (i.e., ID has to be unique, and you don't want to exceed the max, since that's managed by SQLite someplace). |
45 | | |
46 | | == Navigating Tickets == |
47 | | Clicking on one of the report results will take you to that ticket. You can navigate through the results by clicking the ''Next Ticket'' or ''Previous Ticket'' links just below the main menu bar, or click the ''Back to Report'' link to return to the report page. |
48 | | |
49 | | You can safely edit any of the tickets and continue to navigate through the results using the Next/Previous/Back to Report links after saving your results, but when you return to the report, there will be no hint about what has changed, as would happen if you were navigating a list of tickets obtained from a query (see TracQuery#NavigatingTickets). ''(since 0.11)'' |
50 | | |
51 | | == Alternative Download Formats == |
52 | | Aside from the default HTML view, reports can also be exported in a number of alternative formats. |
| 19 | * '''ID''' — Unique (sequential) identifier |
| 20 | * '''Title''' — Descriptive title |
| 21 | * '''Description''' — A brief description of the report, in WikiFormatting text. |
| 22 | * '''Report Body''' — List of results from report query, formatted according to the methods described below. |
| 23 | * '''Footer''' — Links to alternative download formats for this report. |
| 24 | |
| 25 | == Changing Sort Order |
| 26 | |
| 27 | Simple reports - ungrouped reports to be specific - can be sorted by clicking the column header. |
| 28 | |
| 29 | If a column header is a hyperlink (red), click the column to sort by it. Clicking the same header again reverses the sort order. |
| 30 | |
| 31 | == Navigating Tickets |
| 32 | |
| 33 | Clicking on one of the report results will take you to that ticket. You can navigate through the results by clicking the ''Next Ticket'' or ''Previous Ticket'' contextual navigation links, or click the ''Back to Report'' link to return to the report page. |
| 34 | |
| 35 | You can safely edit any of the tickets and continue to navigate through the results using the ''!Next/Previous/Back to Report'' links after saving your results, but when you return to the report, there will be no hint about what has changed, in contrast to the query results (see TracQuery#NavigatingTickets). |
| 36 | |
| 37 | == Alternate Download Formats |
| 38 | |
| 39 | In addition to the HTML view, reports can also be exported in a number of alternate formats. |
152 | | |
153 | | ---- |
154 | | |
155 | | |
156 | | == Advanced Reports: Custom Formatting == |
157 | | Trac is also capable of more advanced reports, including custom layouts, |
158 | | result grouping and user-defined CSS styles. To create such reports, we'll use |
159 | | specialized SQL statements to control the output of the Trac report engine. |
160 | | |
161 | | == Special Columns == |
162 | | To format reports, TracReports looks for 'magic' column names in the query |
163 | | result. These 'magic' names are processed and affect the layout and style of the |
164 | | final report. |
165 | | |
166 | | === Automatically formatted columns === |
167 | | * '''ticket''' -- Ticket ID number. Becomes a hyperlink to that ticket. |
168 | | * '''created, modified, date, time''' -- Format cell as a date and/or time. |
169 | | |
170 | | * '''description''' -- Ticket description field, parsed through the wiki engine. |
| 132 | == Advanced Reports: Custom Formatting |
| 133 | |
| 134 | Trac is also capable of more advanced reports, including custom layouts, result grouping and user-defined CSS styles. To create such reports, we will use specialized SQL statements to control the output of the Trac report engine. |
| 135 | |
| 136 | === Special Columns |
| 137 | |
| 138 | To format reports, TracReports look for 'magic' column names in the query result. These 'magic' names are processed and affect the layout and style of the final report. |
| 139 | |
| 140 | === Automatically formatted columns |
| 141 | |
| 142 | * '''ticket''' — Ticket ID number. Becomes a hyperlink to that ticket. |
| 143 | * '''id''' — same as '''ticket''' above when '''realm''' is not set |
| 144 | * '''realm''' — together with '''id''', can be used to create links to other resources than tickets (e.g. a realm of ''wiki'' and an ''id'' to a page name will create a link to that wiki page) |
| 145 | - for some resources, it may be necessary to specify their ''parent'' resources (e.g. for ''changeset'', the ''repos'') and this can be achieved using the '''parent_realm''' and '''parent_id''' columns |
| 146 | * '''created, modified, date, time''' — Format cell as a date and/or time. |
| 147 | * '''description''' — Ticket description field, parsed through the wiki engine. |
200 | | t.id AS ticket, summary |
201 | | FROM ticket t,enum p |
202 | | WHERE t.status IN ('new', 'assigned', 'reopened') |
203 | | AND p.name=t.priority AND p.type='priority' |
204 | | ORDER BY t.milestone, p.value, t.severity, t.time |
205 | | }}} |
206 | | |
207 | | '''Note:''' A table join is used to match ''ticket'' priorities with their |
208 | | numeric representation from the ''enum'' table. |
209 | | |
210 | | === Changing layout of report rows === |
211 | | By default, all columns on each row are display on a single row in the HTML |
212 | | report, possibly formatted according to the descriptions above. However, it's |
213 | | also possible to create multi-line report entries. |
214 | | |
215 | | * '''`column_`''' -- ''Break row after this''. By appending an underscore ('_') to the column name, the remaining columns will be be continued on a second line. |
216 | | |
217 | | * '''`_column_`''' -- ''Full row''. By adding an underscore ('_') both at the beginning and the end of a column name, the data will be shown on a separate row. |
218 | | |
219 | | * '''`_column`''' -- ''Hide data''. Prepending an underscore ('_') to a column name instructs Trac to hide the contents from the HTML output. This is useful for information to be visible only if downloaded in other formats (like CSV or RSS/XML). |
220 | | |
221 | | '''Example:''' ''List active tickets, grouped by milestone, colored by priority, with description and multi-line layout'' |
222 | | |
223 | | {{{ |
| 184 | t.id AS ticket, summary |
| 185 | FROM ticket t,enum p |
| 186 | WHERE t.status IN ('new', 'assigned', 'reopened') |
| 187 | AND p.name = t.priority AND p.type = 'priority' |
| 188 | ORDER BY t.milestone, p.value, t.severity, t.time |
| 189 | }}} |
| 190 | |
| 191 | Note that table join is used to match ''ticket'' priorities with their numeric representation from the ''enum'' table. |
| 192 | |
| 193 | === Changing layout of report rows === #column-syntax |
| 194 | |
| 195 | By 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 is also possible to create multi-line report entries. |
| 196 | |
| 197 | * '''`column_`''' — ''Break row after this''. By appending an underscore ('_') to the column name, the remaining columns will be continued on a second line. |
| 198 | |
| 199 | * '''`_column_`''' — ''Full row''. By adding an underscore ('_') both at the beginning and the end of a column name, the data will be shown on a separate row. |
| 200 | |
| 201 | * '''`_column`''' — ''Hide data''. Prepending an underscore ('_') to a column name instructs Trac to hide the contents from the HTML output. This is useful for information to be visible only if downloaded in other formats (like CSV or RSS/XML). |
| 202 | This can be used to hide any kind of column, even important ones required for identifying the resource, e.g. `id as _id` will hide the '''Id''' column but the link to the ticket will be present. |
| 203 | |
| 204 | '''Example:''' List active tickets, grouped by milestone, colored by priority, with description and multi-line layout: |
| 205 | |
| 206 | {{{#!sql |
234 | | FROM ticket t,enum p |
235 | | WHERE t.status IN ('new', 'assigned', 'reopened') |
236 | | AND p.name=t.priority AND p.type='priority' |
237 | | ORDER BY t.milestone, p.value, t.severity, t.time |
238 | | }}} |
239 | | |
240 | | === Reporting on custom fields === |
241 | | |
242 | | If you have added custom fields to your tickets (a feature since 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. |
243 | | |
244 | | 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. |
245 | | |
246 | | '''Note that you need to set up permissions in order to see the buttons for adding or editing reports.''' |
| 217 | FROM ticket t,enum p |
| 218 | WHERE t.status IN ('new', 'assigned', 'reopened') |
| 219 | AND p.name = t.priority AND p.type = 'priority' |
| 220 | ORDER BY t.milestone, p.value, t.severity, t.time |
| 221 | }}} |
| 222 | |
| 223 | === Reporting on custom fields |
| 224 | |
| 225 | If you have added [TracTicketsCustomFields custom fields] to your tickets, you can write a SQL query to include them in a report. You'll need to make a join on the `ticket_custom` table. |
| 226 | |
| 227 | 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 [trac:TracIniReportCustomFieldSample TracIniReportCustomFieldSample] for some examples. |
| 228 | |
| 229 | === A note about SQL rewriting #rewriting |
| 230 | |
| 231 | Beyond the relatively trivial replacement of dynamic variables, the SQL query is also altered in order to support two features of the reports: |
| 232 | 1. [#sort-order sorting] |
| 233 | 1. pagination: limiting the number of results displayed on each page |
| 234 | In order to support the first feature, the sort column is inserted in the `ORDER BY` clause in the first position or in the second position if a `__group__` column is specified (an `ORDER BY` clause is created if needed). In order to support pagination, a `LIMIT ... OFFSET ...` clause is appended. |
| 235 | The query might be too complex for the automatic rewrite to work correctly, resulting in an erroneous query. In this case you still have the possibility to control exactly how the rewrite is done by manually inserting the following tokens: |
| 236 | - `@SORT_COLUMN@`, the place where the name of the selected sort column will be inserted, |
| 237 | - `@LIMIT_OFFSET@`, the place where the pagination support clause will be added |
| 238 | Note that if you write them after an SQL comment, `--`, you'll effectively disable rewriting if this is what you want! |
| 239 | |
| 240 | Let's take an example, consider the following SQL query: |
| 241 | {{{#!sql |
| 242 | -- ## 4: Assigned, Active Tickets by Owner ## -- |
| 243 | |
| 244 | -- |
| 245 | -- List assigned tickets, group by ticket owner, sorted by priority. |
| 246 | -- |
| 247 | |
| 248 | SELECT p.value AS __color__, |
| 249 | owner AS __group__, |
| 250 | id AS ticket, summary, component, milestone, t.type AS type, severity, time AS created, |
| 251 | changetime AS _changetime, description AS _description, |
| 252 | reporter AS _reporter |
| 253 | FROM ticket t,enum p |
| 254 | WHERE status = 'assigned' |
| 255 | AND p.name = t.priority AND p.type = 'priority' |
| 256 | ORDER BY __group__, p.value, severity, time |
| 257 | }}} |
| 258 | |
| 259 | The automatic rewrite will be the following (4 rows per page, page 2, sorted by `component`): |
| 260 | {{{#!sql |
| 261 | SELECT p.value AS __color__, |
| 262 | owner AS __group__, |
| 263 | id AS ticket, summary, component, milestone, t.type AS type, severity, time AS created, |
| 264 | changetime AS _changetime, description AS _description, |
| 265 | reporter AS _reporter |
| 266 | FROM ticket t,enum p |
| 267 | WHERE status = 'assigned' |
| 268 | AND p.name = t.priority AND p.type = 'priority' |
| 269 | ORDER BY __group__ ASC, `component` ASC, __group__, p.value, severity, time |
| 270 | LIMIT 4 OFFSET 4 |
| 271 | }}} |
| 272 | |
| 273 | The equivalent SQL query with the rewrite tokens would have been: |
| 274 | {{{#!sql |
| 275 | SELECT p.value AS __color__, |
| 276 | owner AS __group__, |
| 277 | id AS ticket, summary, component, milestone, t.type AS type, severity, time AS created, |
| 278 | changetime AS _changetime, description AS _description, |
| 279 | reporter AS _reporter |
| 280 | FROM ticket t,enum p |
| 281 | WHERE status = 'assigned' |
| 282 | AND p.name = t.priority AND p.type = 'priority' |
| 283 | ORDER BY __group__, @SORT_COLUMN@, p.value, severity, time |
| 284 | @LIMIT_OFFSET@ |
| 285 | }}} |
| 286 | |
| 287 | If you want to always sort first by priority and only then by the user selected sort column, simply use the following `ORDER BY` clause: |
| 288 | {{{#!sql |
| 289 | ORDER BY __group__, p.value, @SORT_COLUMN@, severity, time |
| 290 | }}} |
| 291 | |
| 292 | == Changing Report Numbering |
| 293 | |
| 294 | There may be instances where you need to change the ID of the report, perhaps to organize the reports better. At present this requires changes to the trac database. The ''report'' table has the following schema: |
| 295 | * id integer PRIMARY KEY |
| 296 | * author text |
| 297 | * title text |
| 298 | * query text |
| 299 | * description text |
| 300 | Changing the ID changes the shown order and number in the ''Available Reports'' list and the report's perma-link. This is done by running something like: |
| 301 | {{{#!sql |
| 302 | UPDATE report SET id = 5 WHERE id = 3; |
| 303 | }}} |
| 304 | Keep in mind that the integrity has to be maintained, i.e. ID has to be unique, and you don't want to exceed the max for your database. |
| 305 | |
| 306 | You may also need to update or remove the report number stored in the report or query. |