841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
|
**
** %fossil ticket show (REPORTTITLE|REPORTNR) ?TICKETFILTER? ?options?
**
** options can be:
** ?-l|--limit LIMITCHAR?
** ?-q|--quote?
**
** Run the the ticket report, identified by the report format title
** used in the gui. The data is written as flat file on stdout,
** using "," as separator. The seperator "," can be changed using
** the -l or --limit option.
** If TICKETFILTER is given on the commandline, the query is
** limited with a new WHERE-condition.
** example: Report lists a column # with the uuid
** TICKETFILTER may be [#]='uuuuuuuuu'
|
|
|
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
|
**
** %fossil ticket show (REPORTTITLE|REPORTNR) ?TICKETFILTER? ?options?
**
** options can be:
** ?-l|--limit LIMITCHAR?
** ?-q|--quote?
**
** Run the ticket report, identified by the report format title
** used in the gui. The data is written as flat file on stdout,
** using "," as separator. The seperator "," can be changed using
** the -l or --limit option.
** If TICKETFILTER is given on the commandline, the query is
** limited with a new WHERE-condition.
** example: Report lists a column # with the uuid
** TICKETFILTER may be [#]='uuuuuuuuu'
|