]> git.cameronkatri.com Git - cgit.git/commitdiff
cgit: show clone URLs for empty repo
authorJason A. Donenfeld <Jason@zx2c4.com>
Thu, 5 Mar 2015 01:18:42 +0000 (02:18 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Thu, 5 Mar 2015 01:32:13 +0000 (02:32 +0100)
cgit.c
ui-summary.c

diff --git a/cgit.c b/cgit.c
index 02ddddaa2bf669b3d65dd4f5570a013a8f1a7dd7..0ad81716f17b3b5bf903e497aaaa4131134ed96a 100644 (file)
--- a/cgit.c
+++ b/cgit.c
@@ -536,6 +536,17 @@ 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];
@@ -586,6 +597,11 @@ 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;
        }
index 46ca71349f8649369500a4f7e3304959acc674ab..fa5ba0423669bb9a00ee8fa3dcebb274c7e7076a 100644 (file)
@@ -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><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);