X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/6821d8ea4a64d15b8f284d1af01ab184ef1e76c3..1415f3f3e017d0123e850707c55cb7e5e5887406:/ui-log.c
diff --git a/ui-log.c b/ui-log.c
index ee93653..bc0c02c 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -101,7 +101,7 @@ void print_commit(struct commit *commit)
files = 0;
add_lines = 0;
rem_lines = 0;
- cgit_diff_commit(commit, inspect_files);
+ cgit_diff_commit(commit, inspect_files, ctx.qry.vpath);
html("
");
htmlf("%d", files);
if (ctx.repo->enable_log_linecount) {
@@ -111,6 +111,9 @@ void print_commit(struct commit *commit)
}
html(" | \n");
if (ctx.qry.showmsg) {
+ struct strbuf notes = STRBUF_INIT;
+ format_note(NULL, commit->object.sha1, ¬es, PAGE_ENCODING, 0);
+
if (ctx.repo->enable_log_filecount) {
cols++;
if (ctx.repo->enable_log_linecount)
@@ -120,6 +123,15 @@ void print_commit(struct commit *commit)
cols);
html_txt(info->msg);
html("\n");
+ if (notes.len != 0) {
+ html("");
+ html("| Notes: | ");
+ htmlf("",
+ cols);
+ html_txt(notes.buf);
+ html(" |
\n");
+ }
+ strbuf_release(¬es);
}
cgit_free_commitinfo(info);
}
@@ -216,8 +228,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
commit->parents = NULL;
}
if (pager) {
- htmlf("