author | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 08:47:44 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 08:53:28 (UTC) |
commit | ac1f493b6bbc589327e9ba3303f112fcd323c6b6 (patch) (unidiff) | |
tree | 4729ecc84e0b24b044131546ff39bdd55a6cd9a6 | |
parent | 7937d06090dd5e19145ec6fa8befc5770954b30c (diff) | |
download | cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.zip cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.tar.gz cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.tar.bz2 |
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>
-rw-r--r-- | cgit.h | 2 | ||||
-rw-r--r-- | ui-shared.c | 6 | ||||
-rw-r--r-- | ui-summary.c | 13 |
3 files changed, 21 insertions, 0 deletions
@@ -238,2 +238,4 @@ extern void cgit_commit_link(char *name, char *title, char *class, char *head, | |||
238 | char *rev); | 238 | char *rev); |
239 | extern void cgit_refs_link(char *name, char *title, char *class, char *head, | ||
240 | char *rev, char *path); | ||
239 | extern void cgit_snapshot_link(char *name, char *title, char *class, | 241 | extern void cgit_snapshot_link(char *name, char *title, char *class, |
diff --git a/ui-shared.c b/ui-shared.c index 5c5bcf3..e4bb98f 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -229,2 +229,8 @@ void cgit_commit_link(char *name, char *title, char *class, char *head, | |||
229 | 229 | ||
230 | void cgit_refs_link(char *name, char *title, char *class, char *head, | ||
231 | char *rev, char *path) | ||
232 | { | ||
233 | reporevlink("refs", name, title, class, head, rev, path); | ||
234 | } | ||
235 | |||
230 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 236 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
diff --git a/ui-summary.c b/ui-summary.c index 97f1b57..016fea2 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -168,2 +168,9 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1, | |||
168 | 168 | ||
169 | static void print_refs_link(char *path) | ||
170 | { | ||
171 | html("<tr class='nohover'><td colspan='4'>"); | ||
172 | cgit_refs_link("[...]", NULL, NULL, cgit_query_head, NULL, path); | ||
173 | html("</td></tr>"); | ||
174 | } | ||
175 | |||
169 | void cgit_print_branches(int maxcount) | 176 | void cgit_print_branches(int maxcount) |
@@ -192,2 +199,5 @@ void cgit_print_branches(int maxcount) | |||
192 | cgit_print_branch(list.refs[i]); | 199 | cgit_print_branch(list.refs[i]); |
200 | |||
201 | if (maxcount < list.count) | ||
202 | print_refs_link("heads"); | ||
193 | } | 203 | } |
@@ -213,2 +223,5 @@ void cgit_print_tags(int maxcount) | |||
213 | print_tag(list.refs[i]); | 223 | print_tag(list.refs[i]); |
224 | |||
225 | if (maxcount < list.count) | ||
226 | print_refs_link("tags"); | ||
214 | } | 227 | } |