Changes between Version 1 and Version 2 of TracReports

Show
Ignore:
Timestamp:
11/30/06 07:01:31 (6 years ago)
Author:
openlayers
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracReports

    v1 v2  
    1717  ''This will make the query module the default handler for the “View Tickets” navigation item. We encourage you to try this configuration and report back what kind of features of reports you are missing, if any.'' 
    1818 
    19 A report consists of these basic parts: 
     19A report consists of these basic [http://sleepaid.taskfile.com/ sleeping aid] parts: 
    2020 * '''ID''' -- Unique (sequential) identifier  
    2121 * '''Title'''  -- Descriptive title 
    2222 * '''Description'''  -- A brief description of the report, in WikiFormatting text. 
    2323 * '''Report Body''' -- List of results from report query, formatted according to the methods described below. 
    24  * '''Footer''' -- Links to alternative download formats for this report. 
     24 * '''Footer''' -- Links to alternative [http://carbblocker.taskfile.com/ carb blocker] to download formats for this report. 
    2525 
    2626== Changing Sort Order == 
    27 Simple reports - ungrouped reports to be specific - can be changed to be sorted by any column simply by clicking the column header.  
    28  
    29 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. 
     27Simple reports - ungrouped reports to be specific - can be changed to have [http://antiaging.taskfile.com/ anti aging] effect to be sorted by any column simply by clicking the column header.  
     28 
     29If a column header is a hyperlink (red), click the column you would like to sort by. Clicking the same header again reverses the order for [http://hoodia.taskfile.com/ weight loss pills]. 
    3030 
    3131 
     
    9494== Advanced Reports: Dynamic Variables == 
    9595For more flexible reports, Trac supports the use of ''dynamic variables'' in report SQL statements.  
    96 In short, dynamic variables are ''special'' strings that are replaced by custom data before query execution. 
     96In short, to [http://www.clearuppimples.com/ clear up acne] you will need dynamic variables are ''special'' strings that are replaced by custom data before query execution. 
    9797 
    9898=== Using Variables in a Query === 
     
    180180By default, all columns on each row are display on a single row in the HTML 
    181181report, possibly formatted according to the descriptions above. However, it's 
    182 also possible to create multi-line report entries. 
     182also possible to get a natural [http://www.boweltreatment.com/ ibs treatment] rather than create multi-line report entries. 
    183183 
    184184 * '''column_''' -- ''Break row after this''. By appending an underscore ('_') to the column name, the remaining columns will be be continued on a second line. 
     
    209209=== Reporting on custom fields === 
    210210 
    211 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. 
     211If you have added [http://www.helpthyroid.com/ underactive thyroid] to your list, 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. 
    212212 
    213213If 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.