summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c81
1 files changed, 56 insertions, 25 deletions
diff --git a/ui-shared.c b/ui-shared.c
index de77bbf..cf06511 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -25,42 +25,41 @@ static char *http_date(time_t t)
25 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], 25 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday],
26 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, 26 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year,
27 tm->tm_hour, tm->tm_min, tm->tm_sec); 27 tm->tm_hour, tm->tm_min, tm->tm_sec);
28} 28}
29 29
30void cgit_print_error(char *msg) 30void cgit_print_error(char *msg)
31{ 31{
32 html("<div class='error'>"); 32 html("<div class='error'>");
33 html_txt(msg); 33 html_txt(msg);
34 html("</div>\n"); 34 html("</div>\n");
35} 35}
36 36
37char *cgit_hosturl() 37char *cgit_httpscheme()
38{ 38{
39 char *host, *port; 39 if (ctx.env.https && !strcmp(ctx.env.https, "on"))
40 return "https://";
41 else
42 return "http://";
43}
40 44
41 host = getenv("HTTP_HOST"); 45char *cgit_hosturl()
42 if (host) { 46{
43 host = xstrdup(host); 47 if (ctx.env.http_host)
44 } else { 48 return ctx.env.http_host;
45 host = getenv("SERVER_NAME"); 49 if (!ctx.env.server_name)
46 if (!host) 50 return NULL;
47 return NULL; 51 if (!ctx.env.server_port || atoi(ctx.env.server_port) == 80)
48 port = getenv("SERVER_PORT"); 52 return ctx.env.server_name;
49 if (port && atoi(port) != 80) 53 return xstrdup(fmt("%s:%s", ctx.env.server_name, ctx.env.server_port));
50 host = xstrdup(fmt("%s:%d", host, atoi(port)));
51 else
52 host = xstrdup(host);
53 }
54 return host;
55} 54}
56 55
57char *cgit_rooturl() 56char *cgit_rooturl()
58{ 57{
59 if (ctx.cfg.virtual_root) 58 if (ctx.cfg.virtual_root)
60 return fmt("%s/", ctx.cfg.virtual_root); 59 return fmt("%s/", ctx.cfg.virtual_root);
61 else 60 else
62 return ctx.cfg.script_name; 61 return ctx.cfg.script_name;
63} 62}
64 63
65char *cgit_repourl(const char *reponame) 64char *cgit_repourl(const char *reponame)
66{ 65{
@@ -447,83 +446,108 @@ void cgit_print_age(time_t t, time_t max_relative, char *format)
447 } 446 }
448 if (secs < TM_YEAR * 2) { 447 if (secs < TM_YEAR * 2) {
449 htmlf("<span class='age-months'>%.0f months</span>", 448 htmlf("<span class='age-months'>%.0f months</span>",
450 secs * 1.0 / TM_MONTH); 449 secs * 1.0 / TM_MONTH);
451 return; 450 return;
452 } 451 }
453 htmlf("<span class='age-years'>%.0f years</span>", 452 htmlf("<span class='age-years'>%.0f years</span>",
454 secs * 1.0 / TM_YEAR); 453 secs * 1.0 / TM_YEAR);
455} 454}
456 455
457void cgit_print_http_headers(struct cgit_context *ctx) 456void cgit_print_http_headers(struct cgit_context *ctx)
458{ 457{
458 if (ctx->env.no_http && !strcmp(ctx->env.no_http, "1"))
459 return;
460
461 if (ctx->page.status)
462 htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg);
459 if (ctx->page.mimetype && ctx->page.charset) 463 if (ctx->page.mimetype && ctx->page.charset)
460 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, 464 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
461 ctx->page.charset); 465 ctx->page.charset);
462 else if (ctx->page.mimetype) 466 else if (ctx->page.mimetype)
463 htmlf("Content-Type: %s\n", ctx->page.mimetype); 467 htmlf("Content-Type: %s\n", ctx->page.mimetype);
464 if (ctx->page.size) 468 if (ctx->page.size)
465 htmlf("Content-Length: %ld\n", ctx->page.size); 469 htmlf("Content-Length: %ld\n", ctx->page.size);
466 if (ctx->page.filename) 470 if (ctx->page.filename)
467 htmlf("Content-Disposition: inline; filename=\"%s\"\n", 471 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
468 ctx->page.filename); 472 ctx->page.filename);
469 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); 473 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
470 htmlf("Expires: %s\n", http_date(ctx->page.expires)); 474 htmlf("Expires: %s\n", http_date(ctx->page.expires));
475 if (ctx->page.etag)
476 htmlf("ETag: \"%s\"\n", ctx->page.etag);
471 html("\n"); 477 html("\n");
478 if (ctx->env.request_method && !strcmp(ctx->env.request_method, "HEAD"))
479 exit(0);
472} 480}
473 481
474void cgit_print_docstart(struct cgit_context *ctx) 482void cgit_print_docstart(struct cgit_context *ctx)
475{ 483{
484 if (ctx->cfg.embedded) {
485 if (ctx->cfg.header)
486 html_include(ctx->cfg.header);
487 return;
488 }
489
476 char *host = cgit_hosturl(); 490 char *host = cgit_hosturl();
477 html(cgit_doctype); 491 html(cgit_doctype);
478 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); 492 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
479 html("<head>\n"); 493 html("<head>\n");
480 html("<title>"); 494 html("<title>");
481 html_txt(ctx->page.title); 495 html_txt(ctx->page.title);
482 html("</title>\n"); 496 html("</title>\n");
483 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 497 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
484 if (ctx->cfg.robots && *ctx->cfg.robots) 498 if (ctx->cfg.robots && *ctx->cfg.robots)
485 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); 499 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots);
486 html("<link rel='stylesheet' type='text/css' href='"); 500 html("<link rel='stylesheet' type='text/css' href='");
487 html_attr(ctx->cfg.css); 501 html_attr(ctx->cfg.css);
488 html("'/>\n"); 502 html("'/>\n");
489 if (ctx->cfg.favicon) { 503 if (ctx->cfg.favicon) {
490 html("<link rel='shortcut icon' href='"); 504 html("<link rel='shortcut icon' href='");
491 html_attr(ctx->cfg.favicon); 505 html_attr(ctx->cfg.favicon);
492 html("'/>\n"); 506 html("'/>\n");
493 } 507 }
494 if (host && ctx->repo) { 508 if (host && ctx->repo) {
495 html("<link rel='alternate' title='Atom feed' href='http://"); 509 html("<link rel='alternate' title='Atom feed' href='");
510 html(cgit_httpscheme());
496 html_attr(cgit_hosturl()); 511 html_attr(cgit_hosturl());
497 html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path, 512 html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path,
498 fmt("h=%s", ctx->qry.head))); 513 fmt("h=%s", ctx->qry.head)));
499 html("' type='application/atom+xml'/>"); 514 html("' type='application/atom+xml'/>\n");
500 } 515 }
516 if (ctx->cfg.head_include)
517 html_include(ctx->cfg.head_include);
501 html("</head>\n"); 518 html("</head>\n");
502 html("<body>\n"); 519 html("<body>\n");
503 if (ctx->cfg.header) 520 if (ctx->cfg.header)
504 html_include(ctx->cfg.header); 521 html_include(ctx->cfg.header);
505} 522}
506 523
507void cgit_print_docend() 524void cgit_print_docend()
508{ 525{
509 html("</div>"); 526 html("</div> <!-- class=content -->\n");
527 if (ctx.cfg.embedded) {
528 html("</div> <!-- id=cgit -->\n");
529 if (ctx.cfg.footer)
530 html_include(ctx.cfg.footer);
531 return;
532 }
510 if (ctx.cfg.footer) 533 if (ctx.cfg.footer)
511 html_include(ctx.cfg.footer); 534 html_include(ctx.cfg.footer);
512 else { 535 else {
513 htmlf("<div class='footer'>generated by cgit %s at ", 536 htmlf("<div class='footer'>generated by cgit %s at ",
514 cgit_version); 537 cgit_version);
515 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); 538 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time);
516 html("</div>\n"); 539 html("</div>\n");
517 } 540 }
541 html("</div> <!-- id=cgit -->\n");
518 html("</body>\n</html>\n"); 542 html("</body>\n</html>\n");
519} 543}
520 544
521int print_branch_option(const char *refname, const unsigned char *sha1, 545int print_branch_option(const char *refname, const unsigned char *sha1,
522 int flags, void *cb_data) 546 int flags, void *cb_data)
523{ 547{
524 char *name = (char *)refname; 548 char *name = (char *)refname;
525 html_option(name, name, ctx.qry.head); 549 html_option(name, name, ctx.qry.head);
526 return 0; 550 return 0;
527} 551}
528 552
529int print_archive_ref(const char *refname, const unsigned char *sha1, 553int print_archive_ref(const char *refname, const unsigned char *sha1,
@@ -593,31 +617,26 @@ void cgit_add_hidden_formfields(int incl_head, int incl_search, char *page)
593 if (ctx.qry.search) 617 if (ctx.qry.search)
594 html_hidden("q", ctx.qry.search); 618 html_hidden("q", ctx.qry.search);
595 } 619 }
596} 620}
597 621
598const char *fallback_cmd = "repolist"; 622const char *fallback_cmd = "repolist";
599 623
600char *hc(struct cgit_cmd *cmd, const char *page) 624char *hc(struct cgit_cmd *cmd, const char *page)
601{ 625{
602 return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active"); 626 return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active");
603} 627}
604 628
605void cgit_print_pageheader(struct cgit_context *ctx) 629static void print_header(struct cgit_context *ctx)
606{ 630{
607 struct cgit_cmd *cmd = cgit_get_cmd(ctx);
608
609 if (!cmd && ctx->repo)
610 fallback_cmd = "summary";
611
612 html("<table id='header'>\n"); 631 html("<table id='header'>\n");
613 html("<tr>\n"); 632 html("<tr>\n");
614 html("<td class='logo' rowspan='2'><a href='"); 633 html("<td class='logo' rowspan='2'><a href='");
615 if (ctx->cfg.logo_link) 634 if (ctx->cfg.logo_link)
616 html_attr(ctx->cfg.logo_link); 635 html_attr(ctx->cfg.logo_link);
617 else 636 else
618 html_attr(cgit_rooturl()); 637 html_attr(cgit_rooturl());
619 html("'><img src='"); 638 html("'><img src='");
620 html_attr(ctx->cfg.logo); 639 html_attr(ctx->cfg.logo);
621 html("' alt='cgit logo'/></a></td>\n"); 640 html("' alt='cgit logo'/></a></td>\n");
622 641
623 html("<td class='main'>"); 642 html("<td class='main'>");
@@ -640,24 +659,36 @@ void cgit_print_pageheader(struct cgit_context *ctx)
640 html("<tr><td class='sub'>"); 659 html("<tr><td class='sub'>");
641 if (ctx->repo) { 660 if (ctx->repo) {
642 html_txt(ctx->repo->desc); 661 html_txt(ctx->repo->desc);
643 html("</td><td class='sub right'>"); 662 html("</td><td class='sub right'>");
644 html_txt(ctx->repo->owner); 663 html_txt(ctx->repo->owner);
645 } else { 664 } else {
646 if (ctx->cfg.root_desc) 665 if (ctx->cfg.root_desc)
647 html_txt(ctx->cfg.root_desc); 666 html_txt(ctx->cfg.root_desc);
648 else if (ctx->cfg.index_info) 667 else if (ctx->cfg.index_info)
649 html_include(ctx->cfg.index_info); 668 html_include(ctx->cfg.index_info);
650 } 669 }
651 html("</td></tr></table>\n"); 670 html("</td></tr></table>\n");
671}
672
673void cgit_print_pageheader(struct cgit_context *ctx)
674{
675 struct cgit_cmd *cmd = cgit_get_cmd(ctx);
676
677 if (!cmd && ctx->repo)
678 fallback_cmd = "summary";
679
680 html("<div id='cgit'>");
681 if (!ctx->cfg.noheader)
682 print_header(ctx);
652 683
653 html("<table class='tabs'><tr><td>\n"); 684 html("<table class='tabs'><tr><td>\n");
654 if (ctx->repo) { 685 if (ctx->repo) {
655 cgit_summary_link("summary", NULL, hc(cmd, "summary"), 686 cgit_summary_link("summary", NULL, hc(cmd, "summary"),
656 ctx->qry.head); 687 ctx->qry.head);
657 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, 688 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,
658 ctx->qry.sha1, NULL); 689 ctx->qry.sha1, NULL);
659 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, 690 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
660 NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg); 691 NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg);
661 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, 692 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head,
662 ctx->qry.sha1, NULL); 693 ctx->qry.sha1, NULL);
663 cgit_commit_link("commit", NULL, hc(cmd, "commit"), 694 cgit_commit_link("commit", NULL, hc(cmd, "commit"),