| Date: Mon, 7 Dec 2015 23:22:45 +0100
truncate message in log, shorter time format
Diffstat:
M urmoms.c | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
--- |
| @@ -358,6 +358,7 @@ writelog(FILE *fp)
struct commitinfo *ci;
git_revwalk *w = NULL;
git_oid id;
+ size_t len;
int ret = 0;
mkdir("commit", 0755);
@@ -374,19 +375,23 @@ writelog(FILE *fp)
if (!(ci = commitinfo_getbyoid(&id)))
break;
- fputs("", fp);
+ fputs(" | ", fp);
+ if (ci->author)
+ printtimeshort(fp, &(ci->author->when));
+ fputs(" | ", fp);
if (ci->summary) {
fprintf(fp, "", relpath, ci->oid);
- xmlencode(fp, ci->summary, strlen(ci->summary));
+ if ((len = strlen(ci->summary)) > 79) {
+ xmlencode(fp, ci->summary, 76);
+ fputs("...", fp);
+ } else {
+ xmlencode(fp, ci->summary, len);
+ }
fputs("", fp);
}
fputs(" | ", fp);
if (ci->author)
xmlencode(fp, ci->author->name, strlen(ci->author->name));
-
- fputs(" | ", fp);
- if (ci->author)
- printtime(fp, &(ci->author->when));
fputs(" | ", fp);
fprintf(fp, "%zu", ci->filecount);
fputs(" | ", fp); | |