914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
|
** WEBPAGE: /rptview
**
** Generate a report. The rn query parameter is the report number
** corresponding to REPORTFMT.RN. If the tablist query parameter exists,
** then the output consists of lines of tab-separated fields instead of
** an HTML table.
*/
void view_view(void){
int count = 0;
int rn;
char *zSql;
char *zTitle;
char *zOwner;
char *zClrKey;
int tabs;
|
|
|
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
|
** WEBPAGE: /rptview
**
** Generate a report. The rn query parameter is the report number
** corresponding to REPORTFMT.RN. If the tablist query parameter exists,
** then the output consists of lines of tab-separated fields instead of
** an HTML table.
*/
void rptview_page(void){
int count = 0;
int rn;
char *zSql;
char *zTitle;
char *zOwner;
char *zClrKey;
int tabs;
|