Differences From Artifact [02fe10d6a7]:
- File src/report.c — part of check-in [c43da4fcd1] at 2012-11-30 15:07:50 on branch click-to-sort-reports — Add javascript to ticket reports tables so that clicking on column headers causes the table to be sorted by that header. Clicking again reverses the sort order. (user: drh size: 36818) [more...]
To Artifact [15ce9b5e12]:
- File src/report.c — part of check-in [2056f624c0] at 2012-12-09 19:22:17 on branch trunk — Restrict the TH1 "query" command to be read-only and to only be able to see a specific subset of tables in the repository database file. (user: drh size: 36841) [more...]
| ︙ | ︙ | |||
170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
case SQLITE_SELECT:
case SQLITE_FUNCTION: {
break;
}
case SQLITE_READ: {
static const char *const azAllowed[] = {
"ticket",
"blob",
"filename",
"mlink",
"plink",
"event",
"tag",
"tagxref",
| > | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
case SQLITE_SELECT:
case SQLITE_FUNCTION: {
break;
}
case SQLITE_READ: {
static const char *const azAllowed[] = {
"ticket",
"ticketchng",
"blob",
"filename",
"mlink",
"plink",
"event",
"tag",
"tagxref",
|
| ︙ | ︙ |