-rw-r--r-- | ui-shared.c | 6 |
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 | |||
@@ -383,290 +383,290 @@ void cgit_print_age(time_t t, time_t max_relative, char *format) | |||
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 | ||
411 | void cgit_print_http_headers(struct cgit_context *ctx) | 411 | void 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 | ||
426 | void cgit_print_docstart(struct cgit_context *ctx) | 426 | void 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 | if (ctx->cfg.favicon) { | 440 | if (ctx->cfg.favicon) { |
441 | html("<link rel='shortcut icon' href='"); | 441 | html("<link rel='shortcut icon' href='"); |
442 | html_attr(ctx->cfg.favicon); | 442 | html_attr(ctx->cfg.favicon); |
443 | html("'/>\n"); | 443 | html("'/>\n"); |
444 | } | 444 | } |
445 | html("</head>\n"); | 445 | html("</head>\n"); |
446 | html("<body>\n"); | 446 | html("<body>\n"); |
447 | } | 447 | } |
448 | 448 | ||
449 | void cgit_print_docend() | 449 | void cgit_print_docend() |
450 | { | 450 | { |
451 | html("</div>"); | 451 | html("</div>"); |
452 | if (ctx.cfg.footer) | 452 | if (ctx.cfg.footer) |
453 | html_include(ctx.cfg.footer); | 453 | html_include(ctx.cfg.footer); |
454 | else { | 454 | else { |
455 | html("<div class='footer'>generated "); | 455 | html("<div class='footer'>generated "); |
456 | cgit_print_date(time(NULL), FMT_LONGDATE); | 456 | cgit_print_date(time(NULL), FMT_LONGDATE); |
457 | htmlf(" by cgit %s", cgit_version); | 457 | htmlf(" by cgit %s", cgit_version); |
458 | html("</div>\n"); | 458 | html("</div>\n"); |
459 | } | 459 | } |
460 | html("</body>\n</html>\n"); | 460 | html("</body>\n</html>\n"); |
461 | } | 461 | } |
462 | 462 | ||
463 | int print_branch_option(const char *refname, const unsigned char *sha1, | 463 | int print_branch_option(const char *refname, const unsigned char *sha1, |
464 | int flags, void *cb_data) | 464 | int flags, void *cb_data) |
465 | { | 465 | { |
466 | char *name = (char *)refname; | 466 | char *name = (char *)refname; |
467 | html_option(name, name, ctx.qry.head); | 467 | html_option(name, name, ctx.qry.head); |
468 | return 0; | 468 | return 0; |
469 | } | 469 | } |
470 | 470 | ||
471 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 471 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
472 | int flags, void *cb_data) | 472 | int flags, void *cb_data) |
473 | { | 473 | { |
474 | struct tag *tag; | 474 | struct tag *tag; |
475 | struct taginfo *info; | 475 | struct taginfo *info; |
476 | struct object *obj; | 476 | struct object *obj; |
477 | char buf[256], *url; | 477 | char buf[256], *url; |
478 | unsigned char fileid[20]; | 478 | unsigned char fileid[20]; |
479 | int *header = (int *)cb_data; | 479 | int *header = (int *)cb_data; |
480 | 480 | ||
481 | if (prefixcmp(refname, "refs/archives")) | 481 | if (prefixcmp(refname, "refs/archives")) |
482 | return 0; | 482 | return 0; |
483 | strncpy(buf, refname+14, sizeof(buf)); | 483 | strncpy(buf, refname+14, sizeof(buf)); |
484 | obj = parse_object(sha1); | 484 | obj = parse_object(sha1); |
485 | if (!obj) | 485 | if (!obj) |
486 | return 1; | 486 | return 1; |
487 | if (obj->type == OBJ_TAG) { | 487 | if (obj->type == OBJ_TAG) { |
488 | tag = lookup_tag(sha1); | 488 | tag = lookup_tag(sha1); |
489 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 489 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
490 | return 0; | 490 | return 0; |
491 | hashcpy(fileid, tag->tagged->sha1); | 491 | hashcpy(fileid, tag->tagged->sha1); |
492 | } else if (obj->type != OBJ_BLOB) { | 492 | } else if (obj->type != OBJ_BLOB) { |
493 | return 0; | 493 | return 0; |
494 | } else { | 494 | } else { |
495 | hashcpy(fileid, sha1); | 495 | hashcpy(fileid, sha1); |
496 | } | 496 | } |
497 | if (!*header) { | 497 | if (!*header) { |
498 | html("<h1>download</h1>\n"); | 498 | html("<h1>download</h1>\n"); |
499 | *header = 1; | 499 | *header = 1; |
500 | } | 500 | } |
501 | url = cgit_pageurl(ctx.qry.repo, "blob", | 501 | url = cgit_pageurl(ctx.qry.repo, "blob", |
502 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 502 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
503 | buf)); | 503 | buf)); |
504 | html_link_open(url, NULL, "menu"); | 504 | html_link_open(url, NULL, "menu"); |
505 | html_txt(strlpart(buf, 20)); | 505 | html_txt(strlpart(buf, 20)); |
506 | html_link_close(); | 506 | html_link_close(); |
507 | return 0; | 507 | return 0; |
508 | } | 508 | } |
509 | 509 | ||
510 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 510 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
511 | { | 511 | { |
512 | char *url; | 512 | char *url; |
513 | 513 | ||
514 | if (!ctx.cfg.virtual_root) { | 514 | if (!ctx.cfg.virtual_root) { |
515 | url = fmt("%s/%s", ctx.qry.repo, page); | 515 | url = fmt("%s/%s", ctx.qry.repo, page); |
516 | if (ctx.qry.path) | 516 | if (ctx.qry.path) |
517 | url = fmt("%s/%s", url, ctx.qry.path); | 517 | url = fmt("%s/%s", url, ctx.qry.path); |
518 | html_hidden("url", url); | 518 | html_hidden("url", url); |
519 | } | 519 | } |
520 | 520 | ||
521 | if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) | 521 | if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) |
522 | html_hidden("h", ctx.qry.head); | 522 | html_hidden("h", ctx.qry.head); |
523 | 523 | ||
524 | if (ctx.qry.sha1) | 524 | if (ctx.qry.sha1) |
525 | html_hidden("id", ctx.qry.sha1); | 525 | html_hidden("id", ctx.qry.sha1); |
526 | if (ctx.qry.sha2) | 526 | if (ctx.qry.sha2) |
527 | html_hidden("id2", ctx.qry.sha2); | 527 | html_hidden("id2", ctx.qry.sha2); |
528 | 528 | ||
529 | if (incl_search) { | 529 | if (incl_search) { |
530 | if (ctx.qry.grep) | 530 | if (ctx.qry.grep) |
531 | html_hidden("qt", ctx.qry.grep); | 531 | html_hidden("qt", ctx.qry.grep); |
532 | if (ctx.qry.search) | 532 | if (ctx.qry.search) |
533 | html_hidden("q", ctx.qry.search); | 533 | html_hidden("q", ctx.qry.search); |
534 | } | 534 | } |
535 | } | 535 | } |
536 | 536 | ||
537 | char *hc(struct cgit_cmd *cmd, const char *page) | 537 | char *hc(struct cgit_cmd *cmd, const char *page) |
538 | { | 538 | { |
539 | return (strcmp(cmd->name, page) ? NULL : "active"); | 539 | return (strcmp(cmd->name, page) ? NULL : "active"); |
540 | } | 540 | } |
541 | 541 | ||
542 | void cgit_print_pageheader(struct cgit_context *ctx) | 542 | void cgit_print_pageheader(struct cgit_context *ctx) |
543 | { | 543 | { |
544 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 544 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
545 | 545 | ||
546 | html("<table id='header'>\n"); | 546 | html("<table id='header'>\n"); |
547 | html("<tr>\n"); | 547 | html("<tr>\n"); |
548 | html("<td class='logo' rowspan='2'><a href='"); | 548 | html("<td class='logo' rowspan='2'><a href='"); |
549 | if (ctx->cfg.logo_link) | 549 | if (ctx->cfg.logo_link) |
550 | html_attr(ctx->cfg.logo_link); | 550 | html_attr(ctx->cfg.logo_link); |
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, |
605 | NULL); | 605 | NULL); |
606 | html("</td><td class='form'>"); | 606 | html("</td><td class='form'>"); |
607 | html("<form class='right' method='get' action='"); | 607 | html("<form class='right' method='get' action='"); |
608 | if (ctx->cfg.virtual_root) | 608 | if (ctx->cfg.virtual_root) |
609 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 609 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
610 | ctx->qry.path, NULL)); | 610 | ctx->qry.path, NULL)); |
611 | html("'>\n"); | 611 | html("'>\n"); |
612 | add_hidden_formfields(1, 0, "log"); | 612 | add_hidden_formfields(1, 0, "log"); |
613 | html("<select name='qt'>\n"); | 613 | html("<select name='qt'>\n"); |
614 | html_option("grep", "log msg", ctx->qry.grep); | 614 | html_option("grep", "log msg", ctx->qry.grep); |
615 | html_option("author", "author", ctx->qry.grep); | 615 | html_option("author", "author", ctx->qry.grep); |
616 | html_option("committer", "committer", ctx->qry.grep); | 616 | html_option("committer", "committer", ctx->qry.grep); |
617 | html("</select>\n"); | 617 | html("</select>\n"); |
618 | html("<input class='txt' type='text' size='10' name='q' value='"); | 618 | html("<input class='txt' type='text' size='10' name='q' value='"); |
619 | html_attr(ctx->qry.search); | 619 | html_attr(ctx->qry.search); |
620 | html("'/>\n"); | 620 | html("'/>\n"); |
621 | html("<input type='submit' value='search'/>\n"); | 621 | html("<input type='submit' value='search'/>\n"); |
622 | html("</form>\n"); | 622 | html("</form>\n"); |
623 | } else { | 623 | } else { |
624 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); | 624 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); |
625 | if (ctx->cfg.root_readme) | 625 | if (ctx->cfg.root_readme) |
626 | site_link("about", "about", NULL, hc(cmd, "about"), | 626 | site_link("about", "about", NULL, hc(cmd, "about"), |
627 | NULL, 0); | 627 | NULL, 0); |
628 | html("</td><td class='form'>"); | 628 | html("</td><td class='form'>"); |
629 | html("<form method='get' action='"); | 629 | html("<form method='get' action='"); |
630 | html_attr(cgit_rooturl()); | 630 | html_attr(cgit_rooturl()); |
631 | html("'>\n"); | 631 | html("'>\n"); |
632 | html("<input type='text' name='q' size='10' value='"); | 632 | html("<input type='text' name='q' size='10' value='"); |
633 | html_attr(ctx->qry.search); | 633 | html_attr(ctx->qry.search); |
634 | html("'/>\n"); | 634 | html("'/>\n"); |
635 | html("<input type='submit' value='search'/>\n"); | 635 | html("<input type='submit' value='search'/>\n"); |
636 | html("</form>"); | 636 | html("</form>"); |
637 | } | 637 | } |
638 | html("</td></tr></table>\n"); | 638 | html("</td></tr></table>\n"); |
639 | html("<div class='content'>"); | 639 | html("<div class='content'>"); |
640 | } | 640 | } |
641 | 641 | ||
642 | void cgit_print_filemode(unsigned short mode) | 642 | void cgit_print_filemode(unsigned short mode) |
643 | { | 643 | { |
644 | if (S_ISDIR(mode)) | 644 | if (S_ISDIR(mode)) |
645 | html("d"); | 645 | html("d"); |
646 | else if (S_ISLNK(mode)) | 646 | else if (S_ISLNK(mode)) |
647 | html("l"); | 647 | html("l"); |
648 | else if (S_ISGITLINK(mode)) | 648 | else if (S_ISGITLINK(mode)) |
649 | html("m"); | 649 | html("m"); |
650 | else | 650 | else |
651 | html("-"); | 651 | html("-"); |
652 | html_fileperm(mode >> 6); | 652 | html_fileperm(mode >> 6); |
653 | html_fileperm(mode >> 3); | 653 | html_fileperm(mode >> 3); |
654 | html_fileperm(mode); | 654 | html_fileperm(mode); |
655 | } | 655 | } |
656 | 656 | ||
657 | void cgit_print_snapshot_links(const char *repo, const char *head, | 657 | void cgit_print_snapshot_links(const char *repo, const char *head, |
658 | const char *hex, int snapshots) | 658 | const char *hex, int snapshots) |
659 | { | 659 | { |
660 | const struct cgit_snapshot_format* f; | 660 | const struct cgit_snapshot_format* f; |
661 | char *filename; | 661 | char *filename; |
662 | 662 | ||
663 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 663 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
664 | if (!(snapshots & f->bit)) | 664 | if (!(snapshots & f->bit)) |
665 | continue; | 665 | continue; |
666 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, | 666 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, |
667 | f->suffix); | 667 | f->suffix); |
668 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, | 668 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, |
669 | (char *)hex, filename); | 669 | (char *)hex, filename); |
670 | html("<br/>"); | 670 | html("<br/>"); |
671 | } | 671 | } |
672 | } | 672 | } |