all repos — cgit @ bd24832cd7a72117afb7fa785f4e6bfa4324bf30

a hyperfast web frontend for git written in c

cgit: show clone URLs for empty repo
Jason A. Donenfeld Jason@zx2c4.com
Thu, 05 Mar 2015 02:18:42 +0100
commit

bd24832cd7a72117afb7fa785f4e6bfa4324bf30

parent

db9a70b159a107da29f88865d63ba14dd127556f

2 files changed, 17 insertions(+), 1 deletions(-)

jump to
M cgit.ccgit.c

@@ -536,6 +536,17 @@ if (found)

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];

@@ -586,6 +597,11 @@ cgit_print_http_headers();

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; }
M ui-summary.cui-summary.c

@@ -28,7 +28,7 @@ columns++;

if (urls++ == 0) { htmlf("<tr class='nohover'><td colspan='%d'>&nbsp;</td></tr>", columns); - htmlf("<tr><th class='left' colspan='%d'>Clone</th></tr>\n", columns); + htmlf("<tr class='nohover'><th class='left' colspan='%d'>Clone</th></tr>\n", columns); } htmlf("<tr><td colspan='%d'><a rel='vcs-git' href='", columns);