about summary refs log tree commit diff
path: root/ui-summary.c
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2014-08-01 22:14:18 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2014-12-23 19:04:13 -0700
commitd31be4ccc2f978edd2a40c2721e1efdc1eee2343 (patch)
treeaaf90891179691c153702696ffeca8d558e09b3f /ui-summary.c
parentExtract clone URL printing to ui-shared.c (diff)
downloadcgit-pink-d31be4ccc2f978edd2a40c2721e1efdc1eee2343.tar.gz
cgit-pink-d31be4ccc2f978edd2a40c2721e1efdc1eee2343.zip
ui-summary: add "rel='vcs-git'" to clone URL links
This is described in the rel-vcs microformat[1].

[1] https://joeyh.name/rfc/rel-vcs/

Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to '')
-rw-r--r--ui-summary.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui-summary.c b/ui-summary.c
index 70ea908..46ca713 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -31,9 +31,11 @@ static void print_url(const char *url)
 		htmlf("<tr><th class='left' colspan='%d'>Clone</th></tr>\n", columns);
 	}
 
-	htmlf("<tr><td colspan='%d'><a href='", columns);
+	htmlf("<tr><td colspan='%d'><a rel='vcs-git' href='", columns);
 	html_url_path(url);
-	html("'>");
+	html("' title='");
+	html_attr(ctx.repo->name);
+	html(" Git repository'>");
 	html_txt(url);
 	html("</a></td></tr>\n");
 }