Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | I think I fix the previous commit, that should avoid committing a ticket manifest if it has no changes. It was ignoring the ticket appends. In the case of only appending, the user was not notified not properly redirected, and the ticket chagnes were not committed. Still, there should be some kind of warning to the user, if it ends up in such situation, I think. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f02946aa8b4e27124c1e5840ef907a60 |
| User & Date: | viriketo 2012-10-17 14:04:14.860 |
Context
|
2012-10-17
| ||
| 17:50 | It turns out that filenames in git-fast-export format can be quoted, if they contain special characters. Update the importer to dequote those names before trying to use them. ... (check-in: 77cbe38af0 user: drh tags: trunk) | |
| 14:05 | Picking the latest fix in trunk ... (check-in: 39a59de8cb user: viriketo tags: annotate_links) | |
| 14:04 | I think I fix the previous commit, that should avoid committing a ticket manifest if it has no changes. It was ignoring the ticket appends. In the case of only appending, the user was not notified not properly redirected, and the ticket chagnes were not committed. Still, there should be some kind of warning to the user, if it ends up in such situation, I think. ... (check-in: f02946aa8b user: viriketo tags: trunk) | |
|
2012-10-16
| ||
| 01:11 | unused variable includeDotFiles <p>struct utimbuf -> struct _utimbuf (compiler warning with mingw-w64) <p>a few "const" additions (lower memory footprint, allows C-compiler to optimize better) ... (check-in: 6032dd51f2 user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/tkt.c.
| ︙ | ︙ | |||
444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
zDate = date_in_standard_format("now");
blob_appendf(&tktchng, "D %s\n", zDate);
free(zDate);
for(i=0; i<nField; i++){
if( azAppend[i] ){
blob_appendf(&tktchng, "J +%s %z\n", azField[i],
fossilize(azAppend[i], -1));
}
}
for(i=0; i<nField; i++){
const char *zValue;
int nValue;
if( azAppend[i] ) continue;
zValue = Th_Fetch(azField[i], &nValue);
| > | 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
zDate = date_in_standard_format("now");
blob_appendf(&tktchng, "D %s\n", zDate);
free(zDate);
for(i=0; i<nField; i++){
if( azAppend[i] ){
blob_appendf(&tktchng, "J +%s %z\n", azField[i],
fossilize(azAppend[i], -1));
++nJ;
}
}
for(i=0; i<nField; i++){
const char *zValue;
int nValue;
if( azAppend[i] ) continue;
zValue = Th_Fetch(azField[i], &nValue);
|
| ︙ | ︙ |