List for cgit developers and users
 help / color / mirror / Atom feed
From: Christian Hesse <list@eworm.de>
To: cgit@lists.zx2c4.com
Cc: Christian Hesse <mail@eworm.de>
Subject: [PATCH 1/1] ui-log: show ellipsis if detailed commit message is available
Date: Fri, 16 Dec 2022 18:50:26 +0100	[thread overview]
Message-ID: <20221216175026.125944-1-list@eworm.de> (raw)

From: Christian Hesse <mail@eworm.de>

The existence of a detailed commit message may be of interst even
if only the subject is shown by default.
---
 cgit.css | 8 ++++++++
 ui-log.c | 2 ++
 2 files changed, 10 insertions(+)

diff --git a/cgit.css b/cgit.css
index dfa144d..97fd9c8 100644
--- a/cgit.css
+++ b/cgit.css
@@ -669,6 +669,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 565929f..26701fb 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");
-- 
2.39.0


                 reply	other threads:[~2022-12-16 17:50 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221216175026.125944-1-list@eworm.de \
    --to=list@eworm.de \
    --cc=cgit@lists.zx2c4.com \
    --cc=mail@eworm.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).