Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix typo (missing space) in the new log-menu page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
bd0d4422598dfefe829490b46946d1ea |
| User & Date: | drh 2025-02-14 16:37:21.481 |
Context
|
2025-02-14
| ||
| 17:04 | Hack in Windows so that it shows the correct launch command in the log-menu. ... (check-in: f38866e749 user: drh tags: trunk) | |
| 16:37 | Fix typo (missing space) in the new log-menu page. ... (check-in: bd0d442259 user: drh tags: trunk) | |
| 13:33 | More improvements to the setup-logmenu page. ... (check-in: 767509f617 user: drh tags: trunk) | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
248 249 250 251 252 253 254 |
blob_appendf(&desc,
"make an entry like \"errorlog: <i>FILENAME</i>\""
" in the CGI script at %h",
P("SCRIPT_FILENAME")
);
}else{
blob_appendf(&desc,
| | | 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
blob_appendf(&desc,
"make an entry like \"errorlog: <i>FILENAME</i>\""
" in the CGI script at %h",
P("SCRIPT_FILENAME")
);
}else{
blob_appendf(&desc,
" add the \"--errorlog <i>FILENAME</i>\" option to the\n"
"\"%h %h\" command that launched this server.",
g.argv[0], g.zCmdName
);
}
bErrLog = 0;
}else{
blob_appendf(&desc,"In this repository, the error log is the file "
|
| ︙ | ︙ |