diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 10:47:44 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 10:53:28 +0200 |
commit | ac1f493b6bbc589327e9ba3303f112fcd323c6b6 (patch) | |
tree | 4729ecc84e0b24b044131546ff39bdd55a6cd9a6 /ui-summary.c | |
parent | 7937d06090dd5e19145ec6fa8befc5770954b30c (diff) | |
download | cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.tar.gz cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.tar.xz |
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>
Diffstat (limited to 'ui-summary.c')
-rw-r--r-- | ui-summary.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ui-summary.c b/ui-summary.c index 97f1b57..016fea2 100644 --- a/ui-summary.c +++ b/ui-summary.c @@ -166,6 +166,13 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1, 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 @@ void cgit_print_branches(int maxcount) 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 @@ void cgit_print_tags(int maxcount) 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() |