Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Do not send the message body on an HTTP reply to a HEAD request. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5826ba37acff82bba06df835ad8b21b2 |
| User & Date: | drh 2017-07-04 13:11:26.015 |
Context
|
2017-07-04
| ||
| 16:02 | On the /urllist page, stop the display of access URLs after at least 8 have been shown and the last access is more than 30 days ago. Except, show them all if the "all" query parameter is used. ... (check-in: 9d7ef44fb6 user: drh tags: trunk) | |
| 13:11 | Do not send the message body on an HTTP reply to a HEAD request. ... (check-in: 5826ba37ac user: drh tags: trunk) | |
| 04:36 | Add the "bootstrap" skin. ... (check-in: f57f5f99b9 user: drh tags: trunk) | |
Changes
Changes to src/cgi.c.
| ︙ | ︙ | |||
380 381 382 383 384 385 386 |
}
total_size = blob_size(&cgiContent[0]) + blob_size(&cgiContent[1]);
fprintf(g.httpOut, "Content-Length: %d\r\n", total_size);
}else{
total_size = 0;
}
fprintf(g.httpOut, "\r\n");
| | > > | 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
}
total_size = blob_size(&cgiContent[0]) + blob_size(&cgiContent[1]);
fprintf(g.httpOut, "Content-Length: %d\r\n", total_size);
}else{
total_size = 0;
}
fprintf(g.httpOut, "\r\n");
if( total_size>0 && iReplyStatus != 304
&& fossil_strcmp(P("REQUEST_METHOD"),"HEAD")!=0
){
int i, size;
for(i=0; i<2; i++){
size = blob_size(&cgiContent[i]);
if( size>0 ){
fwrite(blob_buffer(&cgiContent[i]), 1, size, g.httpOut);
}
}
|
| ︙ | ︙ |