Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | fixed type of JsonPageDef::runMode from char to int because it uses negative values and char is unsigned by ARM platforms. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8f6b78e7b20a9f64fb6d2488c809786c |
User & Date: | stephan 2016-01-29 07:00:45.188 |
Context
2016-01-29
| ||
21:03 | Add test-version web page. Refactor command line 'version' command code into a function to help facilitate that. ... (check-in: f7cd247b user: mistachkin tags: trunk) | |
07:00 | fixed type of JsonPageDef::runMode from char to int because it uses negative values and char is unsigned by ARM platforms. ... (check-in: 8f6b78e7 user: stephan tags: trunk) | |
2016-01-28
| ||
20:39 | Improve MinGW build docs. ... (check-in: c1c680eb user: mistachkin tags: trunk) | |
Changes
Changes to src/json_detail.h.
︙ | ︙ | |||
182 183 184 185 186 187 188 | ** ** <0 = CLI only, >0 = HTTP only, 0==both ** ** Now that we can simulate POST in CLI mode, the distinction ** between them has disappeared in most (or all) cases, so 0 is ** the standard value. */ | | | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | ** ** <0 = CLI only, >0 = HTTP only, 0==both ** ** Now that we can simulate POST in CLI mode, the distinction ** between them has disappeared in most (or all) cases, so 0 is ** the standard value. */ int runMode; } JsonPageDef; /* ** Holds common keys used for various JSON API properties. */ typedef struct FossilJsonKeys_{ /** maintainers: please keep alpha sorted (case-insensitive) */ |
︙ | ︙ |