-rw-r--r-- | ui-shared.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index ee3f6fe..1fc5c09 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -594,26 +594,25 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
594 | if (ctx->cfg.logo_link) | 594 | if (ctx->cfg.logo_link) |
595 | html_attr(ctx->cfg.logo_link); | 595 | html_attr(ctx->cfg.logo_link); |
596 | else | 596 | else |
597 | html_attr(cgit_rooturl()); | 597 | html_attr(cgit_rooturl()); |
598 | html("'><img src='"); | 598 | html("'><img src='"); |
599 | html_attr(ctx->cfg.logo); | 599 | html_attr(ctx->cfg.logo); |
600 | html("' alt='cgit logo'/></a></td>\n"); | 600 | html("' alt='cgit logo'/></a></td>\n"); |
601 | 601 | ||
602 | html("<td class='main'>"); | 602 | html("<td class='main'>"); |
603 | if (ctx->repo) { | 603 | if (ctx->repo) { |
604 | cgit_index_link("index", NULL, NULL, NULL, 0); | 604 | cgit_index_link("index", NULL, NULL, NULL, 0); |
605 | html(" : "); | 605 | html(" : "); |
606 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), | 606 | cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL); |
607 | ctx->qry.head, NULL, NULL); | ||
608 | html("</td><td class='form'>"); | 607 | html("</td><td class='form'>"); |
609 | html("<form method='get' action=''>\n"); | 608 | html("<form method='get' action=''>\n"); |
610 | add_hidden_formfields(0, 1, ctx->qry.page); | 609 | add_hidden_formfields(0, 1, ctx->qry.page); |
611 | html("<select name='h' onchange='this.form.submit();'>\n"); | 610 | html("<select name='h' onchange='this.form.submit();'>\n"); |
612 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 611 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
613 | html("</select> "); | 612 | html("</select> "); |
614 | html("<input type='submit' name='' value='switch'/>"); | 613 | html("<input type='submit' name='' value='switch'/>"); |
615 | html("</form>"); | 614 | html("</form>"); |
616 | } else | 615 | } else |
617 | html_txt(ctx->cfg.root_title); | 616 | html_txt(ctx->cfg.root_title); |
618 | html("</td></tr>\n"); | 617 | html("</td></tr>\n"); |
619 | 618 | ||
@@ -623,26 +622,26 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
623 | html("</td><td class='sub right'>"); | 622 | html("</td><td class='sub right'>"); |
624 | html_txt(ctx->repo->owner); | 623 | html_txt(ctx->repo->owner); |
625 | } else { | 624 | } else { |
626 | if (ctx->cfg.root_desc) | 625 | if (ctx->cfg.root_desc) |
627 | html_txt(ctx->cfg.root_desc); | 626 | html_txt(ctx->cfg.root_desc); |
628 | else if (ctx->cfg.index_info) | 627 | else if (ctx->cfg.index_info) |
629 | html_include(ctx->cfg.index_info); | 628 | html_include(ctx->cfg.index_info); |
630 | } | 629 | } |
631 | html("</td></tr></table>\n"); | 630 | html("</td></tr></table>\n"); |
632 | 631 | ||
633 | html("<table class='tabs'><tr><td>\n"); | 632 | html("<table class='tabs'><tr><td>\n"); |
634 | if (ctx->repo) { | 633 | if (ctx->repo) { |
635 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 634 | cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, |
636 | ctx->qry.head, NULL, NULL); | 635 | ctx->qry.head); |
637 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 636 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
638 | ctx->qry.sha1, NULL); | 637 | ctx->qry.sha1, NULL); |
639 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 638 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
640 | NULL, NULL, 0, NULL, NULL); | 639 | NULL, NULL, 0, NULL, NULL); |
641 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 640 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
642 | ctx->qry.sha1, NULL); | 641 | ctx->qry.sha1, NULL); |
643 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 642 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
644 | ctx->qry.head, ctx->qry.sha1); | 643 | ctx->qry.head, ctx->qry.sha1); |
645 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 644 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
646 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 645 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
647 | if (ctx->repo->readme) | 646 | if (ctx->repo->readme) |
648 | reporevlink("about", "about", NULL, | 647 | reporevlink("about", "about", NULL, |