cgit

commit e9d3bd544fe94ba5ade9ccf185328fcc2414814b

Author: Lars Hjemli <hjemli@gmail.com>

ui-shared.c: add cgit_summary_link()

This function can be used to generate a link to the summary page for the
currently active repo.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 ui-shared.c | 5 +++++
 ui-shared.h | 1 +


diff --git a/ui-shared.c b/ui-shared.c
index 2eddd2d14cf8c769c1bf6f3ad2c567580cd5027d..ee3f6fefef3578391e7ba354f007884bf6baec04 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -257,6 +257,11 @@ 	html_txt(name);
 	html("</a>");
 }
 
+void cgit_summary_link(char *name, char *title, char *class, char *head)
+{
+	reporevlink(NULL, name, title, class, head, NULL, NULL);
+}
+
 void cgit_tree_link(char *name, char *title, char *class, char *head,
 		    char *rev, char *path)
 {




diff --git a/ui-shared.h b/ui-shared.h
index 747f09292fd4e571e1f1e8a0fa71e6c5b21ef2fd..0cd5ed1e25a7546475d92c02ee26e17343fcb045 100644
--- a/ui-shared.h
+++ b/ui-shared.h
@@ -10,6 +10,7 @@ 			  const char *query);
 
 extern void cgit_index_link(char *name, char *title, char *class,
 			    char *pattern, int ofs);
+extern void cgit_summary_link(char *name, char *title, char *class, char *head);
 extern void cgit_tree_link(char *name, char *title, char *class, char *head,
 			   char *rev, char *path);
 extern void cgit_plain_link(char *name, char *title, char *class, char *head,