about summary refs log tree commit diff stats
path: root/cgit.c
diff options
context:
space:
mode:
authorJason A. Donenfeld2015-03-05 02:18:42 +0100
committerJason A. Donenfeld2015-03-05 02:32:13 +0100
commitbd24832cd7a72117afb7fa785f4e6bfa4324bf30 (patch)
tree88da55b85154484c45b98b8dad560c3ff117a6dd /cgit.c
parentcache: use F_SETLK to avoid stale lock files (diff)
downloadcgit-bd24832cd7a72117afb7fa785f4e6bfa4324bf30.tar.gz
cgit-bd24832cd7a72117afb7fa785f4e6bfa4324bf30.zip
cgit: show clone URLs for empty repo
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c index 02dddda..0ad8171 100644 --- a/cgit.c +++ b/cgit.c
@@ -536,6 +536,17 @@ static void choose_readme(struct cgit_repo *repo)
536 string_list_append(&repo->readme, filename)->util = ref; 536 string_list_append(&repo->readme, filename)->util = ref;
537} 537}
538 538
539static void print_no_repo_clone_urls(const char *url)
540{
541 html("<tr><td><a rel='vcs-git' href='");
542 html_url_path(url);
543 html("' title='");
544 html_attr(ctx.repo->name);
545 html(" Git repository'>");
546 html_txt(url);
547 html("</a></td></tr>\n");
548}
549
539static int prepare_repo_cmd(void) 550static int prepare_repo_cmd(void)
540{ 551{
541 unsigned char sha1[20]; 552 unsigned char sha1[20];
@@ -586,6 +597,11 @@ static int prepare_repo_cmd(void)
586 cgit_print_docstart(); 597 cgit_print_docstart();
587 cgit_print_pageheader(); 598 cgit_print_pageheader();
588 cgit_print_error("Repository seems to be empty"); 599 cgit_print_error("Repository seems to be empty");
600 if (!strcmp(ctx.qry.page, "summary")) {
601 html("<table class='list'><tr class='nohover'><td>&nbsp;</td></tr><tr class='nohover'><th class='left'>Clone</th></tr>\n");
602 cgit_add_clone_urls(print_no_repo_clone_urls);
603 html("</table>\n");
604 }
589 cgit_print_docend(); 605 cgit_print_docend();
590 return 1; 606 return 1;
591 } 607 }