-rw-r--r-- | ui-shared.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 197ee37..37c60b2 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -1,84 +1,99 @@ | |||
1 | /* ui-shared.c: common web output functions | 1 | /* ui-shared.c: common web output functions |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "cmd.h" | 10 | #include "cmd.h" |
11 | #include "html.h" | 11 | #include "html.h" |
12 | 12 | ||
13 | const char cgit_doctype[] = | 13 | const char cgit_doctype[] = |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
16 | 16 | ||
17 | static char *http_date(time_t t) | 17 | static char *http_date(time_t t) |
18 | { | 18 | { |
19 | static char day[][4] = | 19 | static char day[][4] = |
20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
21 | static char month[][4] = | 21 | static char month[][4] = |
22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
24 | struct tm *tm = gmtime(&t); | 24 | struct tm *tm = gmtime(&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 | ||
30 | void cgit_print_error(char *msg) | 30 | void 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 | ||
37 | char *cgit_hosturl() | ||
38 | { | ||
39 | char *host, *port; | ||
40 | |||
41 | host = getenv("SERVER_NAME"); | ||
42 | if (!host) | ||
43 | return NULL; | ||
44 | port = getenv("SERVER_PORT"); | ||
45 | if (port && atoi(port) != 80) | ||
46 | host = xstrdup(fmt("%s:%d", host, atoi(port))); | ||
47 | else | ||
48 | host = xstrdup(host); | ||
49 | return host; | ||
50 | } | ||
51 | |||
37 | char *cgit_rooturl() | 52 | char *cgit_rooturl() |
38 | { | 53 | { |
39 | if (ctx.cfg.virtual_root) | 54 | if (ctx.cfg.virtual_root) |
40 | return fmt("%s/", ctx.cfg.virtual_root); | 55 | return fmt("%s/", ctx.cfg.virtual_root); |
41 | else | 56 | else |
42 | return ctx.cfg.script_name; | 57 | return ctx.cfg.script_name; |
43 | } | 58 | } |
44 | 59 | ||
45 | char *cgit_repourl(const char *reponame) | 60 | char *cgit_repourl(const char *reponame) |
46 | { | 61 | { |
47 | if (ctx.cfg.virtual_root) { | 62 | if (ctx.cfg.virtual_root) { |
48 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); | 63 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); |
49 | } else { | 64 | } else { |
50 | return fmt("?r=%s", reponame); | 65 | return fmt("?r=%s", reponame); |
51 | } | 66 | } |
52 | } | 67 | } |
53 | 68 | ||
54 | char *cgit_fileurl(const char *reponame, const char *pagename, | 69 | char *cgit_fileurl(const char *reponame, const char *pagename, |
55 | const char *filename, const char *query) | 70 | const char *filename, const char *query) |
56 | { | 71 | { |
57 | char *tmp; | 72 | char *tmp; |
58 | char *delim; | 73 | char *delim; |
59 | 74 | ||
60 | if (ctx.cfg.virtual_root) { | 75 | if (ctx.cfg.virtual_root) { |
61 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, | 76 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, |
62 | pagename, (filename ? filename:"")); | 77 | pagename, (filename ? filename:"")); |
63 | delim = "?"; | 78 | delim = "?"; |
64 | } else { | 79 | } else { |
65 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, | 80 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, |
66 | (filename ? filename : "")); | 81 | (filename ? filename : "")); |
67 | delim = "&"; | 82 | delim = "&"; |
68 | } | 83 | } |
69 | if (query) | 84 | if (query) |
70 | tmp = fmt("%s%s%s", tmp, delim, query); | 85 | tmp = fmt("%s%s%s", tmp, delim, query); |
71 | return tmp; | 86 | return tmp; |
72 | } | 87 | } |
73 | 88 | ||
74 | char *cgit_pageurl(const char *reponame, const char *pagename, | 89 | char *cgit_pageurl(const char *reponame, const char *pagename, |
75 | const char *query) | 90 | const char *query) |
76 | { | 91 | { |
77 | return cgit_fileurl(reponame,pagename,0,query); | 92 | return cgit_fileurl(reponame,pagename,0,query); |
78 | } | 93 | } |
79 | 94 | ||
80 | const char *cgit_repobasename(const char *reponame) | 95 | const char *cgit_repobasename(const char *reponame) |
81 | { | 96 | { |
82 | /* I assume we don't need to store more than one repo basename */ | 97 | /* I assume we don't need to store more than one repo basename */ |
83 | static char rvbuf[1024]; | 98 | static char rvbuf[1024]; |
84 | int p; | 99 | int p; |
@@ -383,113 +398,121 @@ void cgit_print_age(time_t t, time_t max_relative, char *format) | |||
383 | } | 398 | } |
384 | 399 | ||
385 | if (secs < TM_HOUR * 2) { | 400 | if (secs < TM_HOUR * 2) { |
386 | htmlf("<span class='age-mins'>%.0f min.</span>", | 401 | htmlf("<span class='age-mins'>%.0f min.</span>", |
387 | secs * 1.0 / TM_MIN); | 402 | secs * 1.0 / TM_MIN); |
388 | return; | 403 | return; |
389 | } | 404 | } |
390 | if (secs < TM_DAY * 2) { | 405 | if (secs < TM_DAY * 2) { |
391 | htmlf("<span class='age-hours'>%.0f hours</span>", | 406 | htmlf("<span class='age-hours'>%.0f hours</span>", |
392 | secs * 1.0 / TM_HOUR); | 407 | secs * 1.0 / TM_HOUR); |
393 | return; | 408 | return; |
394 | } | 409 | } |
395 | if (secs < TM_WEEK * 2) { | 410 | if (secs < TM_WEEK * 2) { |
396 | htmlf("<span class='age-days'>%.0f days</span>", | 411 | htmlf("<span class='age-days'>%.0f days</span>", |
397 | secs * 1.0 / TM_DAY); | 412 | secs * 1.0 / TM_DAY); |
398 | return; | 413 | return; |
399 | } | 414 | } |
400 | if (secs < TM_MONTH * 2) { | 415 | if (secs < TM_MONTH * 2) { |
401 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 416 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
402 | secs * 1.0 / TM_WEEK); | 417 | secs * 1.0 / TM_WEEK); |
403 | return; | 418 | return; |
404 | } | 419 | } |
405 | if (secs < TM_YEAR * 2) { | 420 | if (secs < TM_YEAR * 2) { |
406 | htmlf("<span class='age-months'>%.0f months</span>", | 421 | htmlf("<span class='age-months'>%.0f months</span>", |
407 | secs * 1.0 / TM_MONTH); | 422 | secs * 1.0 / TM_MONTH); |
408 | return; | 423 | return; |
409 | } | 424 | } |
410 | htmlf("<span class='age-years'>%.0f years</span>", | 425 | htmlf("<span class='age-years'>%.0f years</span>", |
411 | secs * 1.0 / TM_YEAR); | 426 | secs * 1.0 / TM_YEAR); |
412 | } | 427 | } |
413 | 428 | ||
414 | void cgit_print_http_headers(struct cgit_context *ctx) | 429 | void cgit_print_http_headers(struct cgit_context *ctx) |
415 | { | 430 | { |
416 | if (ctx->page.mimetype && ctx->page.charset) | 431 | if (ctx->page.mimetype && ctx->page.charset) |
417 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, | 432 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, |
418 | ctx->page.charset); | 433 | ctx->page.charset); |
419 | else if (ctx->page.mimetype) | 434 | else if (ctx->page.mimetype) |
420 | htmlf("Content-Type: %s\n", ctx->page.mimetype); | 435 | htmlf("Content-Type: %s\n", ctx->page.mimetype); |
421 | if (ctx->page.filename) | 436 | if (ctx->page.filename) |
422 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", | 437 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", |
423 | ctx->page.filename); | 438 | ctx->page.filename); |
424 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); | 439 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); |
425 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); | 440 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); |
426 | html("\n"); | 441 | html("\n"); |
427 | } | 442 | } |
428 | 443 | ||
429 | void cgit_print_docstart(struct cgit_context *ctx) | 444 | void cgit_print_docstart(struct cgit_context *ctx) |
430 | { | 445 | { |
446 | char *host = cgit_hosturl(); | ||
431 | html(cgit_doctype); | 447 | html(cgit_doctype); |
432 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 448 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
433 | html("<head>\n"); | 449 | html("<head>\n"); |
434 | html("<title>"); | 450 | html("<title>"); |
435 | html_txt(ctx->page.title); | 451 | html_txt(ctx->page.title); |
436 | html("</title>\n"); | 452 | html("</title>\n"); |
437 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 453 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
438 | if (ctx->cfg.robots && *ctx->cfg.robots) | 454 | if (ctx->cfg.robots && *ctx->cfg.robots) |
439 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); | 455 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); |
440 | html("<link rel='stylesheet' type='text/css' href='"); | 456 | html("<link rel='stylesheet' type='text/css' href='"); |
441 | html_attr(ctx->cfg.css); | 457 | html_attr(ctx->cfg.css); |
442 | html("'/>\n"); | 458 | html("'/>\n"); |
443 | if (ctx->cfg.favicon) { | 459 | if (ctx->cfg.favicon) { |
444 | html("<link rel='shortcut icon' href='"); | 460 | html("<link rel='shortcut icon' href='"); |
445 | html_attr(ctx->cfg.favicon); | 461 | html_attr(ctx->cfg.favicon); |
446 | html("'/>\n"); | 462 | html("'/>\n"); |
447 | } | 463 | } |
464 | if (host && ctx->repo) { | ||
465 | html("<link rel='alternate' title='Atom feed' href='http://"); | ||
466 | html_attr(cgit_hosturl()); | ||
467 | html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path, | ||
468 | fmt("h=%s", ctx->qry.head))); | ||
469 | html("' type='application/atom+xml'/>"); | ||
470 | } | ||
448 | html("</head>\n"); | 471 | html("</head>\n"); |
449 | html("<body>\n"); | 472 | html("<body>\n"); |
450 | } | 473 | } |
451 | 474 | ||
452 | void cgit_print_docend() | 475 | void cgit_print_docend() |
453 | { | 476 | { |
454 | html("</div>"); | 477 | html("</div>"); |
455 | if (ctx.cfg.footer) | 478 | if (ctx.cfg.footer) |
456 | html_include(ctx.cfg.footer); | 479 | html_include(ctx.cfg.footer); |
457 | else { | 480 | else { |
458 | html("<div class='footer'>generated "); | 481 | html("<div class='footer'>generated "); |
459 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); | 482 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); |
460 | htmlf(" by cgit %s", cgit_version); | 483 | htmlf(" by cgit %s", cgit_version); |
461 | html("</div>\n"); | 484 | html("</div>\n"); |
462 | } | 485 | } |
463 | html("</body>\n</html>\n"); | 486 | html("</body>\n</html>\n"); |
464 | } | 487 | } |
465 | 488 | ||
466 | int print_branch_option(const char *refname, const unsigned char *sha1, | 489 | int print_branch_option(const char *refname, const unsigned char *sha1, |
467 | int flags, void *cb_data) | 490 | int flags, void *cb_data) |
468 | { | 491 | { |
469 | char *name = (char *)refname; | 492 | char *name = (char *)refname; |
470 | html_option(name, name, ctx.qry.head); | 493 | html_option(name, name, ctx.qry.head); |
471 | return 0; | 494 | return 0; |
472 | } | 495 | } |
473 | 496 | ||
474 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 497 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
475 | int flags, void *cb_data) | 498 | int flags, void *cb_data) |
476 | { | 499 | { |
477 | struct tag *tag; | 500 | struct tag *tag; |
478 | struct taginfo *info; | 501 | struct taginfo *info; |
479 | struct object *obj; | 502 | struct object *obj; |
480 | char buf[256], *url; | 503 | char buf[256], *url; |
481 | unsigned char fileid[20]; | 504 | unsigned char fileid[20]; |
482 | int *header = (int *)cb_data; | 505 | int *header = (int *)cb_data; |
483 | 506 | ||
484 | if (prefixcmp(refname, "refs/archives")) | 507 | if (prefixcmp(refname, "refs/archives")) |
485 | return 0; | 508 | return 0; |
486 | strncpy(buf, refname+14, sizeof(buf)); | 509 | strncpy(buf, refname+14, sizeof(buf)); |
487 | obj = parse_object(sha1); | 510 | obj = parse_object(sha1); |
488 | if (!obj) | 511 | if (!obj) |
489 | return 1; | 512 | return 1; |
490 | if (obj->type == OBJ_TAG) { | 513 | if (obj->type == OBJ_TAG) { |
491 | tag = lookup_tag(sha1); | 514 | tag = lookup_tag(sha1); |
492 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 515 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
493 | return 0; | 516 | return 0; |
494 | hashcpy(fileid, tag->tagged->sha1); | 517 | hashcpy(fileid, tag->tagged->sha1); |
495 | } else if (obj->type != OBJ_BLOB) { | 518 | } else if (obj->type != OBJ_BLOB) { |