Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor spelling corrections to comment. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c048aac095465a956148678eb2da8e7f |
| User & Date: | andybradford 2015-06-25 01:45:04.542 |
Context
|
2015-06-26
| ||
| 17:48 | In the "fossil server --repolist" command, to not accept ".fossil" as a valid fossil repository. Require at least one character before the ".". ... (check-in: ceeb1c331b user: drh tags: trunk) | |
|
2015-06-25
| ||
| 01:45 | Minor spelling corrections to comment. ... (check-in: c048aac095 user: andybradford tags: trunk) | |
|
2015-06-22
| ||
| 04:37 | Integrate andygoth-help-option. ... (check-in: 100ac83b64 user: andygoth tags: trunk) | |
Changes
Changes to src/cgi.c.
| ︙ | ︙ | |||
70 71 72 73 74 75 76 | #define CGI_SSH_COMPAT 0x0002 /* Compat for old SSH transport */ #define CGI_SSH_FOSSIL 0x0004 /* Use new Fossil SSH transport */ #endif /* INTERFACE */ /* ** The HTTP reply is generated in two pieces: the header and the body. | | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
#define CGI_SSH_COMPAT 0x0002 /* Compat for old SSH transport */
#define CGI_SSH_FOSSIL 0x0004 /* Use new Fossil SSH transport */
#endif /* INTERFACE */
/*
** The HTTP reply is generated in two pieces: the header and the body.
** These pieces are generated separately because they are not necessarily
** produced in order. Parts of the header might be built after all or
** part of the body. The header and body are accumulated in separate
** Blob structures then output sequentially once everything has been
** built.
**
** The cgi_destination() interface switches between the buffers.
*/
static Blob cgiContent[2] = { BLOB_INITIALIZER, BLOB_INITIALIZER };
static Blob *pContent = &cgiContent[0];
/*
** Set the destination buffer into which to accumulate CGI content.
*/
|
| ︙ | ︙ |