Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | changed fossil ticket fieldlist to fossil ticket list fields and added fossil ticket list reports |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | wolfgangTicketCmd |
| Files: | files | file ages | folders |
| SHA1: |
3f06f272cd51f094a6c9ceca4177ce1e |
| User & Date: | wolfgang 2010-10-07 09:11:37.000 |
Context
|
2010-10-07
| ||
| 15:57 | add success message to fossil ticket add/set ... (check-in: e00f13dc6e user: wolfgang tags: wolfgangTicketCmd) | |
| 09:11 | changed fossil ticket fieldlist to fossil ticket list fields and added fossil ticket list reports ... (check-in: 3f06f272cd user: wolfgang tags: wolfgangTicketCmd) | |
|
2010-10-06
| ||
| 19:10 | typo in fossil ticket help fixed, solving [a888fc2aa7] ... (check-in: 3c6f67fc81 user: wolfgang tags: wolfgangTicketCmd) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
940 941 942 943 944 945 946 947 948 949 950 951 952 953 |
}else{
sqlite3_set_authorizer(g.db, report_query_authorizer, (void*)&zErr1);
sqlite3_exec(g.db, zSql, output_tab_separated, &count, &zErr2);
sqlite3_set_authorizer(g.db, 0, 0);
cgi_set_content_type("text/plain");
}
}
/*
** user defined separator used by ticket show command
*/
static const char *zSep = 0;
/*
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 |
}else{
sqlite3_set_authorizer(g.db, report_query_authorizer, (void*)&zErr1);
sqlite3_exec(g.db, zSql, output_tab_separated, &count, &zErr2);
sqlite3_set_authorizer(g.db, 0, 0);
cgi_set_content_type("text/plain");
}
}
/*
** report number for full table ticket export
*/
static const char zFullTicketRptRn[] = "0";
/*
** report title for full table ticket export
*/
static const char zFullTicketRptTitle[] = "full ticket export";
/*
** show all reports, which can be used for ticket show.
** Output is written to stdout as tab delimited table
*/
void rpt_list_reports(void){
Stmt q;
char const aRptOutFrmt[] = "%s\t%s\n";
printf("Available reports:\n");
printf(aRptOutFrmt,"report number","report title");
printf(aRptOutFrmt,zFullTicketRptRn,zFullTicketRptTitle);
db_prepare(&q,"SELECT rn,title FROM reportfmt ORDER BY rn");
while( db_step(&q)==SQLITE_ROW ){
const char *zRn = db_column_text(&q, 0);
const char *zTitle = db_column_text(&q, 1);
printf(aRptOutFrmt,zRn,zTitle);
}
db_finalize(&q);
}
/*
** user defined separator used by ticket show command
*/
static const char *zSep = 0;
/*
|
| ︙ | ︙ | |||
1026 1027 1028 1029 1030 1031 1032 |
const char *zRep,
const char *zSepIn,
const char *zFilter,
tTktShowEncoding enc
){
Stmt q;
char *zSql;
| | | | | | | > | 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 |
const char *zRep,
const char *zSepIn,
const char *zFilter,
tTktShowEncoding enc
){
Stmt q;
char *zSql;
const char *zTitle;
const char *zOwner;
const char *zClrKey;
char *zErr1 = 0;
char *zErr2 = 0;
int count = 0;
int rn;
if (!zRep || !strcmp(zRep,zFullTicketRptRn) || !strcmp(zRep,zFullTicketRptTitle) ){
zTitle = zFullTicketRptTitle;
zSql = "SELECT * FROM ticket";
zOwner = g.zLogin;
zClrKey = "";
}else{
rn = atoi(zRep);
if( rn ){
db_prepare(&q,
"SELECT title, sqlcode, owner, cols FROM reportfmt WHERE rn=%d", rn);
}else{
db_prepare(&q,
"SELECT title, sqlcode, owner, cols FROM reportfmt WHERE title='%s'", zRep);
}
if( db_step(&q)!=SQLITE_ROW ){
db_finalize(&q);
rpt_list_reports();
fossil_fatal("unkown report format(%s)!",zRep);
}
zTitle = db_column_malloc(&q, 0);
zSql = db_column_malloc(&q, 1);
zOwner = db_column_malloc(&q, 2);
zClrKey = db_column_malloc(&q, 3);
db_finalize(&q);
|
| ︙ | ︙ |
Changes to src/tkt.c.
| ︙ | ︙ | |||
861 862 863 864 865 866 867 | ** Otherwise, the simplified encoding as on the show report raw ** page in the gui is used. ** ** Instead of the report title its possible to use the report ** number. Using the special report number 0 list all columns, ** defined in the ticket table. ** | | > > > > | 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 | ** Otherwise, the simplified encoding as on the show report raw ** page in the gui is used. ** ** Instead of the report title its possible to use the report ** number. Using the special report number 0 list all columns, ** defined in the ticket table. ** ** %fossil ticket list fields ** ** list all fields, defined for ticket in the fossil repository ** ** %fossil ticket list reports ** ** list all ticket reports, defined in the fossil repository ** ** %fossil ticket set TICKETUUID FIELD VALUE ?FIELD VALUE .. ? ?-q|--quote? ** %fossil ticket change TICKETUUID FIELD VALUE ?FIELD VALUE .. ? ?-q|--quote? ** ** change ticket identified by TICKETUUID and set the value of ** field FIELD to VALUE. Valid field descriptions are: ** status, type, severity, priority, resolution, ** foundin, private_contact, resolution, title or comment |
| ︙ | ︙ | |||
908 909 910 911 912 913 914 |
if( g.argc<3 ){
usage("add|fieldlist|set|show");
}else{
n = strlen(g.argv[2]);
if( n==1 && g.argv[2][0]=='s' ){
/* set/show cannot be distinguished, so show the usage */
usage("add|fieldlist|set|show");
| | > > > > > | | | | | | | > > > > > > | 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 |
if( g.argc<3 ){
usage("add|fieldlist|set|show");
}else{
n = strlen(g.argv[2]);
if( n==1 && g.argv[2][0]=='s' ){
/* set/show cannot be distinguished, so show the usage */
usage("add|fieldlist|set|show");
}else if( strncmp(g.argv[2],"list",n)==0 ){
if( g.argc==3 ){
usage("list fields|reports");
}else{
n = strlen(g.argv[3]);
if( !strncmp(g.argv[3],"fields",n) ){
/* simply show all field names */
int i;
/* read all available ticket fields */
getAllTicketFields();
for(i=0; i<nField; i++){
printf("%s\n",azField[i]);
}
}else if( !strncmp(g.argv[3],"reports",n) ){
rpt_list_reports();
}else{
fossil_fatal("unknown ticket list option '%s'!",g.argv[3]);
}
}
}else{
/* add a new ticket or set fields on existing tickets */
tTktShowEncoding tktEncoding;
tktEncoding = find_option("quote","q",0) ? tktFossilize : tktNoTab;
|
| ︙ | ︙ |