Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed: /tarball accepted non-checkin rids (but of course could not generate a tarfile from them). Bug report from Justin Gedge on the mailing list. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f982e3764b12866ca3d31893dc4a9c23 |
User & Date: | stephan 2012-04-11 16:28:52.464 |
Context
2012-04-11
| ||
16:33 | Second half of the tarball fix (CLI mode, i missed that one). ... (check-in: b79d2b77 user: stephan tags: trunk) | |
16:28 | Fixed: /tarball accepted non-checkin rids (but of course could not generate a tarfile from them). Bug report from Justin Gedge on the mailing list. ... (check-in: f982e376 user: stephan tags: trunk) | |
2012-04-06
| ||
17:24 | (1) Show cherrypick and backout merges in the status command (2) Allow partial commits of cherrypick and backout merges (3) Prompt user to continue if a check-in comment is unedited (4) Fixing a jump on uninitialized data on web sbs diff - cherrypick of [92b2a5c390467a] (5) Updates against an uncommitted merge are now a warning, not a fatal error. ... (check-in: 195517a9 user: drh tags: trunk) | |
Changes
Changes to src/tar.c.
︙ | ︙ | |||
590 591 592 593 594 595 596 | for(nName=strlen(zName)-1; nName>5; nName--){ if( zName[nName]=='.' ){ zName[nName] = 0; break; } } } | | | 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | for(nName=strlen(zName)-1; nName>5; nName--){ if( zName[nName]=='.' ){ zName[nName] = 0; break; } } } rid = name_to_typed_rid(nRid?zRid:zName, "ci"); if( rid==0 ){ @ Not found return; } if( nRid==0 && nName>10 ) zName[10] = 0; tarball_of_checkin(rid, &tarball, zName); free( zName ); |
︙ | ︙ |