refs: only make commit link work for tags
This commit is contained in:
parent
512a31e81f
commit
9978fecb18
1 changed files with 5 additions and 3 deletions
8
stagit.c
8
stagit.c
|
@ -842,15 +842,17 @@ writerefs(FILE *fp)
|
|||
printtimeshort(fp, &(ci->author->when));
|
||||
fputs("</td><td>", fp);
|
||||
if (ci->summary) {
|
||||
fprintf(fp, "<a href=\"%scommit/%s.html\">",
|
||||
relpath, ci->oid);
|
||||
if (j)
|
||||
fprintf(fp, "<a href=\"%scommit/%s.html\">",
|
||||
relpath, ci->oid);
|
||||
if ((len = strlen(ci->summary)) > summarylen) {
|
||||
xmlencode(fp, ci->summary, summarylen - 1);
|
||||
fputs("…", fp);
|
||||
} else {
|
||||
xmlencode(fp, ci->summary, len);
|
||||
}
|
||||
fputs("</a>", fp);
|
||||
if (j)
|
||||
fputs("</a>", fp);
|
||||
}
|
||||
fputs("</td><td>", fp);
|
||||
if (ci->author)
|
||||
|
|
Loading…
Reference in a new issue