summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index d4376ce..fd71c12 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -1,370 +1,394 @@
1/* ui-shared.c: common web output functions 1/* ui-shared.c: common web output functions
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11const char cgit_doctype[] = 11const char cgit_doctype[] =
12"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" 12"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
13" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; 13" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
14 14
15static char *http_date(time_t t) 15static char *http_date(time_t t)
16{ 16{
17 static char day[][4] = 17 static char day[][4] =
18 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; 18 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
19 static char month[][4] = 19 static char month[][4] =
20 {"Jan", "Feb", "Mar", "Apr", "May", "Jun", 20 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
21 "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; 21 "Jul", "Aug", "Sep", "Oct", "Now", "Dec"};
22 struct tm *tm = gmtime(&t); 22 struct tm *tm = gmtime(&t);
23 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], 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, 24 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year,
25 tm->tm_hour, tm->tm_min, tm->tm_sec); 25 tm->tm_hour, tm->tm_min, tm->tm_sec);
26} 26}
27 27
28static long ttl_seconds(long ttl) 28static long ttl_seconds(long ttl)
29{ 29{
30 if (ttl<0) 30 if (ttl<0)
31 return 60 * 60 * 24 * 365; 31 return 60 * 60 * 24 * 365;
32 else 32 else
33 return ttl * 60; 33 return ttl * 60;
34} 34}
35 35
36void cgit_print_error(char *msg) 36void cgit_print_error(char *msg)
37{ 37{
38 html("<div class='error'>"); 38 html("<div class='error'>");
39 html_txt(msg); 39 html_txt(msg);
40 html("</div>\n"); 40 html("</div>\n");
41} 41}
42 42
43char *cgit_rooturl() 43char *cgit_rooturl()
44{ 44{
45 if (cgit_virtual_root) 45 if (cgit_virtual_root)
46 return fmt("%s/", cgit_virtual_root); 46 return fmt("%s/", cgit_virtual_root);
47 else 47 else
48 return cgit_script_name; 48 return cgit_script_name;
49} 49}
50 50
51char *cgit_repourl(const char *reponame) 51char *cgit_repourl(const char *reponame)
52{ 52{
53 if (cgit_virtual_root) { 53 if (cgit_virtual_root) {
54 return fmt("%s/%s/", cgit_virtual_root, reponame); 54 return fmt("%s/%s/", cgit_virtual_root, reponame);
55 } else { 55 } else {
56 return fmt("?r=%s", reponame); 56 return fmt("?r=%s", reponame);
57 } 57 }
58} 58}
59 59
60char *cgit_pageurl(const char *reponame, const char *pagename, 60char *cgit_pageurl(const char *reponame, const char *pagename,
61 const char *query) 61 const char *query)
62{ 62{
63 if (cgit_virtual_root) { 63 if (cgit_virtual_root) {
64 if (query) 64 if (query)
65 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, 65 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame,
66 pagename, query); 66 pagename, query);
67 else 67 else
68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame, 68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame,
69 pagename); 69 pagename);
70 } else { 70 } else {
71 if (query) 71 if (query)
72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query); 72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query);
73 else 73 else
74 return fmt("?r=%s&amp;p=%s", reponame, pagename); 74 return fmt("?r=%s&amp;p=%s", reponame, pagename);
75 } 75 }
76} 76}
77 77
78char *cgit_currurl() 78char *cgit_currurl()
79{ 79{
80 if (!cgit_virtual_root) 80 if (!cgit_virtual_root)
81 return cgit_script_name; 81 return cgit_script_name;
82 else if (cgit_query_page) 82 else if (cgit_query_page)
83 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); 83 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page);
84 else if (cgit_query_repo) 84 else if (cgit_query_repo)
85 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); 85 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo);
86 else 86 else
87 return fmt("%s/", cgit_virtual_root); 87 return fmt("%s/", cgit_virtual_root);
88} 88}
89 89
90static char *repolink(char *title, char *class, char *page, char *head, 90static char *repolink(char *title, char *class, char *page, char *head,
91 char *path) 91 char *path)
92{ 92{
93 char *delim = "?"; 93 char *delim = "?";
94 94
95 html("<a"); 95 html("<a");
96 if (title) { 96 if (title) {
97 html(" title='"); 97 html(" title='");
98 html_attr(title); 98 html_attr(title);
99 html("'"); 99 html("'");
100 } 100 }
101 if (class) { 101 if (class) {
102 html(" class='"); 102 html(" class='");
103 html_attr(class); 103 html_attr(class);
104 html("'"); 104 html("'");
105 } 105 }
106 html(" href='"); 106 html(" href='");
107 if (cgit_virtual_root) { 107 if (cgit_virtual_root) {
108 html_attr(cgit_virtual_root); 108 html_attr(cgit_virtual_root);
109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') 109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/')
110 html("/"); 110 html("/");
111 html_attr(cgit_repo->url); 111 html_attr(cgit_repo->url);
112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
113 html("/"); 113 html("/");
114 if (page) { 114 if (page) {
115 html(page); 115 html(page);
116 html("/"); 116 html("/");
117 if (path) 117 if (path)
118 html_attr(path); 118 html_attr(path);
119 } 119 }
120 } else { 120 } else {
121 html(cgit_script_name); 121 html(cgit_script_name);
122 html("?url="); 122 html("?url=");
123 html_attr(cgit_repo->url); 123 html_attr(cgit_repo->url);
124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
125 html("/"); 125 html("/");
126 if (page) { 126 if (page) {
127 html(page); 127 html(page);
128 html("/"); 128 html("/");
129 if (path) 129 if (path)
130 html_attr(path); 130 html_attr(path);
131 } 131 }
132 delim = "&amp;"; 132 delim = "&amp;";
133 } 133 }
134 if (head && strcmp(head, cgit_repo->defbranch)) { 134 if (head && strcmp(head, cgit_repo->defbranch)) {
135 html(delim); 135 html(delim);
136 html("h="); 136 html("h=");
137 html_attr(head); 137 html_attr(head);
138 delim = "&amp;"; 138 delim = "&amp;";
139 } 139 }
140 return fmt("%s", delim); 140 return fmt("%s", delim);
141} 141}
142 142
143static void reporevlink(char *page, char *name, char *title, char *class, 143static void reporevlink(char *page, char *name, char *title, char *class,
144 char *head, char *rev, char *path) 144 char *head, char *rev, char *path)
145{ 145{
146 char *delim; 146 char *delim;
147 147
148 delim = repolink(title, class, page, head, path); 148 delim = repolink(title, class, page, head, path);
149 if (rev && strcmp(rev, cgit_query_head)) { 149 if (rev && strcmp(rev, cgit_query_head)) {
150 html(delim); 150 html(delim);
151 html("id="); 151 html("id=");
152 html_attr(rev); 152 html_attr(rev);
153 } 153 }
154 html("'>"); 154 html("'>");
155 html_txt(name); 155 html_txt(name);
156 html("</a>"); 156 html("</a>");
157} 157}
158 158
159void cgit_tree_link(char *name, char *title, char *class, char *head, 159void cgit_tree_link(char *name, char *title, char *class, char *head,
160 char *rev, char *path) 160 char *rev, char *path)
161{ 161{
162 reporevlink("tree", name, title, class, head, rev, path); 162 reporevlink("tree", name, title, class, head, rev, path);
163} 163}
164 164
165void cgit_log_link(char *name, char *title, char *class, char *head, 165void cgit_log_link(char *name, char *title, char *class, char *head,
166 char *rev, char *path, int ofs) 166 char *rev, char *path, int ofs)
167{ 167{
168 char *delim; 168 char *delim;
169 169
170 delim = repolink(title, class, "log", head, path); 170 delim = repolink(title, class, "log", head, path);
171 if (rev && strcmp(rev, cgit_query_head)) { 171 if (rev && strcmp(rev, cgit_query_head)) {
172 html(delim); 172 html(delim);
173 html("id="); 173 html("id=");
174 html_attr(rev); 174 html_attr(rev);
175 delim = "&"; 175 delim = "&";
176 } 176 }
177 if (ofs > 0) { 177 if (ofs > 0) {
178 html(delim); 178 html(delim);
179 html("ofs="); 179 html("ofs=");
180 htmlf("%d", ofs); 180 htmlf("%d", ofs);
181 } 181 }
182 html("'>"); 182 html("'>");
183 html_txt(name); 183 html_txt(name);
184 html("</a>"); 184 html("</a>");
185} 185}
186 186
187void cgit_commit_link(char *name, char *title, char *class, char *head, 187void cgit_commit_link(char *name, char *title, char *class, char *head,
188 char *rev) 188 char *rev)
189{ 189{
190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { 190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
191 name[cgit_max_msg_len] = '\0'; 191 name[cgit_max_msg_len] = '\0';
192 name[cgit_max_msg_len - 1] = '.'; 192 name[cgit_max_msg_len - 1] = '.';
193 name[cgit_max_msg_len - 2] = '.'; 193 name[cgit_max_msg_len - 2] = '.';
194 name[cgit_max_msg_len - 3] = '.'; 194 name[cgit_max_msg_len - 3] = '.';
195 } 195 }
196 reporevlink("commit", name, title, class, head, rev, NULL); 196 reporevlink("commit", name, title, class, head, rev, NULL);
197} 197}
198 198
199void cgit_diff_link(char *name, char *title, char *class, char *head, 199void cgit_diff_link(char *name, char *title, char *class, char *head,
200 char *new_rev, char *old_rev, char *path) 200 char *new_rev, char *old_rev, char *path)
201{ 201{
202 char *delim; 202 char *delim;
203 203
204 delim = repolink(title, class, "diff", head, path); 204 delim = repolink(title, class, "diff", head, path);
205 if (new_rev && strcmp(new_rev, cgit_query_head)) { 205 if (new_rev && strcmp(new_rev, cgit_query_head)) {
206 html(delim); 206 html(delim);
207 html("id="); 207 html("id=");
208 html_attr(new_rev); 208 html_attr(new_rev);
209 delim = "&amp;"; 209 delim = "&amp;";
210 } 210 }
211 if (old_rev) { 211 if (old_rev) {
212 html(delim); 212 html(delim);
213 html("id2="); 213 html("id2=");
214 html_attr(old_rev); 214 html_attr(old_rev);
215 } 215 }
216 html("'>"); 216 html("'>");
217 html_txt(name); 217 html_txt(name);
218 html("</a>"); 218 html("</a>");
219} 219}
220 220
221void cgit_object_link(struct object *obj)
222{
223 char *page, *arg, *url;
224
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));
228 return;
229 } else if (obj->type == OBJ_TREE) {
230 page = "tree";
231 arg = "id";
232 } else {
233 page = "blob";
234 arg = "id";
235 }
236
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));
242 html_link_close();
243}
244
221void cgit_print_date(time_t secs, char *format) 245void cgit_print_date(time_t secs, char *format)
222{ 246{
223 char buf[64]; 247 char buf[64];
224 struct tm *time; 248 struct tm *time;
225 249
226 time = gmtime(&secs); 250 time = gmtime(&secs);
227 strftime(buf, sizeof(buf)-1, format, time); 251 strftime(buf, sizeof(buf)-1, format, time);
228 html_txt(buf); 252 html_txt(buf);
229} 253}
230 254
231void cgit_print_age(time_t t, time_t max_relative, char *format) 255void cgit_print_age(time_t t, time_t max_relative, char *format)
232{ 256{
233 time_t now, secs; 257 time_t now, secs;
234 258
235 time(&now); 259 time(&now);
236 secs = now - t; 260 secs = now - t;
237 261
238 if (secs > max_relative && max_relative >= 0) { 262 if (secs > max_relative && max_relative >= 0) {
239 cgit_print_date(t, format); 263 cgit_print_date(t, format);
240 return; 264 return;
241 } 265 }
242 266
243 if (secs < TM_HOUR * 2) { 267 if (secs < TM_HOUR * 2) {
244 htmlf("<span class='age-mins'>%.0f min.</span>", 268 htmlf("<span class='age-mins'>%.0f min.</span>",
245 secs * 1.0 / TM_MIN); 269 secs * 1.0 / TM_MIN);
246 return; 270 return;
247 } 271 }
248 if (secs < TM_DAY * 2) { 272 if (secs < TM_DAY * 2) {
249 htmlf("<span class='age-hours'>%.0f hours</span>", 273 htmlf("<span class='age-hours'>%.0f hours</span>",
250 secs * 1.0 / TM_HOUR); 274 secs * 1.0 / TM_HOUR);
251 return; 275 return;
252 } 276 }
253 if (secs < TM_WEEK * 2) { 277 if (secs < TM_WEEK * 2) {
254 htmlf("<span class='age-days'>%.0f days</span>", 278 htmlf("<span class='age-days'>%.0f days</span>",
255 secs * 1.0 / TM_DAY); 279 secs * 1.0 / TM_DAY);
256 return; 280 return;
257 } 281 }
258 if (secs < TM_MONTH * 2) { 282 if (secs < TM_MONTH * 2) {
259 htmlf("<span class='age-weeks'>%.0f weeks</span>", 283 htmlf("<span class='age-weeks'>%.0f weeks</span>",
260 secs * 1.0 / TM_WEEK); 284 secs * 1.0 / TM_WEEK);
261 return; 285 return;
262 } 286 }
263 if (secs < TM_YEAR * 2) { 287 if (secs < TM_YEAR * 2) {
264 htmlf("<span class='age-months'>%.0f months</span>", 288 htmlf("<span class='age-months'>%.0f months</span>",
265 secs * 1.0 / TM_MONTH); 289 secs * 1.0 / TM_MONTH);
266 return; 290 return;
267 } 291 }
268 htmlf("<span class='age-years'>%.0f years</span>", 292 htmlf("<span class='age-years'>%.0f years</span>",
269 secs * 1.0 / TM_YEAR); 293 secs * 1.0 / TM_YEAR);
270} 294}
271 295
272void cgit_print_docstart(char *title, struct cacheitem *item) 296void cgit_print_docstart(char *title, struct cacheitem *item)
273{ 297{
274 html("Content-Type: text/html; charset=utf-8\n"); 298 html("Content-Type: text/html; charset=utf-8\n");
275 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 299 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
276 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 300 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
277 ttl_seconds(item->ttl))); 301 ttl_seconds(item->ttl)));
278 html("\n"); 302 html("\n");
279 html(cgit_doctype); 303 html(cgit_doctype);
280 html("<html>\n"); 304 html("<html>\n");
281 html("<head>\n"); 305 html("<head>\n");
282 html("<title>"); 306 html("<title>");
283 html_txt(title); 307 html_txt(title);
284 html("</title>\n"); 308 html("</title>\n");
285 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 309 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
286 html("<link rel='stylesheet' type='text/css' href='"); 310 html("<link rel='stylesheet' type='text/css' href='");
287 html_attr(cgit_css); 311 html_attr(cgit_css);
288 html("'/>\n"); 312 html("'/>\n");
289 html("</head>\n"); 313 html("</head>\n");
290 html("<body>\n"); 314 html("<body>\n");
291} 315}
292 316
293void cgit_print_docend() 317void cgit_print_docend()
294{ 318{
295 html("</td></tr></table>"); 319 html("</td></tr></table>");
296 html("</body>\n</html>\n"); 320 html("</body>\n</html>\n");
297} 321}
298 322
299void cgit_print_pageheader(char *title, int show_search) 323void cgit_print_pageheader(char *title, int show_search)
300{ 324{
301 html("<table id='layout'>"); 325 html("<table id='layout'>");
302 html("<tr><td id='header'><a href='"); 326 html("<tr><td id='header'><a href='");
303 html_attr(cgit_rooturl()); 327 html_attr(cgit_rooturl());
304 html("'>"); 328 html("'>");
305 html_txt(cgit_root_title); 329 html_txt(cgit_root_title);
306 html("</a></td><td id='logo'>"); 330 html("</a></td><td id='logo'>");
307 html("<a href='"); 331 html("<a href='");
308 html_attr(cgit_logo_link); 332 html_attr(cgit_logo_link);
309 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); 333 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
310 html("</td></tr>"); 334 html("</td></tr>");
311 html("<tr><td id='crumb'>"); 335 html("<tr><td id='crumb'>");
312 if (cgit_query_repo) { 336 if (cgit_query_repo) {
313 html_txt(cgit_repo->name); 337 html_txt(cgit_repo->name);
314 html(" ("); 338 html(" (");
315 html_txt(cgit_query_head); 339 html_txt(cgit_query_head);
316 html(") : &nbsp;"); 340 html(") : &nbsp;");
317 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, 341 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head,
318 NULL, NULL); 342 NULL, NULL);
319 html(" "); 343 html(" ");
320 cgit_log_link("log", NULL, NULL, cgit_query_head, 344 cgit_log_link("log", NULL, NULL, cgit_query_head,
321 cgit_query_sha1, cgit_query_path, 0); 345 cgit_query_sha1, cgit_query_path, 0);
322 html(" "); 346 html(" ");
323 cgit_tree_link("tree", NULL, NULL, cgit_query_head, 347 cgit_tree_link("tree", NULL, NULL, cgit_query_head,
324 cgit_query_sha1, NULL); 348 cgit_query_sha1, NULL);
325 html(" "); 349 html(" ");
326 cgit_commit_link("commit", NULL, NULL, cgit_query_head, 350 cgit_commit_link("commit", NULL, NULL, cgit_query_head,
327 cgit_query_sha1); 351 cgit_query_sha1);
328 html(" "); 352 html(" ");
329 cgit_diff_link("diff", NULL, NULL, cgit_query_head, 353 cgit_diff_link("diff", NULL, NULL, cgit_query_head,
330 cgit_query_sha1, cgit_query_sha2, 354 cgit_query_sha1, cgit_query_sha2,
331 cgit_query_path); 355 cgit_query_path);
332 } else { 356 } else {
333 html_txt("Index of repositories"); 357 html_txt("Index of repositories");
334 } 358 }
335 html("</td>"); 359 html("</td>");
336 html("<td id='search'>"); 360 html("<td id='search'>");
337 if (show_search) { 361 if (show_search) {
338 html("<form method='get' action='"); 362 html("<form method='get' action='");
339 html_attr(cgit_currurl()); 363 html_attr(cgit_currurl());
340 html("'>"); 364 html("'>");
341 if (!cgit_virtual_root) { 365 if (!cgit_virtual_root) {
342 if (cgit_query_repo) 366 if (cgit_query_repo)
343 html_hidden("r", cgit_query_repo); 367 html_hidden("r", cgit_query_repo);
344 if (cgit_query_page) 368 if (cgit_query_page)
345 html_hidden("p", cgit_query_page); 369 html_hidden("p", cgit_query_page);
346 } 370 }
347 if (cgit_query_head) 371 if (cgit_query_head)
348 html_hidden("h", cgit_query_head); 372 html_hidden("h", cgit_query_head);
349 if (cgit_query_sha1) 373 if (cgit_query_sha1)
350 html_hidden("id", cgit_query_sha1); 374 html_hidden("id", cgit_query_sha1);
351 if (cgit_query_sha2) 375 if (cgit_query_sha2)
352 html_hidden("id2", cgit_query_sha2); 376 html_hidden("id2", cgit_query_sha2);
353 html("<input type='text' name='q' value='"); 377 html("<input type='text' name='q' value='");
354 html_attr(cgit_query_search); 378 html_attr(cgit_query_search);
355 html("'/></form>"); 379 html("'/></form>");
356 } 380 }
357 html("</td></tr>"); 381 html("</td></tr>");
358 html("<tr><td id='content' colspan='2'>"); 382 html("<tr><td id='content' colspan='2'>");
359} 383}
360 384
361void cgit_print_snapshot_start(const char *mimetype, const char *filename, 385void cgit_print_snapshot_start(const char *mimetype, const char *filename,
362 struct cacheitem *item) 386 struct cacheitem *item)
363{ 387{
364 htmlf("Content-Type: %s\n", mimetype); 388 htmlf("Content-Type: %s\n", mimetype);
365 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); 389 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename);
366 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 390 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
367 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 391 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
368 ttl_seconds(item->ttl))); 392 ttl_seconds(item->ttl)));
369 html("\n"); 393 html("\n");
370} 394}