summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c
index cd98387..8a00099 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -318,260 +318,266 @@ void cgit_diff_link(char *name, char *title, char *class, char *head,
318 html("'>"); 318 html("'>");
319 html_txt(name); 319 html_txt(name);
320 html("</a>"); 320 html("</a>");
321} 321}
322 322
323void cgit_patch_link(char *name, char *title, char *class, char *head, 323void cgit_patch_link(char *name, char *title, char *class, char *head,
324 char *rev) 324 char *rev)
325{ 325{
326 reporevlink("patch", name, title, class, head, rev, NULL); 326 reporevlink("patch", name, title, class, head, rev, NULL);
327} 327}
328 328
329void cgit_object_link(struct object *obj) 329void cgit_object_link(struct object *obj)
330{ 330{
331 char *page, *arg, *url; 331 char *page, *arg, *url;
332 332
333 if (obj->type == OBJ_COMMIT) { 333 if (obj->type == OBJ_COMMIT) {
334 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, 334 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
335 ctx.qry.head, sha1_to_hex(obj->sha1)); 335 ctx.qry.head, sha1_to_hex(obj->sha1));
336 return; 336 return;
337 } else if (obj->type == OBJ_TREE) { 337 } else if (obj->type == OBJ_TREE) {
338 page = "tree"; 338 page = "tree";
339 arg = "id"; 339 arg = "id";
340 } else if (obj->type == OBJ_TAG) { 340 } else if (obj->type == OBJ_TAG) {
341 page = "tag"; 341 page = "tag";
342 arg = "id"; 342 arg = "id";
343 } else { 343 } else {
344 page = "blob"; 344 page = "blob";
345 arg = "id"; 345 arg = "id";
346 } 346 }
347 347
348 url = cgit_pageurl(ctx.qry.repo, page, 348 url = cgit_pageurl(ctx.qry.repo, page,
349 fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); 349 fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
350 html_link_open(url, NULL, NULL); 350 html_link_open(url, NULL, NULL);
351 htmlf("%s %s", typename(obj->type), 351 htmlf("%s %s", typename(obj->type),
352 sha1_to_hex(obj->sha1)); 352 sha1_to_hex(obj->sha1));
353 html_link_close(); 353 html_link_close();
354} 354}
355 355
356void cgit_print_date(time_t secs, char *format) 356void cgit_print_date(time_t secs, char *format)
357{ 357{
358 char buf[64]; 358 char buf[64];
359 struct tm *time; 359 struct tm *time;
360 360
361 if (!secs) 361 if (!secs)
362 return; 362 return;
363 time = gmtime(&secs); 363 time = gmtime(&secs);
364 strftime(buf, sizeof(buf)-1, format, time); 364 strftime(buf, sizeof(buf)-1, format, time);
365 html_txt(buf); 365 html_txt(buf);
366} 366}
367 367
368void cgit_print_age(time_t t, time_t max_relative, char *format) 368void cgit_print_age(time_t t, time_t max_relative, char *format)
369{ 369{
370 time_t now, secs; 370 time_t now, secs;
371 371
372 if (!t) 372 if (!t)
373 return; 373 return;
374 time(&now); 374 time(&now);
375 secs = now - t; 375 secs = now - t;
376 376
377 if (secs > max_relative && max_relative >= 0) { 377 if (secs > max_relative && max_relative >= 0) {
378 cgit_print_date(t, format); 378 cgit_print_date(t, format);
379 return; 379 return;
380 } 380 }
381 381
382 if (secs < TM_HOUR * 2) { 382 if (secs < TM_HOUR * 2) {
383 htmlf("<span class='age-mins'>%.0f min.</span>", 383 htmlf("<span class='age-mins'>%.0f min.</span>",
384 secs * 1.0 / TM_MIN); 384 secs * 1.0 / TM_MIN);
385 return; 385 return;
386 } 386 }
387 if (secs < TM_DAY * 2) { 387 if (secs < TM_DAY * 2) {
388 htmlf("<span class='age-hours'>%.0f hours</span>", 388 htmlf("<span class='age-hours'>%.0f hours</span>",
389 secs * 1.0 / TM_HOUR); 389 secs * 1.0 / TM_HOUR);
390 return; 390 return;
391 } 391 }
392 if (secs < TM_WEEK * 2) { 392 if (secs < TM_WEEK * 2) {
393 htmlf("<span class='age-days'>%.0f days</span>", 393 htmlf("<span class='age-days'>%.0f days</span>",
394 secs * 1.0 / TM_DAY); 394 secs * 1.0 / TM_DAY);
395 return; 395 return;
396 } 396 }
397 if (secs < TM_MONTH * 2) { 397 if (secs < TM_MONTH * 2) {
398 htmlf("<span class='age-weeks'>%.0f weeks</span>", 398 htmlf("<span class='age-weeks'>%.0f weeks</span>",
399 secs * 1.0 / TM_WEEK); 399 secs * 1.0 / TM_WEEK);
400 return; 400 return;
401 } 401 }
402 if (secs < TM_YEAR * 2) { 402 if (secs < TM_YEAR * 2) {
403 htmlf("<span class='age-months'>%.0f months</span>", 403 htmlf("<span class='age-months'>%.0f months</span>",
404 secs * 1.0 / TM_MONTH); 404 secs * 1.0 / TM_MONTH);
405 return; 405 return;
406 } 406 }
407 htmlf("<span class='age-years'>%.0f years</span>", 407 htmlf("<span class='age-years'>%.0f years</span>",
408 secs * 1.0 / TM_YEAR); 408 secs * 1.0 / TM_YEAR);
409} 409}
410 410
411void cgit_print_http_headers(struct cgit_context *ctx) 411void cgit_print_http_headers(struct cgit_context *ctx)
412{ 412{
413 if (ctx->page.mimetype && ctx->page.charset) 413 if (ctx->page.mimetype && ctx->page.charset)
414 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, 414 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
415 ctx->page.charset); 415 ctx->page.charset);
416 else if (ctx->page.mimetype) 416 else if (ctx->page.mimetype)
417 htmlf("Content-Type: %s\n", ctx->page.mimetype); 417 htmlf("Content-Type: %s\n", ctx->page.mimetype);
418 if (ctx->page.filename) 418 if (ctx->page.filename)
419 htmlf("Content-Disposition: inline; filename=\"%s\"\n", 419 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
420 ctx->page.filename); 420 ctx->page.filename);
421 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); 421 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
422 htmlf("Expires: %s\n", http_date(ctx->page.expires)); 422 htmlf("Expires: %s\n", http_date(ctx->page.expires));
423 html("\n"); 423 html("\n");
424} 424}
425 425
426void cgit_print_docstart(struct cgit_context *ctx) 426void cgit_print_docstart(struct cgit_context *ctx)
427{ 427{
428 html(cgit_doctype); 428 html(cgit_doctype);
429 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); 429 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
430 html("<head>\n"); 430 html("<head>\n");
431 html("<title>"); 431 html("<title>");
432 html_txt(ctx->page.title); 432 html_txt(ctx->page.title);
433 html("</title>\n"); 433 html("</title>\n");
434 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 434 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
435 if (ctx->cfg.robots && *ctx->cfg.robots) 435 if (ctx->cfg.robots && *ctx->cfg.robots)
436 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); 436 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots);
437 html("<link rel='stylesheet' type='text/css' href='"); 437 html("<link rel='stylesheet' type='text/css' href='");
438 html_attr(ctx->cfg.css); 438 html_attr(ctx->cfg.css);
439 html("'/>\n"); 439 html("'/>\n");
440 html("</head>\n"); 440 html("</head>\n");
441 html("<body>\n"); 441 html("<body>\n");
442} 442}
443 443
444void cgit_print_docend() 444void cgit_print_docend()
445{ 445{
446 html("</div><div class='footer'>generated "); 446 html("</div>");
447 cgit_print_date(time(NULL), FMT_LONGDATE); 447 if (ctx.cfg.footer)
448 htmlf(" by cgit %s", cgit_version); 448 html_include(ctx.cfg.footer);
449 html("</div>\n</body>\n</html>\n"); 449 else {
450 html("<div class='footer'>generated ");
451 cgit_print_date(time(NULL), FMT_LONGDATE);
452 htmlf(" by cgit %s", cgit_version);
453 html("</div>\n");
454 }
455 html("</body>\n</html>\n");
450} 456}
451 457
452int print_branch_option(const char *refname, const unsigned char *sha1, 458int print_branch_option(const char *refname, const unsigned char *sha1,
453 int flags, void *cb_data) 459 int flags, void *cb_data)
454{ 460{
455 char *name = (char *)refname; 461 char *name = (char *)refname;
456 html_option(name, name, ctx.qry.head); 462 html_option(name, name, ctx.qry.head);
457 return 0; 463 return 0;
458} 464}
459 465
460int print_archive_ref(const char *refname, const unsigned char *sha1, 466int print_archive_ref(const char *refname, const unsigned char *sha1,
461 int flags, void *cb_data) 467 int flags, void *cb_data)
462{ 468{
463 struct tag *tag; 469 struct tag *tag;
464 struct taginfo *info; 470 struct taginfo *info;
465 struct object *obj; 471 struct object *obj;
466 char buf[256], *url; 472 char buf[256], *url;
467 unsigned char fileid[20]; 473 unsigned char fileid[20];
468 int *header = (int *)cb_data; 474 int *header = (int *)cb_data;
469 475
470 if (prefixcmp(refname, "refs/archives")) 476 if (prefixcmp(refname, "refs/archives"))
471 return 0; 477 return 0;
472 strncpy(buf, refname+14, sizeof(buf)); 478 strncpy(buf, refname+14, sizeof(buf));
473 obj = parse_object(sha1); 479 obj = parse_object(sha1);
474 if (!obj) 480 if (!obj)
475 return 1; 481 return 1;
476 if (obj->type == OBJ_TAG) { 482 if (obj->type == OBJ_TAG) {
477 tag = lookup_tag(sha1); 483 tag = lookup_tag(sha1);
478 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 484 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
479 return 0; 485 return 0;
480 hashcpy(fileid, tag->tagged->sha1); 486 hashcpy(fileid, tag->tagged->sha1);
481 } else if (obj->type != OBJ_BLOB) { 487 } else if (obj->type != OBJ_BLOB) {
482 return 0; 488 return 0;
483 } else { 489 } else {
484 hashcpy(fileid, sha1); 490 hashcpy(fileid, sha1);
485 } 491 }
486 if (!*header) { 492 if (!*header) {
487 html("<h1>download</h1>\n"); 493 html("<h1>download</h1>\n");
488 *header = 1; 494 *header = 1;
489 } 495 }
490 url = cgit_pageurl(ctx.qry.repo, "blob", 496 url = cgit_pageurl(ctx.qry.repo, "blob",
491 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 497 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
492 buf)); 498 buf));
493 html_link_open(url, NULL, "menu"); 499 html_link_open(url, NULL, "menu");
494 html_txt(strlpart(buf, 20)); 500 html_txt(strlpart(buf, 20));
495 html_link_close(); 501 html_link_close();
496 return 0; 502 return 0;
497} 503}
498 504
499void add_hidden_formfields(int incl_head, int incl_search, char *page) 505void add_hidden_formfields(int incl_head, int incl_search, char *page)
500{ 506{
501 char *url; 507 char *url;
502 508
503 if (!ctx.cfg.virtual_root) { 509 if (!ctx.cfg.virtual_root) {
504 url = fmt("%s/%s", ctx.qry.repo, page); 510 url = fmt("%s/%s", ctx.qry.repo, page);
505 if (ctx.qry.path) 511 if (ctx.qry.path)
506 url = fmt("%s/%s", url, ctx.qry.path); 512 url = fmt("%s/%s", url, ctx.qry.path);
507 html_hidden("url", url); 513 html_hidden("url", url);
508 } 514 }
509 515
510 if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) 516 if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch))
511 html_hidden("h", ctx.qry.head); 517 html_hidden("h", ctx.qry.head);
512 518
513 if (ctx.qry.sha1) 519 if (ctx.qry.sha1)
514 html_hidden("id", ctx.qry.sha1); 520 html_hidden("id", ctx.qry.sha1);
515 if (ctx.qry.sha2) 521 if (ctx.qry.sha2)
516 html_hidden("id2", ctx.qry.sha2); 522 html_hidden("id2", ctx.qry.sha2);
517 523
518 if (incl_search) { 524 if (incl_search) {
519 if (ctx.qry.grep) 525 if (ctx.qry.grep)
520 html_hidden("qt", ctx.qry.grep); 526 html_hidden("qt", ctx.qry.grep);
521 if (ctx.qry.search) 527 if (ctx.qry.search)
522 html_hidden("q", ctx.qry.search); 528 html_hidden("q", ctx.qry.search);
523 } 529 }
524} 530}
525 531
526char *hc(struct cgit_cmd *cmd, const char *page) 532char *hc(struct cgit_cmd *cmd, const char *page)
527{ 533{
528 return (strcmp(cmd->name, page) ? NULL : "active"); 534 return (strcmp(cmd->name, page) ? NULL : "active");
529} 535}
530 536
531void cgit_print_pageheader(struct cgit_context *ctx) 537void cgit_print_pageheader(struct cgit_context *ctx)
532{ 538{
533 struct cgit_cmd *cmd = cgit_get_cmd(ctx); 539 struct cgit_cmd *cmd = cgit_get_cmd(ctx);
534 540
535 html("<table id='header'>\n"); 541 html("<table id='header'>\n");
536 html("<tr>\n"); 542 html("<tr>\n");
537 html("<td class='logo' rowspan='2'><a href='"); 543 html("<td class='logo' rowspan='2'><a href='");
538 if (ctx->cfg.logo_link) 544 if (ctx->cfg.logo_link)
539 html_attr(ctx->cfg.logo_link); 545 html_attr(ctx->cfg.logo_link);
540 else 546 else
541 html_attr(cgit_rooturl()); 547 html_attr(cgit_rooturl());
542 html("'><img src='"); 548 html("'><img src='");
543 html_attr(ctx->cfg.logo); 549 html_attr(ctx->cfg.logo);
544 html("' alt='cgit logo'/></a></td>\n"); 550 html("' alt='cgit logo'/></a></td>\n");
545 551
546 html("<td class='main'>"); 552 html("<td class='main'>");
547 if (ctx->repo) { 553 if (ctx->repo) {
548 cgit_index_link("index", NULL, NULL, NULL, 0); 554 cgit_index_link("index", NULL, NULL, NULL, 0);
549 html(" : "); 555 html(" : ");
550 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), 556 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"),
551 ctx->qry.head, NULL, NULL); 557 ctx->qry.head, NULL, NULL);
552 html("</td><td class='form'>"); 558 html("</td><td class='form'>");
553 html("<form method='get' action=''>\n"); 559 html("<form method='get' action=''>\n");
554 add_hidden_formfields(0, 1, ctx->qry.page); 560 add_hidden_formfields(0, 1, ctx->qry.page);
555 html("<select name='h' onchange='this.form.submit();'>\n"); 561 html("<select name='h' onchange='this.form.submit();'>\n");
556 for_each_branch_ref(print_branch_option, ctx->qry.head); 562 for_each_branch_ref(print_branch_option, ctx->qry.head);
557 html("</select> "); 563 html("</select> ");
558 html("<input type='submit' name='' value='switch'/>"); 564 html("<input type='submit' name='' value='switch'/>");
559 html("</form>"); 565 html("</form>");
560 } else 566 } else
561 html_txt(ctx->cfg.root_title); 567 html_txt(ctx->cfg.root_title);
562 html("</td></tr>\n"); 568 html("</td></tr>\n");
563 569
564 html("<tr><td class='sub'"); 570 html("<tr><td class='sub'");
565 if (ctx->repo) { 571 if (ctx->repo) {
566 html(" colspan='2'>"); 572 html(" colspan='2'>");
567 html_txt(ctx->repo->desc); 573 html_txt(ctx->repo->desc);
568 } else { 574 } else {
569 html(">"); 575 html(">");
570 if (ctx->cfg.root_desc) 576 if (ctx->cfg.root_desc)
571 html_txt(ctx->cfg.root_desc); 577 html_txt(ctx->cfg.root_desc);
572 else if (ctx->cfg.index_info) 578 else if (ctx->cfg.index_info)
573 html_include(ctx->cfg.index_info); 579 html_include(ctx->cfg.index_info);
574 } 580 }
575 html("</td></tr></table>\n"); 581 html("</td></tr></table>\n");
576 582
577 html("<table class='tabs'><tr><td>\n"); 583 html("<table class='tabs'><tr><td>\n");