X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/5c5d189635287a3bfaa1a4aef133dc0c582a27c2..808c685ebb7cd2d24d3881b74e3be2439bd1393b:/ui-log.c?ds=sidebyside
diff --git a/ui-log.c b/ui-log.c
index 33ec8a9..b9771fa 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -33,7 +33,8 @@ void inspect_files(struct diff_filepair *pair)
files++;
if (ctx.repo->enable_log_linecount)
cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size,
- &new_size, &binary, 0, count_lines);
+ &new_size, &binary, 0, ctx.qry.ignorews,
+ count_lines);
}
void show_commit_decorations(struct commit *commit)
@@ -100,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) {
@@ -110,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)
@@ -119,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);
}
@@ -149,7 +162,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
argv[1] = disambiguate_ref(tip);
- if (grep && pattern) {
+ if (grep && pattern && *pattern) {
if (!strcmp(grep, "grep") || !strcmp(grep, "author") ||
!strcmp(grep, "committer"))
argv[argc++] = fmt("--%s=%s", grep, pattern);
@@ -215,8 +228,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
commit->parents = NULL;
}
if (pager) {
- htmlf("