1 /* ui-shared.c: common web output functions
3 * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
10 #include "ui-shared.h"
14 static const char cgit_doctype[] =
17 static char *http_date(time_t t)
19 static char day[][4] =
20 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
21 static char month[][4] =
22 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
23 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
24 struct tm *tm = gmtime(&t);
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,
27 tm->tm_hour, tm->tm_min, tm->tm_sec);
30 void cgit_print_error(const char *fmt, ...)
34 cgit_vprint_error(fmt, ap);
38 void cgit_vprint_error(const char *fmt, va_list ap)
41 html("<div class='error'>");
48 const char *cgit_httpscheme(void)
50 if (ctx.env.https && !strcmp(ctx.env.https, "on"))
56 char *cgit_hosturl(void)
58 if (ctx.env.http_host)
59 return xstrdup(ctx.env.http_host);
60 if (!ctx.env.server_name)
62 if (!ctx.env.server_port || atoi(ctx.env.server_port) == 80)
63 return xstrdup(ctx.env.server_name);
64 return fmtalloc("%s:%s", ctx.env.server_name, ctx.env.server_port);
67 char *cgit_currenturl(void)
70 return xstrdup(cgit_rooturl());
71 const char *root = cgit_rooturl();
72 size_t len = strlen(root);
73 if (len && root[len - 1] == '/')
74 return fmtalloc("%s%s", root, ctx.qry.url);
75 return fmtalloc("%s/%s", root, ctx.qry.url);
78 const char *cgit_rooturl(void)
80 if (ctx.cfg.virtual_root)
81 return ctx.cfg.virtual_root;
83 return ctx.cfg.script_name;
86 const char *cgit_loginurl(void)
88 static const char *login_url;
90 login_url = fmtalloc("%s?p=login", cgit_rooturl());
94 char *cgit_repourl(const char *reponame)
96 if (ctx.cfg.virtual_root)
97 return fmtalloc("%s%s/", ctx.cfg.virtual_root, reponame);
99 return fmtalloc("?r=%s", reponame);
102 char *cgit_fileurl(const char *reponame, const char *pagename,
103 const char *filename, const char *query)
105 struct strbuf sb = STRBUF_INIT;
108 if (ctx.cfg.virtual_root) {
109 strbuf_addf(&sb, "%s%s/%s/%s", ctx.cfg.virtual_root, reponame,
110 pagename, (filename ? filename:""));
113 strbuf_addf(&sb, "?url=%s/%s/%s", reponame, pagename,
114 (filename ? filename : ""));
118 strbuf_addf(&sb, "%s%s", delim, query);
119 return strbuf_detach(&sb, NULL);
122 char *cgit_pageurl(const char *reponame, const char *pagename,
125 return cgit_fileurl(reponame, pagename, NULL, query);
128 const char *cgit_repobasename(const char *reponame)
130 /* I assume we don't need to store more than one repo basename */
131 static char rvbuf[1024];
134 strncpy(rvbuf, reponame, sizeof(rvbuf));
135 if (rvbuf[sizeof(rvbuf)-1])
136 die("cgit_repobasename: truncated repository name '%s'", reponame);
138 /* strip trailing slashes */
139 while (p && rvbuf[p] == '/') rvbuf[p--] = 0;
140 /* strip trailing .git */
141 if (p >= 3 && starts_with(&rvbuf[p-3], ".git")) {
142 p -= 3; rvbuf[p--] = 0;
144 /* strip more trailing slashes if any */
145 while ( p && rvbuf[p] == '/') rvbuf[p--] = 0;
146 /* find last slash in the remaining string */
147 rv = strrchr(rvbuf,'/');
153 static void site_url(const char *page, const char *search, const char *sort, int ofs, int always_root)
157 if (always_root || page)
158 html_attr(cgit_rooturl());
160 char *currenturl = cgit_currenturl();
161 html_attr(currenturl);
166 htmlf("?p=%s", page);
183 htmlf("ofs=%d", ofs);
187 static void site_link(const char *page, const char *name, const char *title,
188 const char *class, const char *search, const char *sort, int ofs, int always_root)
202 site_url(page, search, sort, ofs, always_root);
208 void cgit_index_link(const char *name, const char *title, const char *class,
209 const char *pattern, const char *sort, int ofs, int always_root)
211 site_link(NULL, name, title, class, pattern, sort, ofs, always_root);
214 static char *repolink(const char *title, const char *class, const char *page,
215 const char *head, const char *path)
231 if (ctx.cfg.virtual_root) {
232 html_url_path(ctx.cfg.virtual_root);
233 html_url_path(ctx.repo->url);
234 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
243 html_url_path(ctx.cfg.script_name);
245 html_url_arg(ctx.repo->url);
246 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
256 if (head && strcmp(head, ctx.repo->defbranch)) {
262 return fmt("%s", delim);
265 static void reporevlink(const char *page, const char *name, const char *title,
266 const char *class, const char *head, const char *rev,
271 delim = repolink(title, class, page, head, path);
272 if (rev && ctx.qry.head != NULL && strcmp(rev, ctx.qry.head)) {
282 void cgit_summary_link(const char *name, const char *title, const char *class,
285 reporevlink(NULL, name, title, class, head, NULL, NULL);
288 void cgit_tag_link(const char *name, const char *title, const char *class,
291 reporevlink("tag", name, title, class, tag, NULL, NULL);
294 void cgit_tree_link(const char *name, const char *title, const char *class,
295 const char *head, const char *rev, const char *path)
297 reporevlink("tree", name, title, class, head, rev, path);
300 void cgit_plain_link(const char *name, const char *title, const char *class,
301 const char *head, const char *rev, const char *path)
303 reporevlink("plain", name, title, class, head, rev, path);
306 void cgit_log_link(const char *name, const char *title, const char *class,
307 const char *head, const char *rev, const char *path,
308 int ofs, const char *grep, const char *pattern, int showmsg,
313 delim = repolink(title, class, "log", head, path);
314 if (rev && ctx.qry.head && strcmp(rev, ctx.qry.head)) {
320 if (grep && pattern) {
327 html_url_arg(pattern);
349 void cgit_commit_link(char *name, const char *title, const char *class,
350 const char *head, const char *rev, const char *path)
352 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) {
353 name[ctx.cfg.max_msg_len] = '\0';
354 name[ctx.cfg.max_msg_len - 1] = '.';
355 name[ctx.cfg.max_msg_len - 2] = '.';
356 name[ctx.cfg.max_msg_len - 3] = '.';
361 delim = repolink(title, class, "commit", head, path);
362 if (rev && ctx.qry.head && strcmp(rev, ctx.qry.head)) {
368 if (ctx.qry.difftype) {
370 htmlf("dt=%d", ctx.qry.difftype);
373 if (ctx.qry.context > 0 && ctx.qry.context != 3) {
376 htmlf("%d", ctx.qry.context);
379 if (ctx.qry.ignorews) {
384 if (ctx.qry.follow) {
392 html_txt("(no commit message)");
396 void cgit_refs_link(const char *name, const char *title, const char *class,
397 const char *head, const char *rev, const char *path)
399 reporevlink("refs", name, title, class, head, rev, path);
402 void cgit_snapshot_link(const char *name, const char *title, const char *class,
403 const char *head, const char *rev,
404 const char *archivename)
406 reporevlink("snapshot", name, title, class, head, rev, archivename);
409 void cgit_diff_link(const char *name, const char *title, const char *class,
410 const char *head, const char *new_rev, const char *old_rev,
415 delim = repolink(title, class, "diff", head, path);
416 if (new_rev && ctx.qry.head != NULL && strcmp(new_rev, ctx.qry.head)) {
419 html_url_arg(new_rev);
425 html_url_arg(old_rev);
428 if (ctx.qry.difftype) {
430 htmlf("dt=%d", ctx.qry.difftype);
433 if (ctx.qry.context > 0 && ctx.qry.context != 3) {
436 htmlf("%d", ctx.qry.context);
439 if (ctx.qry.ignorews) {
444 if (ctx.qry.follow) {
453 void cgit_patch_link(const char *name, const char *title, const char *class,
454 const char *head, const char *rev, const char *path)
456 reporevlink("patch", name, title, class, head, rev, path);
459 void cgit_stats_link(const char *name, const char *title, const char *class,
460 const char *head, const char *path)
462 reporevlink("stats", name, title, class, head, NULL, path);
465 static void cgit_self_link(char *name, const char *title, const char *class)
467 if (!strcmp(ctx.qry.page, "repolist"))
468 cgit_index_link(name, title, class, ctx.qry.search, ctx.qry.sort,
470 else if (!strcmp(ctx.qry.page, "summary"))
471 cgit_summary_link(name, title, class, ctx.qry.head);
472 else if (!strcmp(ctx.qry.page, "tag"))
473 cgit_tag_link(name, title, class, ctx.qry.has_sha1 ?
474 ctx.qry.sha1 : ctx.qry.head);
475 else if (!strcmp(ctx.qry.page, "tree"))
476 cgit_tree_link(name, title, class, ctx.qry.head,
477 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
479 else if (!strcmp(ctx.qry.page, "plain"))
480 cgit_plain_link(name, title, class, ctx.qry.head,
481 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
483 else if (!strcmp(ctx.qry.page, "log"))
484 cgit_log_link(name, title, class, ctx.qry.head,
485 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
486 ctx.qry.path, ctx.qry.ofs,
487 ctx.qry.grep, ctx.qry.search,
488 ctx.qry.showmsg, ctx.qry.follow);
489 else if (!strcmp(ctx.qry.page, "commit"))
490 cgit_commit_link(name, title, class, ctx.qry.head,
491 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
493 else if (!strcmp(ctx.qry.page, "patch"))
494 cgit_patch_link(name, title, class, ctx.qry.head,
495 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
497 else if (!strcmp(ctx.qry.page, "refs"))
498 cgit_refs_link(name, title, class, ctx.qry.head,
499 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
501 else if (!strcmp(ctx.qry.page, "snapshot"))
502 cgit_snapshot_link(name, title, class, ctx.qry.head,
503 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
505 else if (!strcmp(ctx.qry.page, "diff"))
506 cgit_diff_link(name, title, class, ctx.qry.head,
507 ctx.qry.sha1, ctx.qry.sha2,
509 else if (!strcmp(ctx.qry.page, "stats"))
510 cgit_stats_link(name, title, class, ctx.qry.head,
513 /* Don't known how to make link for this page */
514 repolink(title, class, ctx.qry.page, ctx.qry.head, ctx.qry.path);
515 html("><!-- cgit_self_link() doesn't know how to make link for page '");
516 html_txt(ctx.qry.page);
523 void cgit_object_link(struct object *obj)
525 char *page, *shortrev, *fullrev, *name;
527 fullrev = oid_to_hex(&obj->oid);
528 shortrev = xstrdup(fullrev);
530 if (obj->type == OBJ_COMMIT) {
531 cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL,
532 ctx.qry.head, fullrev, NULL);
534 } else if (obj->type == OBJ_TREE)
536 else if (obj->type == OBJ_TAG)
540 name = fmt("%s %s...", typename(obj->type), shortrev);
541 reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL);
544 static struct string_list_item *lookup_path(struct string_list *list,
547 struct string_list_item *item;
549 while (path && path[0]) {
550 if ((item = string_list_lookup(list, path)))
552 if (!(path = strchr(path, '/')))
559 void cgit_submodule_link(const char *class, char *path, const char *rev)
561 struct string_list *list;
562 struct string_list_item *item;
568 list = &ctx.repo->submodules;
569 item = lookup_path(list, path);
572 tail = path[len - 1];
575 item = lookup_path(list, path);
578 if (item || ctx.repo->module_link) {
581 htmlf("class='%s' ", class);
584 html_attrf(item->util, rev);
586 dir = strrchr(path, '/');
591 html_attrf(ctx.repo->module_link, dir, rev);
599 htmlf(" class='%s'", class);
604 html_txtf(" @ %.7s", rev);
606 path[len - 1] = tail;
609 const struct date_mode *cgit_date_mode(enum date_mode_type type)
611 static struct date_mode mode;
613 mode.local = ctx.cfg.local_time;
617 static void print_rel_date(time_t t, int tz, double value,
618 const char *class, const char *suffix)
620 htmlf("<span class='%s' title='", class);
621 html_attr(show_date(t, tz, cgit_date_mode(DATE_ISO8601)));
622 htmlf("'>%.0f %s</span>", value, suffix);
625 void cgit_print_age(time_t t, int tz, time_t max_relative)
636 if (secs > max_relative && max_relative >= 0) {
637 html("<span title='");
638 html_attr(show_date(t, tz, cgit_date_mode(DATE_ISO8601)));
640 html_txt(show_date(t, tz, cgit_date_mode(DATE_SHORT)));
645 if (secs < TM_HOUR * 2) {
646 print_rel_date(t, tz, secs * 1.0 / TM_MIN, "age-mins", "min.");
649 if (secs < TM_DAY * 2) {
650 print_rel_date(t, tz, secs * 1.0 / TM_HOUR, "age-hours", "hours");
653 if (secs < TM_WEEK * 2) {
654 print_rel_date(t, tz, secs * 1.0 / TM_DAY, "age-days", "days");
657 if (secs < TM_MONTH * 2) {
658 print_rel_date(t, tz, secs * 1.0 / TM_WEEK, "age-weeks", "weeks");
661 if (secs < TM_YEAR * 2) {
662 print_rel_date(t, tz, secs * 1.0 / TM_MONTH, "age-months", "months");
665 print_rel_date(t, tz, secs * 1.0 / TM_YEAR, "age-years", "years");
668 void cgit_print_http_headers(void)
670 if (ctx.env.no_http && !strcmp(ctx.env.no_http, "1"))
674 htmlf("Status: %d %s\n", ctx.page.status, ctx.page.statusmsg);
675 if (ctx.page.mimetype && ctx.page.charset)
676 htmlf("Content-Type: %s; charset=%s\n", ctx.page.mimetype,
678 else if (ctx.page.mimetype)
679 htmlf("Content-Type: %s\n", ctx.page.mimetype);
681 htmlf("Content-Length: %zd\n", ctx.page.size);
682 if (ctx.page.filename) {
683 html("Content-Disposition: inline; filename=\"");
684 html_header_arg_in_quotes(ctx.page.filename);
687 if (!ctx.env.authenticated)
688 html("Cache-Control: no-cache, no-store\n");
689 htmlf("Last-Modified: %s\n", http_date(ctx.page.modified));
690 htmlf("Expires: %s\n", http_date(ctx.page.expires));
692 htmlf("ETag: \"%s\"\n", ctx.page.etag);
694 if (ctx.env.request_method && !strcmp(ctx.env.request_method, "HEAD"))
698 void cgit_redirect(const char *url, bool permanent)
700 htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found");
706 static void print_rel_vcs_link(const char *url)
708 html("<link rel='vcs-git' href='");
711 html_attr(ctx.repo->name);
712 html(" Git repository'/>\n");
715 void cgit_print_docstart(void)
717 if (ctx.cfg.embedded) {
719 html_include(ctx.cfg.header);
723 char *host = cgit_hosturl();
725 html("<html lang='en'>\n");
728 html_txt(ctx.page.title);
730 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
731 if (ctx.cfg.robots && *ctx.cfg.robots)
732 htmlf("<meta name='robots' content='%s'/>\n", ctx.cfg.robots);
733 html("<link rel='stylesheet' type='text/css' href='");
734 html_attr(ctx.cfg.css);
736 if (ctx.cfg.favicon) {
737 html("<link rel='shortcut icon' href='");
738 html_attr(ctx.cfg.favicon);
741 if (host && ctx.repo && ctx.qry.head) {
743 struct strbuf sb = STRBUF_INIT;
744 strbuf_addf(&sb, "h=%s", ctx.qry.head);
746 html("<link rel='alternate' title='Atom feed' href='");
747 html(cgit_httpscheme());
749 fileurl = cgit_fileurl(ctx.repo->url, "atom", ctx.qry.vpath,
752 html("' type='application/atom+xml'/>\n");
757 cgit_add_clone_urls(print_rel_vcs_link);
758 if (ctx.cfg.head_include)
759 html_include(ctx.cfg.head_include);
763 html_include(ctx.cfg.header);
767 void cgit_print_docend(void)
769 html("</div> <!-- class=content -->\n");
770 if (ctx.cfg.embedded) {
771 html("</div> <!-- id=cgit -->\n");
773 html_include(ctx.cfg.footer);
777 html_include(ctx.cfg.footer);
779 htmlf("<div class='footer'>generated by <a href='http://git.zx2c4.com/cgit/about/'>cgit %s</a> at ",
781 html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601)));
784 html("</div> <!-- id=cgit -->\n");
785 html("</body>\n</html>\n");
788 void cgit_print_error_page(int code, const char *msg, const char *fmt, ...)
791 ctx.page.expires = ctx.cfg.cache_dynamic_ttl;
792 ctx.page.status = code;
793 ctx.page.statusmsg = msg;
794 cgit_print_layout_start();
796 cgit_vprint_error(fmt, ap);
798 cgit_print_layout_end();
801 void cgit_print_layout_start(void)
803 cgit_print_http_headers();
804 cgit_print_docstart();
805 cgit_print_pageheader();
808 void cgit_print_layout_end(void)
813 static void add_clone_urls(void (*fn)(const char *), char *txt, char *suffix)
815 struct strbuf **url_list = strbuf_split_str(txt, ' ', 0);
818 for (i = 0; url_list[i]; i++) {
819 strbuf_rtrim(url_list[i]);
820 if (url_list[i]->len == 0)
822 if (suffix && *suffix)
823 strbuf_addf(url_list[i], "/%s", suffix);
824 fn(url_list[i]->buf);
827 strbuf_list_free(url_list);
830 void cgit_add_clone_urls(void (*fn)(const char *))
832 if (ctx.repo->clone_url)
833 add_clone_urls(fn, expand_macros(ctx.repo->clone_url), NULL);
834 else if (ctx.cfg.clone_prefix)
835 add_clone_urls(fn, ctx.cfg.clone_prefix, ctx.repo->url);
838 static int print_branch_option(const char *refname, const struct object_id *oid,
839 int flags, void *cb_data)
841 char *name = (char *)refname;
842 html_option(name, name, ctx.qry.head);
846 void cgit_add_hidden_formfields(int incl_head, int incl_search,
849 if (!ctx.cfg.virtual_root) {
850 struct strbuf url = STRBUF_INIT;
852 strbuf_addf(&url, "%s/%s", ctx.qry.repo, page);
854 strbuf_addf(&url, "/%s", ctx.qry.vpath);
855 html_hidden("url", url.buf);
856 strbuf_release(&url);
859 if (incl_head && ctx.qry.head && ctx.repo->defbranch &&
860 strcmp(ctx.qry.head, ctx.repo->defbranch))
861 html_hidden("h", ctx.qry.head);
864 html_hidden("id", ctx.qry.sha1);
866 html_hidden("id2", ctx.qry.sha2);
868 html_hidden("showmsg", "1");
872 html_hidden("qt", ctx.qry.grep);
874 html_hidden("q", ctx.qry.search);
878 static const char *hc(const char *page)
883 return strcmp(ctx.qry.page, page) ? NULL : "active";
886 static void cgit_print_path_crumbs(char *path)
888 char *old_path = ctx.qry.path;
889 char *p = path, *q, *end = path + strlen(path);
892 cgit_self_link("root", NULL, NULL);
893 ctx.qry.path = p = path;
895 if (!(q = strchr(p, '/')))
899 cgit_self_link(p, NULL, NULL);
904 ctx.qry.path = old_path;
907 static void print_header(void)
909 char *logo = NULL, *logo_link = NULL;
911 html("<table id='header'>\n");
914 if (ctx.repo && ctx.repo->logo && *ctx.repo->logo)
915 logo = ctx.repo->logo;
918 if (ctx.repo && ctx.repo->logo_link && *ctx.repo->logo_link)
919 logo_link = ctx.repo->logo_link;
921 logo_link = ctx.cfg.logo_link;
923 html("<td class='logo' rowspan='2'><a href='");
924 if (logo_link && *logo_link)
925 html_attr(logo_link);
927 html_attr(cgit_rooturl());
928 html("'><img src='");
930 html("' alt='cgit logo'/></a></td>\n");
933 html("<td class='main'>");
935 cgit_index_link("index", NULL, NULL, NULL, NULL, 0, 1);
937 cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL);
938 if (ctx.env.authenticated) {
939 html("</td><td class='form'>");
940 html("<form method='get'>\n");
941 cgit_add_hidden_formfields(0, 1, ctx.qry.page);
942 html("<select name='h' onchange='this.form.submit();'>\n");
943 for_each_branch_ref(print_branch_option, ctx.qry.head);
944 if (ctx.repo->enable_remote_branches)
945 for_each_remote_ref(print_branch_option, ctx.qry.head);
947 html("<input type='submit' value='switch'/>");
951 html_txt(ctx.cfg.root_title);
952 html("</td></tr>\n");
954 html("<tr><td class='sub'>");
956 html_txt(ctx.repo->desc);
957 html("</td><td class='sub right'>");
958 html_txt(ctx.repo->owner);
960 if (ctx.cfg.root_desc)
961 html_txt(ctx.cfg.root_desc);
962 else if (ctx.cfg.index_info)
963 html_include(ctx.cfg.index_info);
965 html("</td></tr></table>\n");
968 void cgit_print_pageheader(void)
970 html("<div id='cgit'>");
971 if (!ctx.env.authenticated || !ctx.cfg.noheader)
974 html("<table class='tabs'><tr><td>\n");
975 if (ctx.env.authenticated && ctx.repo) {
976 if (ctx.repo->readme.nr)
977 reporevlink("about", "about", NULL,
978 hc("about"), ctx.qry.head, NULL,
980 cgit_summary_link("summary", NULL, hc("summary"),
982 cgit_refs_link("refs", NULL, hc("refs"), ctx.qry.head,
984 cgit_log_link("log", NULL, hc("log"), ctx.qry.head,
985 NULL, ctx.qry.vpath, 0, NULL, NULL,
986 ctx.qry.showmsg, ctx.qry.follow);
987 cgit_tree_link("tree", NULL, hc("tree"), ctx.qry.head,
988 ctx.qry.sha1, ctx.qry.vpath);
989 cgit_commit_link("commit", NULL, hc("commit"),
990 ctx.qry.head, ctx.qry.sha1, ctx.qry.vpath);
991 cgit_diff_link("diff", NULL, hc("diff"), ctx.qry.head,
992 ctx.qry.sha1, ctx.qry.sha2, ctx.qry.vpath);
993 if (ctx.repo->max_stats)
994 cgit_stats_link("stats", NULL, hc("stats"),
995 ctx.qry.head, ctx.qry.vpath);
996 if (ctx.repo->homepage) {
998 html_attr(ctx.repo->homepage);
999 html("'>homepage</a>");
1001 html("</td><td class='form'>");
1002 html("<form class='right' method='get' action='");
1003 if (ctx.cfg.virtual_root) {
1004 char *fileurl = cgit_fileurl(ctx.qry.repo, "log",
1005 ctx.qry.vpath, NULL);
1006 html_url_path(fileurl);
1010 cgit_add_hidden_formfields(1, 0, "log");
1011 html("<select name='qt'>\n");
1012 html_option("grep", "log msg", ctx.qry.grep);
1013 html_option("author", "author", ctx.qry.grep);
1014 html_option("committer", "committer", ctx.qry.grep);
1015 html_option("range", "range", ctx.qry.grep);
1016 html("</select>\n");
1017 html("<input class='txt' type='text' size='10' name='q' value='");
1018 html_attr(ctx.qry.search);
1020 html("<input type='submit' value='search'/>\n");
1022 } else if (ctx.env.authenticated) {
1023 char *currenturl = cgit_currenturl();
1024 site_link(NULL, "index", NULL, hc("repolist"), NULL, NULL, 0, 1);
1025 if (ctx.cfg.root_readme)
1026 site_link("about", "about", NULL, hc("about"),
1028 html("</td><td class='form'>");
1029 html("<form method='get' action='");
1030 html_attr(currenturl);
1032 html("<input type='text' name='q' size='10' value='");
1033 html_attr(ctx.qry.search);
1035 html("<input type='submit' value='search'/>\n");
1039 html("</td></tr></table>\n");
1040 if (ctx.env.authenticated && ctx.qry.vpath) {
1041 html("<div class='path'>");
1043 cgit_print_path_crumbs(ctx.qry.vpath);
1044 if (ctx.cfg.enable_follow_links && !strcmp(ctx.qry.page, "log")) {
1046 ctx.qry.follow = !ctx.qry.follow;
1047 cgit_self_link(ctx.qry.follow ? "follow" : "unfollow",
1049 ctx.qry.follow = !ctx.qry.follow;
1054 html("<div class='content'>");
1057 void cgit_print_filemode(unsigned short mode)
1061 else if (S_ISLNK(mode))
1063 else if (S_ISGITLINK(mode))
1067 html_fileperm(mode >> 6);
1068 html_fileperm(mode >> 3);
1069 html_fileperm(mode);
1072 void cgit_print_snapshot_links(const char *repo, const char *head,
1073 const char *hex, int snapshots)
1075 const struct cgit_snapshot_format* f;
1076 struct strbuf filename = STRBUF_INIT;
1078 unsigned char sha1[20];
1080 if (get_sha1(fmt("refs/tags/%s", hex), sha1) == 0 &&
1081 (hex[0] == 'v' || hex[0] == 'V') && isdigit(hex[1]))
1083 strbuf_addf(&filename, "%s-%s", cgit_repobasename(repo), hex);
1084 prefixlen = filename.len;
1085 for (f = cgit_snapshot_formats; f->suffix; f++) {
1086 if (!(snapshots & f->bit))
1088 strbuf_setlen(&filename, prefixlen);
1089 strbuf_addstr(&filename, f->suffix);
1090 cgit_snapshot_link(filename.buf, NULL, NULL, NULL, NULL,
1094 strbuf_release(&filename);