Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix uninitialized variable that was causing artifact download issues. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3af5165a9024bd179fd410d5eabcdf0b |
User & Date: | mistachkin 2016-11-12 00:01:45.776 |
Context
2016-11-12
| ||
04:21 | Make artifact|whatis page use local time to match the timeline. Otherwise clicking on date/time links finds the wrong check-in in the timeline. May wish to convert other calls to datetime() to use local time. ... (check-in: e7192bb9 user: andygoth tags: trunk) | |
00:01 | Fix uninitialized variable that was causing artifact download issues. ... (check-in: 3af5165a user: mistachkin tags: trunk) | |
2016-11-11
| ||
16:47 | Add the ci=BRANCH and filename=NAME query parameters to the /raw page. ... (check-in: fc29b081 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
︙ | ︙ | |||
1557 1558 1559 1560 1561 1562 1563 | ** URL: /raw?name=ARTIFACTID&m=TYPE ** URL: /raw?ci=BRANCH&filename=NAME ** ** Return the uninterpreted content of an artifact. Used primarily ** to view artifacts that are images. */ void rawartifact_page(void){ | | | 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 | ** URL: /raw?name=ARTIFACTID&m=TYPE ** URL: /raw?ci=BRANCH&filename=NAME ** ** Return the uninterpreted content of an artifact. Used primarily ** to view artifacts that are images. */ void rawartifact_page(void){ int rid = 0; char *zUuid; const char *zMime; Blob content; if( P("ci") && P("filename") ){ rid = artifact_from_ci_and_filename_www(); } |
︙ | ︙ |