Differences From Artifact [9c23e46bf2]:
- File src/main.c — part of check-in [03f07b5a66] at 2013-08-03 23:19:10 on branch trunk — Enhance the test_env webpage so that it shows the original HTTP header text in showall=1 mode. (user: drh size: 63613)
To Artifact [952d72d35e]:
- File src/main.c — part of check-in [d8f716e1d1] at 2013-08-03 23:33:16 on branch trunk — Previous two check-ins do not work correctly for CGI. Trying once again. (user: drh size: 63642) [more...]
| ︙ | |||
528 529 530 531 532 533 534 535 536 537 538 539 540 541 | 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 | + |
{
const char *zCmdName = "unknown";
int idx;
int rc;
sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0);
memset(&g, 0, sizeof(g));
g.now = time(0);
g.httpHeader = empty_blob;
#ifdef FOSSIL_ENABLE_JSON
#if defined(NDEBUG)
g.json.errorDetailParanoia = 2 /* FIXME: make configurable
One problem we have here is that this
code is needed before the db is opened,
so we can't sql for it.*/;
#else
|
| ︙ |