diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-07 18:59:13 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-07 18:59:13 +0100 |
commit | 17f9f53ea0406e887516fe61795da970c8ccc17e (patch) | |
tree | 5f5e150d7aeba1387ca868f95c076efc0bf323fc /urmoms.c | |
parent | 51ecd71d5fd10327251c32d8a91e135945eaf20c (diff) |
make author e-mail a link
Diffstat (limited to 'urmoms.c')
-rw-r--r-- | urmoms.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -184,10 +184,13 @@ printcommit(FILE *fp, git_commit *commit) if ((sig = git_commit_author(commit)) != NULL) { fprintf(fp, "Author: "); xmlencode(fp, sig->name, strlen(sig->name)); - fprintf(fp, " <"); + fprintf(fp, " <<a href=\"mailto:"); xmlencode(fp, sig->email, strlen(sig->email)); - fprintf(fp, ">\nDate: "); + fputs("\">", fp); + xmlencode(fp, sig->email, strlen(sig->email)); + fputs("</a>>\nDate: ", fp); printtime(fp, &sig->when); + fputc('\n', fp); } fputc('\n', fp); |