aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.c16
-rw-r--r--ui-summary.c2
2 files changed, 1 insertions, 17 deletions
diff --git a/cgit.c b/cgit.c
index 0ad8171..02dddda 100644
--- a/cgit.c
+++ b/cgit.c
@@ -536,17 +536,6 @@ static void choose_readme(struct cgit_repo *repo)
string_list_append(&repo->readme, filename)->util = ref;
}
-static void print_no_repo_clone_urls(const char *url)
-{
- html("<tr><td><a rel='vcs-git' href='");
- html_url_path(url);
- html("' title='");
- html_attr(ctx.repo->name);
- html(" Git repository'>");
- html_txt(url);
- html("</a></td></tr>\n");
-}
-
static int prepare_repo_cmd(void)
{
unsigned char sha1[20];
@@ -597,11 +586,6 @@ static int prepare_repo_cmd(void)
cgit_print_docstart();
cgit_print_pageheader();
cgit_print_error("Repository seems to be empty");
- if (!strcmp(ctx.qry.page, "summary")) {
- html("<table class='list'><tr class='nohover'><td>&nbsp;</td></tr><tr class='nohover'><th class='left'>Clone</th></tr>\n");
- cgit_add_clone_urls(print_no_repo_clone_urls);
- html("</table>\n");
- }
cgit_print_docend();
return 1;
}
diff --git a/ui-summary.c b/ui-summary.c
index fa5ba04..46ca713 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -28,7 +28,7 @@ static void print_url(const char *url)
if (urls++ == 0) {
htmlf("<tr class='nohover'><td colspan='%d'>&nbsp;</td></tr>", columns);
- htmlf("<tr class='nohover'><th class='left' colspan='%d'>Clone</th></tr>\n", columns);
+ htmlf("<tr><th class='left' colspan='%d'>Clone</th></tr>\n", columns);
}
htmlf("<tr><td colspan='%d'><a rel='vcs-git' href='", columns);