]>
git.cameronkatri.com Git - cgit.git/blob - ui-shared.c
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_snapshot_link(char *name
, char *title
, char *class, char *head
,
231 char *rev
, char *archivename
)
233 reporevlink("snapshot", name
, title
, class, head
, rev
, archivename
);
236 void cgit_diff_link(char *name
, char *title
, char *class, char *head
,
237 char *new_rev
, char *old_rev
, char *path
)
241 delim
= repolink(title
, class, "diff", head
, path
);
242 if (new_rev
&& strcmp(new_rev
, cgit_query_head
)) {
258 void cgit_object_link(struct object
*obj
)
260 char *page
, *arg
, *url
;
262 if (obj
->type
== OBJ_COMMIT
) {
263 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj
->sha1
)), NULL
, NULL
,
264 cgit_query_head
, sha1_to_hex(obj
->sha1
));
266 } else if (obj
->type
== OBJ_TREE
) {
274 url
= cgit_pageurl(cgit_query_repo
, page
,
275 fmt("%s=%s", arg
, sha1_to_hex(obj
->sha1
)));
276 html_link_open(url
, NULL
, NULL
);
277 htmlf("%s %s", typename(obj
->type
),
278 sha1_to_hex(obj
->sha1
));
282 void cgit_print_date(time_t secs
, char *format
)
287 time
= gmtime(&secs
);
288 strftime(buf
, sizeof(buf
)-1, format
, time
);
292 void cgit_print_age(time_t t
, time_t max_relative
, char *format
)
299 if (secs
> max_relative
&& max_relative
>= 0) {
300 cgit_print_date(t
, format
);
304 if (secs
< TM_HOUR
* 2) {
305 htmlf("<span class='age-mins'>%.0f min.</span>",
306 secs
* 1.0 / TM_MIN
);
309 if (secs
< TM_DAY
* 2) {
310 htmlf("<span class='age-hours'>%.0f hours</span>",
311 secs
* 1.0 / TM_HOUR
);
314 if (secs
< TM_WEEK
* 2) {
315 htmlf("<span class='age-days'>%.0f days</span>",
316 secs
* 1.0 / TM_DAY
);
319 if (secs
< TM_MONTH
* 2) {
320 htmlf("<span class='age-weeks'>%.0f weeks</span>",
321 secs
* 1.0 / TM_WEEK
);
324 if (secs
< TM_YEAR
* 2) {
325 htmlf("<span class='age-months'>%.0f months</span>",
326 secs
* 1.0 / TM_MONTH
);
329 htmlf("<span class='age-years'>%.0f years</span>",
330 secs
* 1.0 / TM_YEAR
);
333 void cgit_print_docstart(char *title
, struct cacheitem
*item
)
335 html("Content-Type: text/html; charset=utf-8\n");
336 htmlf("Last-Modified: %s\n", http_date(item
->st
.st_mtime
));
337 htmlf("Expires: %s\n", http_date(item
->st
.st_mtime
+
338 ttl_seconds(item
->ttl
)));
346 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version
);
347 html("<link rel='stylesheet' type='text/css' href='");
354 void cgit_print_docend()
356 html("</td></tr></table>");
357 html("</body>\n</html>\n");
360 void cgit_print_pageheader(char *title
, int show_search
)
362 html("<table id='layout'>");
363 html("<tr><td id='header'><a href='");
364 html_attr(cgit_rooturl());
366 html_txt(cgit_root_title
);
367 html("</a></td><td id='logo'>");
369 html_attr(cgit_logo_link
);
370 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo
);
372 html("<tr><td id='crumb'>");
373 if (cgit_query_repo
) {
374 html_txt(cgit_repo
->name
);
376 html_txt(cgit_query_head
);
378 reporevlink(NULL
, "summary", NULL
, NULL
, cgit_query_head
,
381 cgit_log_link("log", NULL
, NULL
, cgit_query_head
,
382 cgit_query_sha1
, cgit_query_path
, 0);
384 cgit_tree_link("tree", NULL
, NULL
, cgit_query_head
,
385 cgit_query_sha1
, NULL
);
387 cgit_commit_link("commit", NULL
, NULL
, cgit_query_head
,
390 cgit_diff_link("diff", NULL
, NULL
, cgit_query_head
,
391 cgit_query_sha1
, cgit_query_sha2
,
394 html_txt("Index of repositories");
397 html("<td id='search'>");
399 html("<form method='get' action='");
400 html_attr(cgit_currurl());
402 if (!cgit_virtual_root
) {
404 html_hidden("r", cgit_query_repo
);
406 html_hidden("p", cgit_query_page
);
409 html_hidden("h", cgit_query_head
);
411 html_hidden("id", cgit_query_sha1
);
413 html_hidden("id2", cgit_query_sha2
);
414 html("<input type='text' name='q' value='");
415 html_attr(cgit_query_search
);
419 html("<tr><td id='content' colspan='2'>");
422 void cgit_print_snapshot_start(const char *mimetype
, const char *filename
,
423 struct cacheitem
*item
)
425 htmlf("Content-Type: %s\n", mimetype
);
426 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename
);
427 htmlf("Last-Modified: %s\n", http_date(item
->st
.st_mtime
));
428 htmlf("Expires: %s\n", http_date(item
->st
.st_mtime
+
429 ttl_seconds(item
->ttl
)));