Fossil SCM
If a Control artifact contains a C-card, don't ignore it any more but dislay it in the timeline. Demo: See [deb18ab6e3cdde20]. A "fossil rebuild" is needed to make this visible.
Commit
9aca5f7930d8d6a943e729fcca5885bf60d86c35
Parent
76d901ddb916e16…
1 file changed
+3
+3
| --- src/manifest.c | ||
| +++ src/manifest.c | ||
| @@ -1924,10 +1924,13 @@ | ||
| 1924 | 1924 | const char *zName; |
| 1925 | 1925 | const char *zValue; |
| 1926 | 1926 | const char *zUuid; |
| 1927 | 1927 | int branchMove = 0; |
| 1928 | 1928 | blob_zero(&comment); |
| 1929 | + if( p->zComment ){ | |
| 1930 | + blob_appendf(&comment, "%s. ", p->zComment); | |
| 1931 | + } | |
| 1929 | 1932 | for(i=0; i<p->nTag; i++){ |
| 1930 | 1933 | zUuid = p->aTag[i].zUuid; |
| 1931 | 1934 | if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ |
| 1932 | 1935 | if( i>0 ) blob_append(&comment, " ", 1); |
| 1933 | 1936 | blob_appendf(&comment, |
| 1934 | 1937 |
| --- src/manifest.c | |
| +++ src/manifest.c | |
| @@ -1924,10 +1924,13 @@ | |
| 1924 | const char *zName; |
| 1925 | const char *zValue; |
| 1926 | const char *zUuid; |
| 1927 | int branchMove = 0; |
| 1928 | blob_zero(&comment); |
| 1929 | for(i=0; i<p->nTag; i++){ |
| 1930 | zUuid = p->aTag[i].zUuid; |
| 1931 | if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ |
| 1932 | if( i>0 ) blob_append(&comment, " ", 1); |
| 1933 | blob_appendf(&comment, |
| 1934 |
| --- src/manifest.c | |
| +++ src/manifest.c | |
| @@ -1924,10 +1924,13 @@ | |
| 1924 | const char *zName; |
| 1925 | const char *zValue; |
| 1926 | const char *zUuid; |
| 1927 | int branchMove = 0; |
| 1928 | blob_zero(&comment); |
| 1929 | if( p->zComment ){ |
| 1930 | blob_appendf(&comment, "%s. ", p->zComment); |
| 1931 | } |
| 1932 | for(i=0; i<p->nTag; i++){ |
| 1933 | zUuid = p->aTag[i].zUuid; |
| 1934 | if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ |
| 1935 | if( i>0 ) blob_append(&comment, " ", 1); |
| 1936 | blob_appendf(&comment, |
| 1937 |