-rw-r--r-- | ui-shared.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 2596023..aa65988 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -528,49 +528,64 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
528 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 528 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
529 | html("</select>\n"); | 529 | html("</select>\n"); |
530 | // html("</td><td>"); | 530 | // html("</td><td>"); |
531 | html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); | 531 | html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); |
532 | // html("</td></tr></table>"); | 532 | // html("</td></tr></table>"); |
533 | html("</form>\n"); | 533 | html("</form>\n"); |
534 | 534 | ||
535 | html("<h1>search</h1>\n"); | 535 | html("<h1>search</h1>\n"); |
536 | html("<form method='get' action='"); | 536 | html("<form method='get' action='"); |
537 | if (ctx->cfg.virtual_root) | 537 | if (ctx->cfg.virtual_root) |
538 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 538 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
539 | ctx->qry.path, NULL)); | 539 | ctx->qry.path, NULL)); |
540 | html("'>\n"); | 540 | html("'>\n"); |
541 | add_hidden_formfields(1, 0, "log"); | 541 | add_hidden_formfields(1, 0, "log"); |
542 | html("<select name='qt'>\n"); | 542 | html("<select name='qt'>\n"); |
543 | html_option("grep", "log msg", ctx->qry.grep); | 543 | html_option("grep", "log msg", ctx->qry.grep); |
544 | html_option("author", "author", ctx->qry.grep); | 544 | html_option("author", "author", ctx->qry.grep); |
545 | html_option("committer", "committer", ctx->qry.grep); | 545 | html_option("committer", "committer", ctx->qry.grep); |
546 | html("</select>\n"); | 546 | html("</select>\n"); |
547 | html("<input class='txt' type='text' name='q' value='"); | 547 | html("<input class='txt' type='text' name='q' value='"); |
548 | html_attr(ctx->qry.search); | 548 | html_attr(ctx->qry.search); |
549 | html("'/>\n"); | 549 | html("'/>\n"); |
550 | html("</form>\n"); | 550 | html("</form>\n"); |
551 | } else { | 551 | } else { |
552 | if (!ctx->cfg.index_info || html_include(ctx->cfg.index_info)) | 552 | if (!ctx->cfg.index_info || html_include(ctx->cfg.index_info)) |
553 | html(default_info); | 553 | html(default_info); |
554 | } | 554 | } |
555 | 555 | ||
556 | html("</td></tr></table></td>\n"); | 556 | html("</td></tr></table></td>\n"); |
557 | 557 | ||
558 | html("<td id='content'>\n"); | 558 | html("<td id='content'>\n"); |
559 | } | 559 | } |
560 | 560 | ||
561 | void cgit_print_filemode(unsigned short mode) | 561 | void cgit_print_filemode(unsigned short mode) |
562 | { | 562 | { |
563 | if (S_ISDIR(mode)) | 563 | if (S_ISDIR(mode)) |
564 | html("d"); | 564 | html("d"); |
565 | else if (S_ISLNK(mode)) | 565 | else if (S_ISLNK(mode)) |
566 | html("l"); | 566 | html("l"); |
567 | else if (S_ISGITLINK(mode)) | 567 | else if (S_ISGITLINK(mode)) |
568 | html("m"); | 568 | html("m"); |
569 | else | 569 | else |
570 | html("-"); | 570 | html("-"); |
571 | html_fileperm(mode >> 6); | 571 | html_fileperm(mode >> 6); |
572 | html_fileperm(mode >> 3); | 572 | html_fileperm(mode >> 3); |
573 | html_fileperm(mode); | 573 | html_fileperm(mode); |
574 | } | 574 | } |
575 | 575 | ||
576 | /* vim:set sw=8: */ | 576 | void cgit_print_snapshot_links(const char *repo, const char *head, |
577 | const char *hex, int snapshots) | ||
578 | { | ||
579 | const struct cgit_snapshot_format* f; | ||
580 | char *filename; | ||
581 | |||
582 | for (f = cgit_snapshot_formats; f->suffix; f++) { | ||
583 | if (!(snapshots & f->bit)) | ||
584 | continue; | ||
585 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, | ||
586 | f->suffix); | ||
587 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, | ||
588 | (char *)hex, filename); | ||
589 | html("<br/>"); | ||
590 | } | ||
591 | } | ||