Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Call ticket_init() from the report view so users can have access to all the common ticket code |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6d0b76d01f85150e99c2c326b1127657 |
| User & Date: | jeremy_c 2010-01-09 18:43:34.000 |
Context
|
2010-01-10
| ||
| 14:27 | Merged ticket report list fixes from [cd93f5965b] into trunk ... (check-in: 023c9fed38 user: jeremy_c tags: trunk) | |
|
2010-01-09
| ||
| 22:03 | Store passwords in USER.PW as either cleartext (as is done in legacy) or as the SHA1 hash of the password. When changing a password or adding a new user, always use the SHA1 hash password. ... (check-in: cfe33dcf92 user: drh tags: experimental) | |
| 18:43 | Call ticket_init() from the report view so users can have access to all the common ticket code ... (check-in: 6d0b76d01f user: jeremy_c tags: trunk) | |
| 18:32 | Added a user configurable TH1 template for the ticket report list. ... (check-in: 14253e9b33 user: jeremy_c tags: trunk) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
if( !g.okRdTkt && !g.okNewTkt ){ login_needed(); return; }
style_header("Ticket Main Menu");
if( g.thTrace ) Th_Trace("BEGIN_REPORTLIST<br />\n", -1);
zScript = ticket_reportlist_code();
if( g.thTrace ) Th_Trace("BEGIN_REPORTLIST_SCRIPT<br />\n", -1);
blob_zero(&ril);
db_prepare(&q, "SELECT rn, title, owner FROM reportfmt ORDER BY title");
while( db_step(&q)==SQLITE_ROW ){
const char *zTitle = db_column_text(&q, 1);
const char *zOwner = db_column_text(&q, 2);
if( zTitle[0] =='_' && !g.okTktFmt ){
continue;
| > | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
if( !g.okRdTkt && !g.okNewTkt ){ login_needed(); return; }
style_header("Ticket Main Menu");
if( g.thTrace ) Th_Trace("BEGIN_REPORTLIST<br />\n", -1);
zScript = ticket_reportlist_code();
if( g.thTrace ) Th_Trace("BEGIN_REPORTLIST_SCRIPT<br />\n", -1);
blob_zero(&ril);
ticket_init();
db_prepare(&q, "SELECT rn, title, owner FROM reportfmt ORDER BY title");
while( db_step(&q)==SQLITE_ROW ){
const char *zTitle = db_column_text(&q, 1);
const char *zOwner = db_column_text(&q, 2);
if( zTitle[0] =='_' && !g.okTktFmt ){
continue;
|
| ︙ | ︙ |