From 3a151527e1d72aa75d9461ee9918bda3bd08bcb1 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Sun, 18 Nov 2018 18:08:20 +0100 Subject: in the diffstat prefix the type of change, allow CSS styling --- stagit.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'stagit.c') diff --git a/stagit.c b/stagit.c index b2741c0..093cdab 100644 --- a/stagit.c +++ b/stagit.c @@ -461,6 +461,7 @@ printshowfile(FILE *fp, struct commitinfo *ci) git_patch *patch; size_t nhunks, nhunklines, changed, add, del, total, i, j, k; char linestr[80]; + int c; printcommit(fp, ci); @@ -480,7 +481,21 @@ printshowfile(FILE *fp, struct commitinfo *ci) for (i = 0; i < ci->ndeltas; i++) { delta = git_patch_get_delta(ci->deltas[i]->patch); - fprintf(fp, "", i); + switch (delta->status) { + case GIT_DELTA_ADDED: c = 'A'; break; + case GIT_DELTA_COPIED: c = 'C'; break; + case GIT_DELTA_DELETED: c = 'D'; break; + case GIT_DELTA_MODIFIED: c = 'M'; break; + case GIT_DELTA_RENAMED: c = 'R'; break; + case GIT_DELTA_TYPECHANGE: c = 'T'; break; + default: c = ' '; break; + } + if (c == ' ') + fprintf(fp, "%c", c); + else + fprintf(fp, "%c", c, c); + + fprintf(fp, "", i); xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path)); if (strcmp(delta->old_file.path, delta->new_file.path)) { fputs(" -> ", fp); -- cgit v1.2.3