List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH 1/1] ui: Change author name text to link to author's commits
@ 2018-10-22 20:13 petr.vorel
  0 siblings, 0 replies; only message in thread
From: petr.vorel @ 2018-10-22 20:13 UTC (permalink / raw)


in commit list in Author columns in summary, refs and log pages.

Signed-off-by: Petr Vorel <petr.vorel at gmail.com>
---
 ui-log.c    | 2 +-
 ui-refs.c   | 5 +++--
 ui-shared.c | 7 +++++++
 ui-shared.h | 1 +
 4 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/ui-log.c b/ui-log.c
index d696e20..3fdc2a2 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -242,7 +242,7 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
 	show_commit_decorations(commit);
 	html("</td><td>");
 	cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");
-	html_txt(info->author);
+	cgit_author_link(info->author);
 	cgit_close_filter(ctx.repo->email_filter);
 
 	if (revs->graph) {
diff --git a/ui-refs.c b/ui-refs.c
index 2ec3858..297b151 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -70,7 +70,7 @@ static int print_branch(struct refinfo *ref)
 		cgit_commit_link(info->subject, NULL, NULL, name, NULL, NULL);
 		html("</td><td>");
 		cgit_open_filter(ctx.repo->email_filter, info->author_email, "refs");
-		html_txt(info->author);
+		cgit_author_link(info->author);
 		cgit_close_filter(ctx.repo->email_filter);
 		html("</td><td colspan='2'>");
 		cgit_print_age(info->committer_date, info->committer_tz, -1);
@@ -116,11 +116,12 @@ static int print_tag(struct refinfo *ref)
 	if (info) {
 		if (info->tagger) {
 			cgit_open_filter(ctx.repo->email_filter, info->tagger_email, "refs");
-			html_txt(info->tagger);
+			cgit_author_link(info->tagger);
 			cgit_close_filter(ctx.repo->email_filter);
 		}
 	} else if (ref->object->type == OBJ_COMMIT) {
 		cgit_open_filter(ctx.repo->email_filter, ref->commit->author_email, "refs");
+		cgit_author_link(ref->commit->author);
 		html_txt(ref->commit->author);
 		cgit_close_filter(ctx.repo->email_filter);
 	}
diff --git a/ui-shared.c b/ui-shared.c
index 739505a..dfe7d5a 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -294,6 +294,13 @@ static void reporevlink(const char *page, const char *name, const char *title,
 	html("</a>");
 }
 
+void cgit_author_link(const char *name)
+{
+	cgit_log_link(name, NULL, NULL, NULL,
+		      NULL, NULL, 0, "author", name,
+		      0, 0);
+}
+
 void cgit_summary_link(const char *name, const char *title, const char *class,
 		       const char *head)
 {
diff --git a/ui-shared.h b/ui-shared.h
index 4d5978b..3e2a0bb 100644
--- a/ui-shared.h
+++ b/ui-shared.h
@@ -14,6 +14,7 @@ extern char *cgit_pageurl(const char *reponame, const char *pagename,
 
 extern void cgit_add_clone_urls(void (*fn)(const char *));
 
+extern void cgit_author_link(const char *name);
 extern void cgit_index_link(const char *name, const char *title,
 			    const char *class, const char *pattern, const char *sort, int ofs, int always_root);
 extern void cgit_summary_link(const char *name, const char *title,
-- 
2.19.1



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-10-22 20:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-22 20:13 [PATCH 1/1] ui: Change author name text to link to author's commits petr.vorel

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).