aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.h2
-rw-r--r--ui-shared.c6
-rw-r--r--ui-summary.c13
3 files changed, 0 insertions, 21 deletions
diff --git a/cgit.h b/cgit.h
index f8f0316..d9a15f4 100644
--- a/cgit.h
+++ b/cgit.h
@@ -236,8 +236,6 @@ 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 e4bb98f..5c5bcf3 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -227,12 +227,6 @@ void cgit_commit_link(char *name, char *title, char *class, char *head,
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 016fea2..97f1b57 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -166,13 +166,6 @@ 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;
@@ -197,9 +190,6 @@ 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)
@@ -221,9 +211,6 @@ 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()