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
@@ -551,54 +551,54 @@ void cgit_print_pageheader(struct cgit_context *ctx)
551 else 551 else
552 html_attr(cgit_rooturl()); 552 html_attr(cgit_rooturl());
553 html("'><img src='"); 553 html("'><img src='");
554 html_attr(ctx->cfg.logo); 554 html_attr(ctx->cfg.logo);
555 html("' alt='cgit logo'/></a></td>\n"); 555 html("' alt='cgit logo'/></a></td>\n");
556 556
557 html("<td class='main'>"); 557 html("<td class='main'>");
558 if (ctx->repo) { 558 if (ctx->repo) {
559 cgit_index_link("index", NULL, NULL, NULL, 0); 559 cgit_index_link("index", NULL, NULL, NULL, 0);
560 html(" : "); 560 html(" : ");
561 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), 561 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"),
562 ctx->qry.head, NULL, NULL); 562 ctx->qry.head, NULL, NULL);
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,
593 ctx->qry.sha1, NULL); 593 ctx->qry.sha1, NULL);
594 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, 594 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
595 NULL, NULL, 0, NULL, NULL); 595 NULL, NULL, 0, NULL, NULL);
596 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, 596 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head,
597 ctx->qry.sha1, NULL); 597 ctx->qry.sha1, NULL);
598 cgit_commit_link("commit", NULL, hc(cmd, "commit"), 598 cgit_commit_link("commit", NULL, hc(cmd, "commit"),
599 ctx->qry.head, ctx->qry.sha1); 599 ctx->qry.head, ctx->qry.sha1);
600 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, 600 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head,
601 ctx->qry.sha1, ctx->qry.sha2, NULL); 601 ctx->qry.sha1, ctx->qry.sha2, NULL);
602 if (ctx->repo->readme) 602 if (ctx->repo->readme)
603 reporevlink("about", "about", NULL, 603 reporevlink("about", "about", NULL,
604 hc(cmd, "about"), ctx->qry.head, NULL, 604 hc(cmd, "about"), ctx->qry.head, NULL,