aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2022-12-16 18:37:10 +0100
committerChristian Hesse <mail@eworm.de>2024-01-30 09:10:04 +0100
commit09817382068ba1ad0118f7a4286755935b381e14 (patch)
tree4d3b3e5cf71d65b5cf40103e01f3394238585a82
parent00ecfaadea2c40cc62b7a43e246384329e6ddb98 (diff)
downloadcgit-ch/log-commit-message.tar.gz
cgit-ch/log-commit-message.tar.bz2
cgit-ch/log-commit-message.zip
ui-log: show ellipsis if detailed commit message is availablech/log-commit-message
The existence of a detailed commit message may be of interst even if only the subject is shown by default. Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r--cgit.css8
-rw-r--r--ui-log.c2
2 files changed, 10 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index 1b848cf..f1fcade 100644
--- a/cgit.css
+++ b/cgit.css
@@ -673,6 +673,14 @@ div#cgit div.footer a:hover {
text-decoration: underline;
}
+div#cgit span.msg-avail {
+ color: #000;
+ margin: 0px 0.5em;
+ padding: 0px 0.25em;
+ background-color: #f0f0f0;
+ border: solid 1px #777777;
+}
+
div#cgit a.branch-deco {
color: #000;
margin: 0px 0.5em;
diff --git a/ui-log.c b/ui-log.c
index 311304a..0b6fd38 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -240,6 +240,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
}
cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
oid_to_hex(&commit->object.oid), ctx.qry.vpath);
+ if (!ctx.qry.showmsg && strlen(info->msg) > 0)
+ html("<span class='msg-avail'>...</span>");
show_commit_decorations(commit);
html("</td><td>");
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");