summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-07-27 10:22:16 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-07-27 10:22:16 (UTC)
commit2d6ee032d0c2f84ebcfaa12d3289e85cfab18fcd (patch) (unidiff)
treed653a5a24e24d6ef3c2cbfc833a212a123aef5fa
parent78af25ccac7aab6baccd58e4d65bfe879a25dd54 (diff)
downloadcgit-2d6ee032d0c2f84ebcfaa12d3289e85cfab18fcd.zip
cgit-2d6ee032d0c2f84ebcfaa12d3289e85cfab18fcd.tar.gz
cgit-2d6ee032d0c2f84ebcfaa12d3289e85cfab18fcd.tar.bz2
ui-shared: show repo owner along with description
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 6f83d2a..209af6e 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -563,30 +563,30 @@ void cgit_print_pageheader(struct cgit_context *ctx)
563 html("</td><td class='form'>"); 563 html("</td><td class='form'>");
564 html("<form method='get' action=''>\n"); 564 html("<form method='get' action=''>\n");
565 add_hidden_formfields(0, 1, ctx->qry.page); 565 add_hidden_formfields(0, 1, ctx->qry.page);
566 html("<select name='h' onchange='this.form.submit();'>\n"); 566 html("<select name='h' onchange='this.form.submit();'>\n");
567 for_each_branch_ref(print_branch_option, ctx->qry.head); 567 for_each_branch_ref(print_branch_option, ctx->qry.head);
568 html("</select> "); 568 html("</select> ");
569 html("<input type='submit' name='' value='switch'/>"); 569 html("<input type='submit' name='' value='switch'/>");
570 html("</form>"); 570 html("</form>");
571 } else 571 } else
572 html_txt(ctx->cfg.root_title); 572 html_txt(ctx->cfg.root_title);
573 html("</td></tr>\n"); 573 html("</td></tr>\n");
574 574
575 html("<tr><td class='sub'"); 575 html("<tr><td class='sub'>");
576 if (ctx->repo) { 576 if (ctx->repo) {
577 html(" colspan='2'>");
578 html_txt(ctx->repo->desc); 577 html_txt(ctx->repo->desc);
578 html("</td><td class='sub right'>");
579 html_txt(ctx->repo->owner);
579 } else { 580 } else {
580 html(">");
581 if (ctx->cfg.root_desc) 581 if (ctx->cfg.root_desc)
582 html_txt(ctx->cfg.root_desc); 582 html_txt(ctx->cfg.root_desc);
583 else if (ctx->cfg.index_info) 583 else if (ctx->cfg.index_info)
584 html_include(ctx->cfg.index_info); 584 html_include(ctx->cfg.index_info);
585 } 585 }
586 html("</td></tr></table>\n"); 586 html("</td></tr></table>\n");
587 587
588 html("<table class='tabs'><tr><td>\n"); 588 html("<table class='tabs'><tr><td>\n");
589 if (ctx->repo) { 589 if (ctx->repo) {
590 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), 590 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"),
591 ctx->qry.head, NULL, NULL); 591 ctx->qry.head, NULL, NULL);
592 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, 592 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,