Author: Lars Hjemli <hjemli@gmail.com>
Add links to the new refs page from summary page If either branches or tags are filtered on the summary page, add a link to refs/heads and/or refs/tags right below the last branch/tag. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
cgit.h | 2 ++ ui-shared.c | 6 ++++++ ui-summary.c | 13 +++++++++++++
diff --git a/cgit.h b/cgit.h index d9a15f42e5418143135036c0346daecef2878f47..f8f0316dd3cbb40133b3cf9d1b09e0bdcedc1355 100644 --- a/cgit.h +++ b/cgit.h @@ -236,6 +236,8 @@ extern void cgit_log_link(char *name, char *title, char *class, char *head, char *rev, char *path, int ofs); extern void cgit_commit_link(char *name, char *title, char *class, char *head, char *rev); +extern void cgit_refs_link(char *name, char *title, char *class, char *head, + char *rev, char *path); extern void cgit_snapshot_link(char *name, char *title, char *class, char *head, char *rev, char *archivename); extern void cgit_diff_link(char *name, char *title, char *class, char *head, diff --git a/ui-shared.c b/ui-shared.c index 5c5bcf35a71e8a09dfdc39f144af4b4e6629fd46..e4bb98fdc8b75755ed2841db087f6282b87f721d 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -227,6 +227,12 @@ } reporevlink("commit", name, title, class, head, rev, NULL); } +void cgit_refs_link(char *name, char *title, char *class, char *head, + char *rev, char *path) +{ + reporevlink("refs", name, title, class, head, rev, path); +} + void cgit_snapshot_link(char *name, char *title, char *class, char *head, char *rev, char *archivename) { diff --git a/ui-summary.c b/ui-summary.c index 97f1b57a5c8c68aa5b553f4e1bc8475fc36e94a5..016fea2107668b507dfbfb0a3f5366c96f2dd3cb 100644 --- a/ui-summary.c +++ b/ui-summary.c @@ -166,6 +166,13 @@ html(""); return 0; } +static void print_refs_link(char *path) +{ + html("<tr class='nohover'><td colspan='4'>"); + cgit_refs_link("[...]", NULL, NULL, cgit_query_head, NULL, path); + html("</td></tr>"); +} + void cgit_print_branches(int maxcount) { struct reflist list; @@ -190,6 +197,9 @@ } for(i=0; i<maxcount; i++) cgit_print_branch(list.refs[i]); + + if (maxcount < list.count) + print_refs_link("heads"); } void cgit_print_tags(int maxcount) @@ -211,6 +221,9 @@ maxcount = list.count; print_tag_header(); for(i=0; i<maxcount; i++) print_tag(list.refs[i]); + + if (maxcount < list.count) + print_refs_link("tags"); } static void cgit_print_archives()