Differences From Artifact [15e80d7d8d]:
- File src/dispatch.c — part of check-in [4962fa9e33] at 2018-01-23 22:34:37 on branch trunk — Stop including settings in the 'Available commands' section of the help web page. Fix typo of '--setting' help option. (user: mistachkin size: 19277) [more...]
To Artifact [3d568ac54c]:
- File src/dispatch.c — part of check-in [3f5ab71744] at 2018-07-15 19:56:20 on branch trunk — Clarify the difference between fossil_fatal() and fossil_panic(). The fossil_panic() interface puts a message on the error log when generating webpages. Otherwise the two routines are identical. Convert some fossil_fatal() calls into fossil_panic() where appropriate. The goal here is to limit messages on the error log to things that require attention from the system administrator, or represent bugs. (user: drh size: 19277) [more...]
| ︙ | |||
165 166 167 168 169 170 171 | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | - + |
if( z[i]=='?' ){
z[i] = 0;
zQ = &z[i+1];
}else{
zQ = &z[i];
}
if( dispatch_name_search(z, CMDFLAG_WEBPAGE, ppCmd) ){
|
| ︙ |