Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the "fossil server" command on windows so that it honors the --https option. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8ed91bbe44d0d383d67c30a1fe3817fe |
| User & Date: | drh 2019-07-30 18:55:46.132 |
| Original Comment: | Fix the "fossil server" command on windows os that it honors the --https option. |
Context
|
2019-07-31
| ||
| 08:09 | Merged in autosetupAndJimTcl branch (autosetup updates). ... (check-in: 51d006f851 user: stephan tags: trunk) | |
|
2019-07-30
| ||
| 18:55 | Fix the "fossil server" command on windows so that it honors the --https option. ... (check-in: 8ed91bbe44 user: drh tags: trunk) | |
| 10:28 | Restore the full CGI extension documentation that was somehow truncated by an earlier commit. ... (check-in: 4130a22cee user: drh tags: trunk) | |
Changes
Changes to src/winhttp.c.
| ︙ | ︙ | |||
533 534 535 536 537 538 539 540 541 542 543 544 545 546 |
const char *zSkin;
#if USE_SEE
const char *zSavedKey = 0;
size_t savedKeySize = 0;
#endif
blob_zero(&options);
if( zBaseUrl ){
blob_appendf(&options, " --baseurl %s", zBaseUrl);
}
if( zNotFound ){
blob_appendf(&options, " --notfound %s", zNotFound);
}
if( zFileGlob ){
| > > > | 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 |
const char *zSkin;
#if USE_SEE
const char *zSavedKey = 0;
size_t savedKeySize = 0;
#endif
blob_zero(&options);
if( PB("HTTPS") ){
blob_appendf(&options, " --https");
}
if( zBaseUrl ){
blob_appendf(&options, " --baseurl %s", zBaseUrl);
}
if( zNotFound ){
blob_appendf(&options, " --notfound %s", zNotFound);
}
if( zFileGlob ){
|
| ︙ | ︙ |