Differences From Artifact [36ec407663]:
- File
src/import.c
— part of check-in
[752bdd38c7]
at
2017-02-13 03:34:12
on branch roy-export
— Add comment cards to tags, which are accepted by git import and exported to
git export.
They are visible via the timeline, but currently lack an editable means via the UI. (user: roy.marples size: 61254)
To Artifact [8bfde39e3e]:
- File src/import.c — part of check-in [84804f01c5] at 2017-02-13 10:59:03 on branch roy-export — Cards must appear in a lexical order. Thanks Jan! (user: roy.marples size: 61254)
| ︙ | |||
213 214 215 216 217 218 219 220 221 222 223 | 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | + - |
** Use data accumulated in gg from a "tag" record to add a new
** control artifact to the BLOB table.
*/
static void finish_tag(void){
Blob record, cksum;
if( gg.zDate && gg.zTag && gg.zFrom && gg.zUser ){
blob_zero(&record);
if( gg.zComment ) blob_appendf(&record, "C %F\n", gg.zComment);
blob_appendf(&record, "D %s\n", gg.zDate);
blob_appendf(&record, "T +sym-%F%F%F %s\n", gimport.zTagPre, gg.zTag,
gimport.zTagSuf, gg.zFrom);
blob_appendf(&record, "U %F\n", gg.zUser);
|
| ︙ |