-rw-r--r-- | ui-shared.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 197ee37..37c60b2 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -1,132 +1,147 @@ | |||
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 | #include "cmd.h" | 10 | #include "cmd.h" |
11 | #include "html.h" | 11 | #include "html.h" |
12 | 12 | ||
13 | const char cgit_doctype[] = | 13 | const char cgit_doctype[] = |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
16 | 16 | ||
17 | static char *http_date(time_t t) | 17 | static char *http_date(time_t t) |
18 | { | 18 | { |
19 | static char day[][4] = | 19 | static char day[][4] = |
20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
21 | static char month[][4] = | 21 | static char month[][4] = |
22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
24 | struct tm *tm = gmtime(&t); | 24 | struct tm *tm = gmtime(&t); |
25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], | 25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, | 26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
27 | tm->tm_hour, tm->tm_min, tm->tm_sec); | 27 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
28 | } | 28 | } |
29 | 29 | ||
30 | void cgit_print_error(char *msg) | 30 | void cgit_print_error(char *msg) |
31 | { | 31 | { |
32 | html("<div class='error'>"); | 32 | html("<div class='error'>"); |
33 | html_txt(msg); | 33 | html_txt(msg); |
34 | html("</div>\n"); | 34 | html("</div>\n"); |
35 | } | 35 | } |
36 | 36 | ||
37 | char *cgit_hosturl() | ||
38 | { | ||
39 | char *host, *port; | ||
40 | |||
41 | host = getenv("SERVER_NAME"); | ||
42 | if (!host) | ||
43 | return NULL; | ||
44 | port = getenv("SERVER_PORT"); | ||
45 | if (port && atoi(port) != 80) | ||
46 | host = xstrdup(fmt("%s:%d", host, atoi(port))); | ||
47 | else | ||
48 | host = xstrdup(host); | ||
49 | return host; | ||
50 | } | ||
51 | |||
37 | char *cgit_rooturl() | 52 | char *cgit_rooturl() |
38 | { | 53 | { |
39 | if (ctx.cfg.virtual_root) | 54 | if (ctx.cfg.virtual_root) |
40 | return fmt("%s/", ctx.cfg.virtual_root); | 55 | return fmt("%s/", ctx.cfg.virtual_root); |
41 | else | 56 | else |
42 | return ctx.cfg.script_name; | 57 | return ctx.cfg.script_name; |
43 | } | 58 | } |
44 | 59 | ||
45 | char *cgit_repourl(const char *reponame) | 60 | char *cgit_repourl(const char *reponame) |
46 | { | 61 | { |
47 | if (ctx.cfg.virtual_root) { | 62 | if (ctx.cfg.virtual_root) { |
48 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); | 63 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); |
49 | } else { | 64 | } else { |
50 | return fmt("?r=%s", reponame); | 65 | return fmt("?r=%s", reponame); |
51 | } | 66 | } |
52 | } | 67 | } |
53 | 68 | ||
54 | char *cgit_fileurl(const char *reponame, const char *pagename, | 69 | char *cgit_fileurl(const char *reponame, const char *pagename, |
55 | const char *filename, const char *query) | 70 | const char *filename, const char *query) |
56 | { | 71 | { |
57 | char *tmp; | 72 | char *tmp; |
58 | char *delim; | 73 | char *delim; |
59 | 74 | ||
60 | if (ctx.cfg.virtual_root) { | 75 | if (ctx.cfg.virtual_root) { |
61 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, | 76 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, |
62 | pagename, (filename ? filename:"")); | 77 | pagename, (filename ? filename:"")); |
63 | delim = "?"; | 78 | delim = "?"; |
64 | } else { | 79 | } else { |
65 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, | 80 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, |
66 | (filename ? filename : "")); | 81 | (filename ? filename : "")); |
67 | delim = "&"; | 82 | delim = "&"; |
68 | } | 83 | } |
69 | if (query) | 84 | if (query) |
70 | tmp = fmt("%s%s%s", tmp, delim, query); | 85 | tmp = fmt("%s%s%s", tmp, delim, query); |
71 | return tmp; | 86 | return tmp; |
72 | } | 87 | } |
73 | 88 | ||
74 | char *cgit_pageurl(const char *reponame, const char *pagename, | 89 | char *cgit_pageurl(const char *reponame, const char *pagename, |
75 | const char *query) | 90 | const char *query) |
76 | { | 91 | { |
77 | return cgit_fileurl(reponame,pagename,0,query); | 92 | return cgit_fileurl(reponame,pagename,0,query); |
78 | } | 93 | } |
79 | 94 | ||
80 | const char *cgit_repobasename(const char *reponame) | 95 | const char *cgit_repobasename(const char *reponame) |
81 | { | 96 | { |
82 | /* I assume we don't need to store more than one repo basename */ | 97 | /* I assume we don't need to store more than one repo basename */ |
83 | static char rvbuf[1024]; | 98 | static char rvbuf[1024]; |
84 | int p; | 99 | int p; |
85 | const char *rv; | 100 | const char *rv; |
86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); | 101 | strncpy(rvbuf,reponame,sizeof(rvbuf)); |
87 | if(rvbuf[sizeof(rvbuf)-1]) | 102 | if(rvbuf[sizeof(rvbuf)-1]) |
88 | die("cgit_repobasename: truncated repository name '%s'", reponame); | 103 | die("cgit_repobasename: truncated repository name '%s'", reponame); |
89 | p = strlen(rvbuf)-1; | 104 | p = strlen(rvbuf)-1; |
90 | /* strip trailing slashes */ | 105 | /* strip trailing slashes */ |
91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; | 106 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; |
92 | /* strip trailing .git */ | 107 | /* strip trailing .git */ |
93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { | 108 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { |
94 | p -= 3; rvbuf[p--] = 0; | 109 | p -= 3; rvbuf[p--] = 0; |
95 | } | 110 | } |
96 | /* strip more trailing slashes if any */ | 111 | /* strip more trailing slashes if any */ |
97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; | 112 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; |
98 | /* find last slash in the remaining string */ | 113 | /* find last slash in the remaining string */ |
99 | rv = strrchr(rvbuf,'/'); | 114 | rv = strrchr(rvbuf,'/'); |
100 | if(rv) | 115 | if(rv) |
101 | return ++rv; | 116 | return ++rv; |
102 | return rvbuf; | 117 | return rvbuf; |
103 | } | 118 | } |
104 | 119 | ||
105 | char *cgit_currurl() | 120 | char *cgit_currurl() |
106 | { | 121 | { |
107 | if (!ctx.cfg.virtual_root) | 122 | if (!ctx.cfg.virtual_root) |
108 | return ctx.cfg.script_name; | 123 | return ctx.cfg.script_name; |
109 | else if (ctx.qry.page) | 124 | else if (ctx.qry.page) |
110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); | 125 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); |
111 | else if (ctx.qry.repo) | 126 | else if (ctx.qry.repo) |
112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); | 127 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); |
113 | else | 128 | else |
114 | return fmt("%s/", ctx.cfg.virtual_root); | 129 | return fmt("%s/", ctx.cfg.virtual_root); |
115 | } | 130 | } |
116 | 131 | ||
117 | static void site_url(char *page, char *search, int ofs) | 132 | static void site_url(char *page, char *search, int ofs) |
118 | { | 133 | { |
119 | char *delim = "?"; | 134 | char *delim = "?"; |
120 | 135 | ||
121 | if (ctx.cfg.virtual_root) { | 136 | if (ctx.cfg.virtual_root) { |
122 | html_attr(ctx.cfg.virtual_root); | 137 | html_attr(ctx.cfg.virtual_root); |
123 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 138 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
124 | html("/"); | 139 | html("/"); |
125 | } else | 140 | } else |
126 | html(ctx.cfg.script_name); | 141 | html(ctx.cfg.script_name); |
127 | 142 | ||
128 | if (page) { | 143 | if (page) { |
129 | htmlf("?p=%s", page); | 144 | htmlf("?p=%s", page); |
130 | delim = "&"; | 145 | delim = "&"; |
131 | } | 146 | } |
132 | if (search) { | 147 | if (search) { |
@@ -335,209 +350,217 @@ void cgit_object_link(struct object *obj) | |||
335 | ctx.qry.head, sha1_to_hex(obj->sha1)); | 350 | ctx.qry.head, sha1_to_hex(obj->sha1)); |
336 | return; | 351 | return; |
337 | } else if (obj->type == OBJ_TREE) { | 352 | } else if (obj->type == OBJ_TREE) { |
338 | page = "tree"; | 353 | page = "tree"; |
339 | arg = "id"; | 354 | arg = "id"; |
340 | } else if (obj->type == OBJ_TAG) { | 355 | } else if (obj->type == OBJ_TAG) { |
341 | page = "tag"; | 356 | page = "tag"; |
342 | arg = "id"; | 357 | arg = "id"; |
343 | } else { | 358 | } else { |
344 | page = "blob"; | 359 | page = "blob"; |
345 | arg = "id"; | 360 | arg = "id"; |
346 | } | 361 | } |
347 | 362 | ||
348 | url = cgit_pageurl(ctx.qry.repo, page, | 363 | url = cgit_pageurl(ctx.qry.repo, page, |
349 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); | 364 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); |
350 | html_link_open(url, NULL, NULL); | 365 | html_link_open(url, NULL, NULL); |
351 | htmlf("%s %s", typename(obj->type), | 366 | htmlf("%s %s", typename(obj->type), |
352 | sha1_to_hex(obj->sha1)); | 367 | sha1_to_hex(obj->sha1)); |
353 | html_link_close(); | 368 | html_link_close(); |
354 | } | 369 | } |
355 | 370 | ||
356 | void cgit_print_date(time_t secs, char *format, int local_time) | 371 | void cgit_print_date(time_t secs, char *format, int local_time) |
357 | { | 372 | { |
358 | char buf[64]; | 373 | char buf[64]; |
359 | struct tm *time; | 374 | struct tm *time; |
360 | 375 | ||
361 | if (!secs) | 376 | if (!secs) |
362 | return; | 377 | return; |
363 | if(local_time) | 378 | if(local_time) |
364 | time = localtime(&secs); | 379 | time = localtime(&secs); |
365 | else | 380 | else |
366 | time = gmtime(&secs); | 381 | time = gmtime(&secs); |
367 | strftime(buf, sizeof(buf)-1, format, time); | 382 | strftime(buf, sizeof(buf)-1, format, time); |
368 | html_txt(buf); | 383 | html_txt(buf); |
369 | } | 384 | } |
370 | 385 | ||
371 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 386 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
372 | { | 387 | { |
373 | time_t now, secs; | 388 | time_t now, secs; |
374 | 389 | ||
375 | if (!t) | 390 | if (!t) |
376 | return; | 391 | return; |
377 | time(&now); | 392 | time(&now); |
378 | secs = now - t; | 393 | secs = now - t; |
379 | 394 | ||
380 | if (secs > max_relative && max_relative >= 0) { | 395 | if (secs > max_relative && max_relative >= 0) { |
381 | cgit_print_date(t, format, ctx.cfg.local_time); | 396 | cgit_print_date(t, format, ctx.cfg.local_time); |
382 | return; | 397 | return; |
383 | } | 398 | } |
384 | 399 | ||
385 | if (secs < TM_HOUR * 2) { | 400 | if (secs < TM_HOUR * 2) { |
386 | htmlf("<span class='age-mins'>%.0f min.</span>", | 401 | htmlf("<span class='age-mins'>%.0f min.</span>", |
387 | secs * 1.0 / TM_MIN); | 402 | secs * 1.0 / TM_MIN); |
388 | return; | 403 | return; |
389 | } | 404 | } |
390 | if (secs < TM_DAY * 2) { | 405 | if (secs < TM_DAY * 2) { |
391 | htmlf("<span class='age-hours'>%.0f hours</span>", | 406 | htmlf("<span class='age-hours'>%.0f hours</span>", |
392 | secs * 1.0 / TM_HOUR); | 407 | secs * 1.0 / TM_HOUR); |
393 | return; | 408 | return; |
394 | } | 409 | } |
395 | if (secs < TM_WEEK * 2) { | 410 | if (secs < TM_WEEK * 2) { |
396 | htmlf("<span class='age-days'>%.0f days</span>", | 411 | htmlf("<span class='age-days'>%.0f days</span>", |
397 | secs * 1.0 / TM_DAY); | 412 | secs * 1.0 / TM_DAY); |
398 | return; | 413 | return; |
399 | } | 414 | } |
400 | if (secs < TM_MONTH * 2) { | 415 | if (secs < TM_MONTH * 2) { |
401 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 416 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
402 | secs * 1.0 / TM_WEEK); | 417 | secs * 1.0 / TM_WEEK); |
403 | return; | 418 | return; |
404 | } | 419 | } |
405 | if (secs < TM_YEAR * 2) { | 420 | if (secs < TM_YEAR * 2) { |
406 | htmlf("<span class='age-months'>%.0f months</span>", | 421 | htmlf("<span class='age-months'>%.0f months</span>", |
407 | secs * 1.0 / TM_MONTH); | 422 | secs * 1.0 / TM_MONTH); |
408 | return; | 423 | return; |
409 | } | 424 | } |
410 | htmlf("<span class='age-years'>%.0f years</span>", | 425 | htmlf("<span class='age-years'>%.0f years</span>", |
411 | secs * 1.0 / TM_YEAR); | 426 | secs * 1.0 / TM_YEAR); |
412 | } | 427 | } |
413 | 428 | ||
414 | void cgit_print_http_headers(struct cgit_context *ctx) | 429 | void cgit_print_http_headers(struct cgit_context *ctx) |
415 | { | 430 | { |
416 | if (ctx->page.mimetype && ctx->page.charset) | 431 | if (ctx->page.mimetype && ctx->page.charset) |
417 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, | 432 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, |
418 | ctx->page.charset); | 433 | ctx->page.charset); |
419 | else if (ctx->page.mimetype) | 434 | else if (ctx->page.mimetype) |
420 | htmlf("Content-Type: %s\n", ctx->page.mimetype); | 435 | htmlf("Content-Type: %s\n", ctx->page.mimetype); |
421 | if (ctx->page.filename) | 436 | if (ctx->page.filename) |
422 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", | 437 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", |
423 | ctx->page.filename); | 438 | ctx->page.filename); |
424 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); | 439 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); |
425 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); | 440 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); |
426 | html("\n"); | 441 | html("\n"); |
427 | } | 442 | } |
428 | 443 | ||
429 | void cgit_print_docstart(struct cgit_context *ctx) | 444 | void cgit_print_docstart(struct cgit_context *ctx) |
430 | { | 445 | { |
446 | char *host = cgit_hosturl(); | ||
431 | html(cgit_doctype); | 447 | html(cgit_doctype); |
432 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 448 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
433 | html("<head>\n"); | 449 | html("<head>\n"); |
434 | html("<title>"); | 450 | html("<title>"); |
435 | html_txt(ctx->page.title); | 451 | html_txt(ctx->page.title); |
436 | html("</title>\n"); | 452 | html("</title>\n"); |
437 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 453 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
438 | if (ctx->cfg.robots && *ctx->cfg.robots) | 454 | if (ctx->cfg.robots && *ctx->cfg.robots) |
439 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); | 455 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); |
440 | html("<link rel='stylesheet' type='text/css' href='"); | 456 | html("<link rel='stylesheet' type='text/css' href='"); |
441 | html_attr(ctx->cfg.css); | 457 | html_attr(ctx->cfg.css); |
442 | html("'/>\n"); | 458 | html("'/>\n"); |
443 | if (ctx->cfg.favicon) { | 459 | if (ctx->cfg.favicon) { |
444 | html("<link rel='shortcut icon' href='"); | 460 | html("<link rel='shortcut icon' href='"); |
445 | html_attr(ctx->cfg.favicon); | 461 | html_attr(ctx->cfg.favicon); |
446 | html("'/>\n"); | 462 | html("'/>\n"); |
447 | } | 463 | } |
464 | if (host && ctx->repo) { | ||
465 | html("<link rel='alternate' title='Atom feed' href='http://"); | ||
466 | html_attr(cgit_hosturl()); | ||
467 | html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path, | ||
468 | fmt("h=%s", ctx->qry.head))); | ||
469 | html("' type='application/atom+xml'/>"); | ||
470 | } | ||
448 | html("</head>\n"); | 471 | html("</head>\n"); |
449 | html("<body>\n"); | 472 | html("<body>\n"); |
450 | } | 473 | } |
451 | 474 | ||
452 | void cgit_print_docend() | 475 | void cgit_print_docend() |
453 | { | 476 | { |
454 | html("</div>"); | 477 | html("</div>"); |
455 | if (ctx.cfg.footer) | 478 | if (ctx.cfg.footer) |
456 | html_include(ctx.cfg.footer); | 479 | html_include(ctx.cfg.footer); |
457 | else { | 480 | else { |
458 | html("<div class='footer'>generated "); | 481 | html("<div class='footer'>generated "); |
459 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); | 482 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); |
460 | htmlf(" by cgit %s", cgit_version); | 483 | htmlf(" by cgit %s", cgit_version); |
461 | html("</div>\n"); | 484 | html("</div>\n"); |
462 | } | 485 | } |
463 | html("</body>\n</html>\n"); | 486 | html("</body>\n</html>\n"); |
464 | } | 487 | } |
465 | 488 | ||
466 | int print_branch_option(const char *refname, const unsigned char *sha1, | 489 | int print_branch_option(const char *refname, const unsigned char *sha1, |
467 | int flags, void *cb_data) | 490 | int flags, void *cb_data) |
468 | { | 491 | { |
469 | char *name = (char *)refname; | 492 | char *name = (char *)refname; |
470 | html_option(name, name, ctx.qry.head); | 493 | html_option(name, name, ctx.qry.head); |
471 | return 0; | 494 | return 0; |
472 | } | 495 | } |
473 | 496 | ||
474 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 497 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
475 | int flags, void *cb_data) | 498 | int flags, void *cb_data) |
476 | { | 499 | { |
477 | struct tag *tag; | 500 | struct tag *tag; |
478 | struct taginfo *info; | 501 | struct taginfo *info; |
479 | struct object *obj; | 502 | struct object *obj; |
480 | char buf[256], *url; | 503 | char buf[256], *url; |
481 | unsigned char fileid[20]; | 504 | unsigned char fileid[20]; |
482 | int *header = (int *)cb_data; | 505 | int *header = (int *)cb_data; |
483 | 506 | ||
484 | if (prefixcmp(refname, "refs/archives")) | 507 | if (prefixcmp(refname, "refs/archives")) |
485 | return 0; | 508 | return 0; |
486 | strncpy(buf, refname+14, sizeof(buf)); | 509 | strncpy(buf, refname+14, sizeof(buf)); |
487 | obj = parse_object(sha1); | 510 | obj = parse_object(sha1); |
488 | if (!obj) | 511 | if (!obj) |
489 | return 1; | 512 | return 1; |
490 | if (obj->type == OBJ_TAG) { | 513 | if (obj->type == OBJ_TAG) { |
491 | tag = lookup_tag(sha1); | 514 | tag = lookup_tag(sha1); |
492 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 515 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
493 | return 0; | 516 | return 0; |
494 | hashcpy(fileid, tag->tagged->sha1); | 517 | hashcpy(fileid, tag->tagged->sha1); |
495 | } else if (obj->type != OBJ_BLOB) { | 518 | } else if (obj->type != OBJ_BLOB) { |
496 | return 0; | 519 | return 0; |
497 | } else { | 520 | } else { |
498 | hashcpy(fileid, sha1); | 521 | hashcpy(fileid, sha1); |
499 | } | 522 | } |
500 | if (!*header) { | 523 | if (!*header) { |
501 | html("<h1>download</h1>\n"); | 524 | html("<h1>download</h1>\n"); |
502 | *header = 1; | 525 | *header = 1; |
503 | } | 526 | } |
504 | url = cgit_pageurl(ctx.qry.repo, "blob", | 527 | url = cgit_pageurl(ctx.qry.repo, "blob", |
505 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 528 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
506 | buf)); | 529 | buf)); |
507 | html_link_open(url, NULL, "menu"); | 530 | html_link_open(url, NULL, "menu"); |
508 | html_txt(strlpart(buf, 20)); | 531 | html_txt(strlpart(buf, 20)); |
509 | html_link_close(); | 532 | html_link_close(); |
510 | return 0; | 533 | return 0; |
511 | } | 534 | } |
512 | 535 | ||
513 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 536 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
514 | { | 537 | { |
515 | char *url; | 538 | char *url; |
516 | 539 | ||
517 | if (!ctx.cfg.virtual_root) { | 540 | if (!ctx.cfg.virtual_root) { |
518 | url = fmt("%s/%s", ctx.qry.repo, page); | 541 | url = fmt("%s/%s", ctx.qry.repo, page); |
519 | if (ctx.qry.path) | 542 | if (ctx.qry.path) |
520 | url = fmt("%s/%s", url, ctx.qry.path); | 543 | url = fmt("%s/%s", url, ctx.qry.path); |
521 | html_hidden("url", url); | 544 | html_hidden("url", url); |
522 | } | 545 | } |
523 | 546 | ||
524 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && | 547 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && |
525 | strcmp(ctx.qry.head, ctx.repo->defbranch)) | 548 | strcmp(ctx.qry.head, ctx.repo->defbranch)) |
526 | html_hidden("h", ctx.qry.head); | 549 | html_hidden("h", ctx.qry.head); |
527 | 550 | ||
528 | if (ctx.qry.sha1) | 551 | if (ctx.qry.sha1) |
529 | html_hidden("id", ctx.qry.sha1); | 552 | html_hidden("id", ctx.qry.sha1); |
530 | if (ctx.qry.sha2) | 553 | if (ctx.qry.sha2) |
531 | html_hidden("id2", ctx.qry.sha2); | 554 | html_hidden("id2", ctx.qry.sha2); |
532 | 555 | ||
533 | if (incl_search) { | 556 | if (incl_search) { |
534 | if (ctx.qry.grep) | 557 | if (ctx.qry.grep) |
535 | html_hidden("qt", ctx.qry.grep); | 558 | html_hidden("qt", ctx.qry.grep); |
536 | if (ctx.qry.search) | 559 | if (ctx.qry.search) |
537 | html_hidden("q", ctx.qry.search); | 560 | html_hidden("q", ctx.qry.search); |
538 | } | 561 | } |
539 | } | 562 | } |
540 | 563 | ||
541 | char *hc(struct cgit_cmd *cmd, const char *page) | 564 | char *hc(struct cgit_cmd *cmd, const char *page) |
542 | { | 565 | { |
543 | return (strcmp(cmd->name, page) ? NULL : "active"); | 566 | return (strcmp(cmd->name, page) ? NULL : "active"); |