1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
|
blob_appendf(&comment, " Add propagating tag \"%h\".", &zName[5]);
}
}else if( memcmp(zName, "+sym-",5)==0 ){
blob_appendf(&comment, " Add tag \"%h\".", &zName[5]);
}else if( memcmp(zName, "-sym-",5)==0 ){
blob_appendf(&comment, " Cancel tag \"%h\".", &zName[5]);
}else if( strcmp(zName, "+closed")==0 ){
blob_append(&comment, " Marked \"Closed\"", -1);
if( zValue && *zValue ){
blob_appendf(&comment, " with note \"%h\"", zValue);
}
blob_append(&comment, ".", 1);
}else if( strcmp(zName, "-closed")==0 ){
blob_append(&comment, " Removed the \"Closed\" mark", -1);
if( zValue && *zValue ){
blob_appendf(&comment, " with note \"%h\"", zValue);
}
|
>
>
>
|
|
|
>
|
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
|
blob_appendf(&comment, " Add propagating tag \"%h\".", &zName[5]);
}
}else if( memcmp(zName, "+sym-",5)==0 ){
blob_appendf(&comment, " Add tag \"%h\".", &zName[5]);
}else if( memcmp(zName, "-sym-",5)==0 ){
blob_appendf(&comment, " Cancel tag \"%h\".", &zName[5]);
}else if( strcmp(zName, "+closed")==0 ){
if( zValue && (strlen(zValue)==UUID_SIZE) && validate16(zValue, UUID_SIZE) ){
blob_appendf(&comment, " Integrated into [%S]", zValue);
}else{
blob_append(&comment, " Marked \"Closed\"", -1);
if( zValue && *zValue ){
blob_appendf(&comment, " with note \"%h\"", zValue);
}
}
blob_append(&comment, ".", 1);
}else if( strcmp(zName, "-closed")==0 ){
blob_append(&comment, " Removed the \"Closed\" mark", -1);
if( zValue && *zValue ){
blob_appendf(&comment, " with note \"%h\"", zValue);
}
|