Introduction
Introduction Statistics Contact Development Disclaimer Help
tSimplify diff markup - stagit - static git page generator
git clone git://src.adamsgaard.dk/stagit
Log
Files
Refs
README
LICENSE
---
commit b634cfd86042f303dae68c2805810c7a0f9614c5
parent 1363b8b51e4e2e75e56cdc022eb1ab50d15dd84d
Author: Eivind Uggedal <[email protected]>
Date: Wed, 9 Dec 2015 09:43:20 +0000
Simplify diff markup
Remove <span> for inserted/deleted lines and use
tthe <a> for coloring.
Diffstat:
M style.css | 10 +++-------
M urmoms.c | 6 +++---
2 files changed, 6 insertions(+), 10 deletions(-)
---
diff --git a/style.css b/style.css
t@@ -50,18 +50,14 @@ pre .h {
color: darkcyan;
}
-pre .i {
+pre a.i {
color: green;
}
-pre .d {
+pre a.d {
color: red;
}
-pre span a {
- color: inherit;
-}
-
-pre span a:hover {
+pre a.i:hover, pre a.d:hover {
text-decoration: none;
}
diff --git a/urmoms.c b/urmoms.c
t@@ -333,16 +333,16 @@ printshowfile(struct commitinfo *ci)
if (git_patch_get_line_in_hunk(&line, patch, j…
break;
if (line->old_lineno == -1)
- fprintf(fp, "<span class=\"i\"><a href…
+ fprintf(fp, "<a href=\"#h%zu-%zu\" id=…
j, k, j, k);
else if (line->new_lineno == -1)
- fprintf(fp, "<span class=\"d\"><a href…
+ fprintf(fp, "<a href=\"#h%zu-%zu\" id=…
j, k, j, k);
else
fputc(' ', fp);
xmlencode(fp, line->content, line->content_len…
if (line->old_lineno == -1 || line->new_lineno…
- fputs("</a></span>", fp);
+ fputs("</a>", fp);
}
}
git_patch_free(patch);
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.