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] != '/')
121 html(cgit_script_name);
123 html_attr(cgit_repo->url);
124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
134 if (head && strcmp(head, cgit_repo->defbranch)) {
140 return fmt("%s", delim);
143 static void reporevlink(char *page, char *name, char *title, char *class,
144 char *head, char *rev, char *path)
148 delim = repolink(title, class, page, head, path);
149 if (rev && strcmp(rev, cgit_query_head)) {
159 void cgit_tree_link(char *name, char *title, char *class, char *head,
160 char *rev, char *path)
162 reporevlink("tree", name, title, class, head, rev, path);
165 void cgit_log_link(char *name, char *title, char *class, char *head,
166 char *rev, char *path, int ofs)
170 delim = repolink(title, class, "log", head, path);
171 if (rev && strcmp(rev, cgit_query_head)) {
187 void cgit_commit_link(char *name, char *title, char *class, char *head,
190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
191 name[cgit_max_msg_len] = '\0';
192 name[cgit_max_msg_len - 1] = '.';
193 name[cgit_max_msg_len - 2] = '.';
194 name[cgit_max_msg_len - 3] = '.';
196 reporevlink("commit", name, title, class, head, rev, NULL);
199 void cgit_diff_link(char *name, char *title, char *class, char *head,
200 char *new_rev, char *old_rev, char *path)
204 delim = repolink(title, class, "diff", head, path);
205 if (new_rev && strcmp(new_rev, cgit_query_head)) {
221 void cgit_object_link(struct object *obj)
223 char *page, *arg, *url;
225 if (obj->type == OBJ_COMMIT) {
226 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
227 cgit_query_head, sha1_to_hex(obj->sha1));
229 } else if (obj->type == OBJ_TREE) {
237 url = cgit_pageurl(cgit_query_repo, page,
238 fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
239 html_link_open(url, NULL, NULL);
240 htmlf("%s %s", typename(obj->type),
241 sha1_to_hex(obj->sha1));
245 void cgit_print_date(time_t secs, char *format)
250 time = gmtime(&secs);
251 strftime(buf, sizeof(buf)-1, format, time);
255 void cgit_print_age(time_t t, time_t max_relative, char *format)
262 if (secs > max_relative && max_relative >= 0) {
263 cgit_print_date(t, format);
267 if (secs < TM_HOUR * 2) {
268 htmlf("<span class='age-mins'>%.0f min.</span>",
269 secs * 1.0 / TM_MIN);
272 if (secs < TM_DAY * 2) {
273 htmlf("<span class='age-hours'>%.0f hours</span>",
274 secs * 1.0 / TM_HOUR);
277 if (secs < TM_WEEK * 2) {
278 htmlf("<span class='age-days'>%.0f days</span>",
279 secs * 1.0 / TM_DAY);
282 if (secs < TM_MONTH * 2) {
283 htmlf("<span class='age-weeks'>%.0f weeks</span>",
284 secs * 1.0 / TM_WEEK);
287 if (secs < TM_YEAR * 2) {
288 htmlf("<span class='age-months'>%.0f months</span>",
289 secs * 1.0 / TM_MONTH);
292 htmlf("<span class='age-years'>%.0f years</span>",
293 secs * 1.0 / TM_YEAR);
296 void cgit_print_docstart(char *title, struct cacheitem *item)
298 html("Content-Type: text/html; charset=utf-8\n");
299 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
300 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
301 ttl_seconds(item->ttl)));
309 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
310 html("<link rel='stylesheet' type='text/css' href='");
317 void cgit_print_docend()
319 html("</td></tr></table>");
320 html("</body>\n</html>\n");
323 void cgit_print_pageheader(char *title, int show_search)
325 html("<table id='layout'>");
326 html("<tr><td id='header'><a href='");
327 html_attr(cgit_rooturl());
329 html_txt(cgit_root_title);
330 html("</a></td><td id='logo'>");
332 html_attr(cgit_logo_link);
333 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
335 html("<tr><td id='crumb'>");
336 if (cgit_query_repo) {
337 html_txt(cgit_repo->name);
339 html_txt(cgit_query_head);
341 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head,
344 cgit_log_link("log", NULL, NULL, cgit_query_head,
345 cgit_query_sha1, cgit_query_path, 0);
347 cgit_tree_link("tree", NULL, NULL, cgit_query_head,
348 cgit_query_sha1, NULL);
350 cgit_commit_link("commit", NULL, NULL, cgit_query_head,
353 cgit_diff_link("diff", NULL, NULL, cgit_query_head,
354 cgit_query_sha1, cgit_query_sha2,
357 html_txt("Index of repositories");
360 html("<td id='search'>");
362 html("<form method='get' action='");
363 html_attr(cgit_currurl());
365 if (!cgit_virtual_root) {
367 html_hidden("r", cgit_query_repo);
369 html_hidden("p", cgit_query_page);
372 html_hidden("h", cgit_query_head);
374 html_hidden("id", cgit_query_sha1);
376 html_hidden("id2", cgit_query_sha2);
377 html("<input type='text' name='q' value='");
378 html_attr(cgit_query_search);
382 html("<tr><td id='content' colspan='2'>");
385 void cgit_print_snapshot_start(const char *mimetype, const char *filename,
386 struct cacheitem *item)
388 htmlf("Content-Type: %s\n", mimetype);
389 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename);
390 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
391 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
392 ttl_seconds(item->ttl)));