all repos — cgit @ e9d3bd544fe94ba5ade9ccf185328fcc2414814b

a hyperfast web frontend for git written in c

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>
Lars Hjemli hjemli@gmail.com
Sun, 05 Oct 2008 16:55:50 +0200
commit

e9d3bd544fe94ba5ade9ccf185328fcc2414814b

parent

44b208aa44c4cdf7e1e339bbd5b028c23da55a46

2 files changed, 6 insertions(+), 0 deletions(-)

jump to
M ui-shared.cui-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) {
M ui-shared.hui-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,