diff options
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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 | ||
539 | static 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 | |||
539 | static int prepare_repo_cmd(void) | 550 | static 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> </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 | } |