1 /* ui-shared.c: common web output functions
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
11 const char cgit_doctype[] =
12 "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
13 " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
15 static char *http_date(time_t t)
17 static char day[][4] =
18 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
19 static char month[][4] =
20 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
21 "Jul", "Aug", "Sep", "Oct", "Now", "Dec"};
22 struct tm *tm = gmtime(&t);
23 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday],
24 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year,
25 tm->tm_hour, tm->tm_min, tm->tm_sec);
28 static long ttl_seconds(long ttl)
31 return 60 * 60 * 24 * 365;
36 void cgit_print_error(char *msg)
38 html("<div class='error'>");
45 if (cgit_virtual_root)
46 return fmt("%s/", cgit_virtual_root);
48 return cgit_script_name;
51 char *cgit_repourl(const char *reponame)
53 if (cgit_virtual_root) {
54 return fmt("%s/%s/", cgit_virtual_root, reponame);
56 return fmt("?r=%s", reponame);
60 char *cgit_pageurl(const char *reponame, const char *pagename,
63 if (cgit_virtual_root) {
65 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame,
68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame,
72 return fmt("?r=%s&p=%s&%s", reponame, pagename, query);
74 return fmt("?r=%s&p=%s", reponame, pagename);
80 if (!cgit_virtual_root)
81 return cgit_script_name;
82 else if (cgit_query_page)
83 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page);
84 else if (cgit_query_repo)
85 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo);
87 return fmt("%s/", cgit_virtual_root);
90 static char *repolink(char *title, char *class, char *page, char *head,
107 if (cgit_virtual_root) {
108 html_attr(cgit_virtual_root);
109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/')
111 html_attr(cgit_repo->url);
112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
119 html(cgit_script_name);
121 html_attr(cgit_repo->url);
122 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
130 if (head && strcmp(head, cgit_repo->defbranch)) {
136 return fmt("%s", delim);
139 static char *reporevlink(char *page, char *name, char *title, char *class,
140 char *head, char *rev, char *path)
144 delim = repolink(title, class, page, head, path);
145 if (rev && strcmp(rev, cgit_query_head)) {
155 void cgit_tree_link(char *name, char *title, char *class, char *head,
156 char *rev, char *path)
158 reporevlink("tree", name, title, class, head, rev, path);
161 void cgit_log_link(char *name, char *title, char *class, char *head,
162 char *rev, char *path)
164 reporevlink("log", name, title, class, head, rev, path);
167 void cgit_print_date(time_t secs, char *format)
172 time = gmtime(&secs);
173 strftime(buf, sizeof(buf)-1, format, time);
177 void cgit_print_age(time_t t, time_t max_relative, char *format)
184 if (secs > max_relative && max_relative >= 0) {
185 cgit_print_date(t, format);
189 if (secs < TM_HOUR * 2) {
190 htmlf("<span class='age-mins'>%.0f min.</span>",
191 secs * 1.0 / TM_MIN);
194 if (secs < TM_DAY * 2) {
195 htmlf("<span class='age-hours'>%.0f hours</span>",
196 secs * 1.0 / TM_HOUR);
199 if (secs < TM_WEEK * 2) {
200 htmlf("<span class='age-days'>%.0f days</span>",
201 secs * 1.0 / TM_DAY);
204 if (secs < TM_MONTH * 2) {
205 htmlf("<span class='age-weeks'>%.0f weeks</span>",
206 secs * 1.0 / TM_WEEK);
209 if (secs < TM_YEAR * 2) {
210 htmlf("<span class='age-months'>%.0f months</span>",
211 secs * 1.0 / TM_MONTH);
214 htmlf("<span class='age-years'>%.0f years</span>",
215 secs * 1.0 / TM_YEAR);
218 void cgit_print_docstart(char *title, struct cacheitem *item)
220 html("Content-Type: text/html; charset=utf-8\n");
221 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
222 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
223 ttl_seconds(item->ttl)));
231 htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version);
232 html("<link rel='stylesheet' type='text/css' href='");
239 void cgit_print_docend()
241 html("</td></tr></table>");
242 html("</body>\n</html>\n");
245 void cgit_print_pageheader(char *title, int show_search)
247 html("<table id='layout'>");
248 html("<tr><td id='header'>");
249 html(cgit_root_title);
250 html("</td><td id='logo'>");
252 html_attr(cgit_logo_link);
253 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
255 html("<tr><td id='crumb'>");
256 htmlf("<a href='%s'>root</a>", cgit_rooturl());
257 if (cgit_query_repo) {
258 htmlf(" : <a href='%s'>", cgit_repourl(cgit_repo->url));
259 html_txt(cgit_repo->name);
260 htmlf("</a> : %s", title);
263 html("<td id='search'>");
265 html("<form method='get' action='");
266 html_attr(cgit_currurl());
268 if (!cgit_virtual_root) {
270 html_hidden("r", cgit_query_repo);
272 html_hidden("p", cgit_query_page);
275 html_hidden("h", cgit_query_head);
277 html_hidden("id", cgit_query_sha1);
279 html_hidden("id2", cgit_query_sha2);
280 html("<input type='text' name='q' value='");
281 html_attr(cgit_query_search);
285 html("<tr><td id='content' colspan='2'>");
288 void cgit_print_snapshot_start(const char *mimetype, const char *filename,
289 struct cacheitem *item)
291 htmlf("Content-Type: %s\n", mimetype);
292 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename);
293 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
294 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
295 ttl_seconds(item->ttl)));