stagit
static git repository generator
git clone https://9o.is/git/stagit.git
commit add6a6559ef2d95d43094ae72cd648c44a7fa450 parent 5e8e9fde09fa2021136fdfe2daa4af98a6a15a78 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Wed, 27 Apr 2016 16:39:48 +0200 fix: link to line in hunk if a patch has multiple files and hunks thanks to lostd for reporting it! Diffstat:
| M | stagit.c | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/stagit.c b/stagit.c @@ -394,7 +394,7 @@ printshowfile(FILE *fp, struct commitinfo *ci) if (git_patch_get_hunk(&hunk, &nhunklines, patch, j)) break; - fprintf(fp, "<a href=\"#h%zu\" id=\"h%zu\" class=\"h\">", j, j); + fprintf(fp, "<a href=\"#h%zu-%zu\" id=\"h%zu-%zu\" class=\"h\">", i, j, i, j); xmlencode(fp, hunk->header, hunk->header_len); fputs("</a>", fp); @@ -402,11 +402,11 @@ printshowfile(FILE *fp, struct commitinfo *ci) if (git_patch_get_line_in_hunk(&line, patch, j, k)) break; if (line->old_lineno == -1) - fprintf(fp, "<a href=\"#h%zu-%zu\" id=\"h%zu-%zu\" class=\"i\">+", - j, k, j, k); + fprintf(fp, "<a href=\"#h%zu-%zu-%zu\" id=\"h%zu-%zu-%zu\" class=\"i\">+", + i, j, k, i, j, k); else if (line->new_lineno == -1) - fprintf(fp, "<a href=\"#h%zu-%zu\" id=\"h%zu-%zu\" class=\"d\">-", - j, k, j, k); + fprintf(fp, "<a href=\"#h%zu-%zu-%zu\" id=\"h%zu-%zu-%zu\" class=\"d\">-", + i, j, k, i, j, k); else fputc(' ', fp); xmlencode(fp, line->content, line->content_len);