in the diffstat prefix the type of change, allow CSS styling

This commit is contained in:
Hiltjo Posthuma 2018-11-18 18:08:20 +01:00
parent 608593b0f8
commit 3a151527e1
2 changed files with 18 additions and 1 deletions

View file

@ -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, "<tr><td><a href=\"#h%zu\">", 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, "<tr><td>%c", c);
else
fprintf(fp, "<tr><td class=\"%c\">%c", c, c);
fprintf(fp, "</td><td><a href=\"#h%zu\">", i);
xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path));
if (strcmp(delta->old_file.path, delta->new_file.path)) {
fputs(" -&gt; ", fp);

View file

@ -84,11 +84,13 @@ pre a.h {
color: #00a;
}
.A,
span.i,
pre a.i {
color: #070;
}
.D,
span.d,
pre a.d {
color: #e00;