summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-10-27 08:47:44 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-10-27 08:53:28 (UTC)
commitac1f493b6bbc589327e9ba3303f112fcd323c6b6 (patch) (unidiff)
tree4729ecc84e0b24b044131546ff39bdd55a6cd9a6
parent7937d06090dd5e19145ec6fa8befc5770954b30c (diff)
downloadcgit-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>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h2
-rw-r--r--ui-shared.c6
-rw-r--r--ui-summary.c13
3 files changed, 21 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index d9a15f4..f8f0316 100644
--- a/cgit.h
+++ b/cgit.h
@@ -237,4 +237,6 @@ extern void cgit_log_link(char *name, char *title, char *class, char *head,
237extern void cgit_commit_link(char *name, char *title, char *class, char *head, 237extern void cgit_commit_link(char *name, char *title, char *class, char *head,
238 char *rev); 238 char *rev);
239extern void cgit_refs_link(char *name, char *title, char *class, char *head,
240 char *rev, char *path);
239extern void cgit_snapshot_link(char *name, char *title, char *class, 241extern void cgit_snapshot_link(char *name, char *title, char *class,
240 char *head, char *rev, char *archivename); 242 char *head, char *rev, char *archivename);
diff --git a/ui-shared.c b/ui-shared.c
index 5c5bcf3..e4bb98f 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -228,4 +228,10 @@ void cgit_commit_link(char *name, char *title, char *class, char *head,
228} 228}
229 229
230void 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
230void cgit_snapshot_link(char *name, char *title, char *class, char *head, 236void cgit_snapshot_link(char *name, char *title, char *class, char *head,
231 char *rev, char *archivename) 237 char *rev, char *archivename)
diff --git a/ui-summary.c b/ui-summary.c
index 97f1b57..016fea2 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -167,4 +167,11 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
167} 167}
168 168
169static 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
169void cgit_print_branches(int maxcount) 176void cgit_print_branches(int maxcount)
170{ 177{
@@ -191,4 +198,7 @@ void cgit_print_branches(int maxcount)
191 for(i=0; i<maxcount; i++) 198 for(i=0; i<maxcount; i++)
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}
194 204
@@ -212,4 +222,7 @@ void cgit_print_tags(int maxcount)
212 for(i=0; i<maxcount; i++) 222 for(i=0; i<maxcount; i++)
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}
215 228