Differences From Artifact [f3f895a45f]:
- File src/cache.c — part of check-in [e6e806a91e] at 2018-07-17 15:48:23 on branch trunk — Set an timeout on the database connection to the web-cache. Use the sqlite3_table_column_metadata() interface to check to see if the web-cache database file needs to be initialized prior to actually initializing it. (user: drh size: 12189) [more...]
To Artifact [9f5a26f675]:
- File src/cache.c — part of check-in [7d034d34ba] at 2018-11-28 18:57:26 on branch trunk — The /setup page can now be seen by both Admin and Setup users, as requested by drh via private email. The set of links shown is culled for Admin-only users. Also changed some comments to match the code with respect to Admin vs Setup capability. The only change to user capability interpretation in this checkin is to the /setup page. (user: wyoung size: 12189) [more...]
| ︙ | ︙ | |||
342 343 344 345 346 347 348 |
" Should be one of: clear init list status", zCmd);
}
}
/*
** WEBPAGE: cachestat
**
| | | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
" Should be one of: clear init list status", zCmd);
}
}
/*
** WEBPAGE: cachestat
**
** Show information about the webpage cache. Requires Setup privilege.
*/
void cache_page(void){
sqlite3 *db;
sqlite3_stmt *pStmt;
char zBuf[100];
login_check_credentials();
|
| ︙ | ︙ |