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_fileurl(const char *reponame, const char *pagename,
61 const char *filename, const char *query)
63 if (cgit_virtual_root) {
65 return fmt("%s/%s/%s/%s?%s", cgit_virtual_root, reponame,
66 pagename, filename?filename:"", query);
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);
78 char *cgit_pageurl(const char *reponame, const char *pagename,
81 return cgit_fileurl(reponame,pagename,0,query);
84 const char *cgit_repobasename(const char *reponame)
86 /* I assume we don't need to store more than one repo basename */
87 static char rvbuf[1024];
90 strncpy(rvbuf,reponame,sizeof(rvbuf));
91 if(rvbuf[sizeof(rvbuf)-1])
92 die("cgit_repobasename: truncated repository name '%s'", reponame);
94 /* strip trailing slashes */
95 while(p && rvbuf[p]=='/') rvbuf[p--]=0;
96 /* strip trailing .git */
97 if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) {
98 p -= 3; rvbuf[p--] = 0;
100 /* strip more trailing slashes if any */
101 while( p && rvbuf[p]=='/') rvbuf[p--]=0;
102 /* find last slash in the remaining string */
103 rv = strrchr(rvbuf,'/');
111 if (!cgit_virtual_root)
112 return cgit_script_name;
113 else if (cgit_query_page)
114 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page);
115 else if (cgit_query_repo)
116 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo);
118 return fmt("%s/", cgit_virtual_root);
121 static char *repolink(char *title, char *class, char *page, char *head,
138 if (cgit_virtual_root) {
139 html_attr(cgit_virtual_root);
140 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/')
142 html_attr(cgit_repo->url);
143 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
152 html(cgit_script_name);
154 html_attr(cgit_repo->url);
155 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
165 if (head && strcmp(head, cgit_repo->defbranch)) {
171 return fmt("%s", delim);
174 static void reporevlink(char *page, char *name, char *title, char *class,
175 char *head, char *rev, char *path)
179 delim = repolink(title, class, page, head, path);
180 if (rev && strcmp(rev, cgit_query_head)) {
190 void cgit_tree_link(char *name, char *title, char *class, char *head,
191 char *rev, char *path)
193 reporevlink("tree", name, title, class, head, rev, path);
196 void cgit_log_link(char *name, char *title, char *class, char *head,
197 char *rev, char *path, int ofs)
201 delim = repolink(title, class, "log", head, path);
202 if (rev && strcmp(rev, cgit_query_head)) {
218 void cgit_commit_link(char *name, char *title, char *class, char *head,
221 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
222 name[cgit_max_msg_len] = '\0';
223 name[cgit_max_msg_len - 1] = '.';
224 name[cgit_max_msg_len - 2] = '.';
225 name[cgit_max_msg_len - 3] = '.';
227 reporevlink("commit", name, title, class, head, rev, NULL);
230 void cgit_refs_link(char *name, char *title, char *class, char *head,
231 char *rev, char *path)
233 reporevlink("refs", name, title, class, head, rev, path);
236 void cgit_snapshot_link(char *name, char *title, char *class, char *head,
237 char *rev, char *archivename)
239 reporevlink("snapshot", name, title, class, head, rev, archivename);
242 void cgit_diff_link(char *name, char *title, char *class, char *head,
243 char *new_rev, char *old_rev, char *path)
247 delim = repolink(title, class, "diff", head, path);
248 if (new_rev && strcmp(new_rev, cgit_query_head)) {
264 void cgit_object_link(struct object *obj)
266 char *page, *arg, *url;
268 if (obj->type == OBJ_COMMIT) {
269 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
270 cgit_query_head, sha1_to_hex(obj->sha1));
272 } else if (obj->type == OBJ_TREE) {
280 url = cgit_pageurl(cgit_query_repo, page,
281 fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
282 html_link_open(url, NULL, NULL);
283 htmlf("%s %s", typename(obj->type),
284 sha1_to_hex(obj->sha1));
288 void cgit_print_date(time_t secs, char *format)
293 time = gmtime(&secs);
294 strftime(buf, sizeof(buf)-1, format, time);
298 void cgit_print_age(time_t t, time_t max_relative, char *format)
305 if (secs > max_relative && max_relative >= 0) {
306 cgit_print_date(t, format);
310 if (secs < TM_HOUR * 2) {
311 htmlf("<span class='age-mins'>%.0f min.</span>",
312 secs * 1.0 / TM_MIN);
315 if (secs < TM_DAY * 2) {
316 htmlf("<span class='age-hours'>%.0f hours</span>",
317 secs * 1.0 / TM_HOUR);
320 if (secs < TM_WEEK * 2) {
321 htmlf("<span class='age-days'>%.0f days</span>",
322 secs * 1.0 / TM_DAY);
325 if (secs < TM_MONTH * 2) {
326 htmlf("<span class='age-weeks'>%.0f weeks</span>",
327 secs * 1.0 / TM_WEEK);
330 if (secs < TM_YEAR * 2) {
331 htmlf("<span class='age-months'>%.0f months</span>",
332 secs * 1.0 / TM_MONTH);
335 htmlf("<span class='age-years'>%.0f years</span>",
336 secs * 1.0 / TM_YEAR);
339 void cgit_print_docstart(char *title, struct cacheitem *item)
341 html("Content-Type: text/html; charset=utf-8\n");
342 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
343 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
344 ttl_seconds(item->ttl)));
352 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
353 html("<link rel='stylesheet' type='text/css' href='");
360 void cgit_print_docend()
362 html("</td></tr></table>");
363 html("</body>\n</html>\n");
366 void cgit_print_pageheader(char *title, int show_search)
368 html("<table id='layout'>");
369 html("<tr><td id='header'><a href='");
370 html_attr(cgit_rooturl());
372 html_txt(cgit_root_title);
373 html("</a></td><td id='logo'>");
375 html_attr(cgit_logo_link);
376 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
378 html("<tr><td id='crumb'>");
379 if (cgit_query_repo) {
380 html_txt(cgit_repo->name);
382 html_txt(cgit_query_head);
384 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head,
387 cgit_log_link("log", NULL, NULL, cgit_query_head,
388 cgit_query_sha1, cgit_query_path, 0);
390 cgit_tree_link("tree", NULL, NULL, cgit_query_head,
391 cgit_query_sha1, NULL);
393 cgit_commit_link("commit", NULL, NULL, cgit_query_head,
396 cgit_diff_link("diff", NULL, NULL, cgit_query_head,
397 cgit_query_sha1, cgit_query_sha2,
400 html_txt("Index of repositories");
403 html("<td id='search'>");
405 html("<form method='get' action='");
406 html_attr(cgit_currurl());
408 if (!cgit_virtual_root) {
410 html_hidden("r", cgit_query_repo);
412 html_hidden("p", cgit_query_page);
415 html_hidden("h", cgit_query_head);
417 html_hidden("id", cgit_query_sha1);
419 html_hidden("id2", cgit_query_sha2);
420 html("<input type='text' name='q' value='");
421 html_attr(cgit_query_search);
425 html("<tr><td id='content' colspan='2'>");
428 void cgit_print_snapshot_start(const char *mimetype, const char *filename,
429 struct cacheitem *item)
431 htmlf("Content-Type: %s\n", mimetype);
432 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename);
433 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
434 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
435 ttl_seconds(item->ttl)));