-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index a198cf2..64c237f 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -244,111 +244,111 @@ void cgit_print_age(time_t t, time_t max_relative, char *format) | |||
244 | secs * 1.0 / TM_WEEK); | 244 | secs * 1.0 / TM_WEEK); |
245 | return; | 245 | return; |
246 | } | 246 | } |
247 | if (secs < TM_YEAR * 2) { | 247 | if (secs < TM_YEAR * 2) { |
248 | htmlf("<span class='age-months'>%.0f months</span>", | 248 | htmlf("<span class='age-months'>%.0f months</span>", |
249 | secs * 1.0 / TM_MONTH); | 249 | secs * 1.0 / TM_MONTH); |
250 | return; | 250 | return; |
251 | } | 251 | } |
252 | htmlf("<span class='age-years'>%.0f years</span>", | 252 | htmlf("<span class='age-years'>%.0f years</span>", |
253 | secs * 1.0 / TM_YEAR); | 253 | secs * 1.0 / TM_YEAR); |
254 | } | 254 | } |
255 | 255 | ||
256 | void cgit_print_docstart(char *title, struct cacheitem *item) | 256 | void cgit_print_docstart(char *title, struct cacheitem *item) |
257 | { | 257 | { |
258 | html("Content-Type: text/html; charset=utf-8\n"); | 258 | html("Content-Type: text/html; charset=utf-8\n"); |
259 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 259 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
260 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 260 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
261 | ttl_seconds(item->ttl))); | 261 | ttl_seconds(item->ttl))); |
262 | html("\n"); | 262 | html("\n"); |
263 | html(cgit_doctype); | 263 | html(cgit_doctype); |
264 | html("<html>\n"); | 264 | html("<html>\n"); |
265 | html("<head>\n"); | 265 | html("<head>\n"); |
266 | html("<title>"); | 266 | html("<title>"); |
267 | html_txt(title); | 267 | html_txt(title); |
268 | html("</title>\n"); | 268 | html("</title>\n"); |
269 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); | 269 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); |
270 | html("<link rel='stylesheet' type='text/css' href='"); | 270 | html("<link rel='stylesheet' type='text/css' href='"); |
271 | html_attr(cgit_css); | 271 | html_attr(cgit_css); |
272 | html("'/>\n"); | 272 | html("'/>\n"); |
273 | html("</head>\n"); | 273 | html("</head>\n"); |
274 | html("<body>\n"); | 274 | html("<body>\n"); |
275 | } | 275 | } |
276 | 276 | ||
277 | void cgit_print_docend() | 277 | void cgit_print_docend() |
278 | { | 278 | { |
279 | html("</td></tr></table>"); | 279 | html("</td></tr></table>"); |
280 | html("</body>\n</html>\n"); | 280 | html("</body>\n</html>\n"); |
281 | } | 281 | } |
282 | 282 | ||
283 | void cgit_print_pageheader(char *title, int show_search) | 283 | void cgit_print_pageheader(char *title, int show_search) |
284 | { | 284 | { |
285 | html("<table id='layout'>"); | 285 | html("<table id='layout'>"); |
286 | html("<tr><td id='header'><a href='"); | 286 | html("<tr><td id='header'><a href='"); |
287 | html_attr(cgit_rooturl()); | 287 | html_attr(cgit_rooturl()); |
288 | html("'>"); | 288 | html("'>"); |
289 | html_txt(cgit_root_title); | 289 | html_txt(cgit_root_title); |
290 | html("</a></td><td id='logo'>"); | 290 | html("</a></td><td id='logo'>"); |
291 | html("<a href='"); | 291 | html("<a href='"); |
292 | html_attr(cgit_logo_link); | 292 | html_attr(cgit_logo_link); |
293 | htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); | 293 | htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); |
294 | html("</td></tr>"); | 294 | html("</td></tr>"); |
295 | html("<tr><td id='crumb'>"); | 295 | html("<tr><td id='crumb'>"); |
296 | if (cgit_query_repo) { | 296 | if (cgit_query_repo) { |
297 | html_txt(cgit_repo->name); | 297 | html_txt(cgit_repo->name); |
298 | html(" ("); | 298 | html(" ("); |
299 | html_txt(cgit_query_head); | 299 | html_txt(cgit_query_head); |
300 | html(") : "); | 300 | html(") : "); |
301 | reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, | 301 | reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, |
302 | NULL, NULL); | 302 | NULL, NULL); |
303 | html(" "); | 303 | html(" "); |
304 | cgit_log_link("log", NULL, NULL, cgit_query_head, | 304 | cgit_log_link("log", NULL, NULL, cgit_query_head, |
305 | cgit_query_sha1, cgit_query_path); | 305 | cgit_query_sha1, cgit_query_path); |
306 | html(" "); | 306 | html(" "); |
307 | cgit_tree_link("tree", NULL, NULL, cgit_query_head, | 307 | cgit_tree_link("tree", NULL, NULL, cgit_query_head, |
308 | cgit_query_sha1, cgit_query_path); | 308 | cgit_query_sha1, NULL); |
309 | html(" "); | 309 | html(" "); |
310 | cgit_commit_link("commit", NULL, NULL, cgit_query_head, | 310 | cgit_commit_link("commit", NULL, NULL, cgit_query_head, |
311 | cgit_query_sha1); | 311 | cgit_query_sha1); |
312 | html(" "); | 312 | html(" "); |
313 | cgit_diff_link("diff", NULL, NULL, cgit_query_head, | 313 | cgit_diff_link("diff", NULL, NULL, cgit_query_head, |
314 | cgit_query_sha1, cgit_query_sha2, | 314 | cgit_query_sha1, cgit_query_sha2, |
315 | cgit_query_path); | 315 | cgit_query_path); |
316 | } else { | 316 | } else { |
317 | html_txt("Index of repositories"); | 317 | html_txt("Index of repositories"); |
318 | } | 318 | } |
319 | html("</td>"); | 319 | html("</td>"); |
320 | html("<td id='search'>"); | 320 | html("<td id='search'>"); |
321 | if (show_search) { | 321 | if (show_search) { |
322 | html("<form method='get' action='"); | 322 | html("<form method='get' action='"); |
323 | html_attr(cgit_currurl()); | 323 | html_attr(cgit_currurl()); |
324 | html("'>"); | 324 | html("'>"); |
325 | if (!cgit_virtual_root) { | 325 | if (!cgit_virtual_root) { |
326 | if (cgit_query_repo) | 326 | if (cgit_query_repo) |
327 | html_hidden("r", cgit_query_repo); | 327 | html_hidden("r", cgit_query_repo); |
328 | if (cgit_query_page) | 328 | if (cgit_query_page) |
329 | html_hidden("p", cgit_query_page); | 329 | html_hidden("p", cgit_query_page); |
330 | } | 330 | } |
331 | if (cgit_query_head) | 331 | if (cgit_query_head) |
332 | html_hidden("h", cgit_query_head); | 332 | html_hidden("h", cgit_query_head); |
333 | if (cgit_query_sha1) | 333 | if (cgit_query_sha1) |
334 | html_hidden("id", cgit_query_sha1); | 334 | html_hidden("id", cgit_query_sha1); |
335 | if (cgit_query_sha2) | 335 | if (cgit_query_sha2) |
336 | html_hidden("id2", cgit_query_sha2); | 336 | html_hidden("id2", cgit_query_sha2); |
337 | html("<input type='text' name='q' value='"); | 337 | html("<input type='text' name='q' value='"); |
338 | html_attr(cgit_query_search); | 338 | html_attr(cgit_query_search); |
339 | html("'/></form>"); | 339 | html("'/></form>"); |
340 | } | 340 | } |
341 | html("</td></tr>"); | 341 | html("</td></tr>"); |
342 | html("<tr><td id='content' colspan='2'>"); | 342 | html("<tr><td id='content' colspan='2'>"); |
343 | } | 343 | } |
344 | 344 | ||
345 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, | 345 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, |
346 | struct cacheitem *item) | 346 | struct cacheitem *item) |
347 | { | 347 | { |
348 | htmlf("Content-Type: %s\n", mimetype); | 348 | htmlf("Content-Type: %s\n", mimetype); |
349 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); | 349 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); |
350 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 350 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
351 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 351 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
352 | ttl_seconds(item->ttl))); | 352 | ttl_seconds(item->ttl))); |
353 | html("\n"); | 353 | html("\n"); |
354 | } | 354 | } |