-rw-r--r-- | ui-shared.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index d5c4c10..372b9e7 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -298,60 +298,61 @@ void cgit_log_link(const char *name, const char *title, const char *class, | |||
298 | html(delim); | 298 | html(delim); |
299 | html("qt="); | 299 | html("qt="); |
300 | html_url_arg(grep); | 300 | html_url_arg(grep); |
301 | delim = "&"; | 301 | delim = "&"; |
302 | html(delim); | 302 | html(delim); |
303 | html("q="); | 303 | html("q="); |
304 | html_url_arg(pattern); | 304 | html_url_arg(pattern); |
305 | } | 305 | } |
306 | if (ofs > 0) { | 306 | if (ofs > 0) { |
307 | html(delim); | 307 | html(delim); |
308 | html("ofs="); | 308 | html("ofs="); |
309 | htmlf("%d", ofs); | 309 | htmlf("%d", ofs); |
310 | delim = "&"; | 310 | delim = "&"; |
311 | } | 311 | } |
312 | if (showmsg) { | 312 | if (showmsg) { |
313 | html(delim); | 313 | html(delim); |
314 | html("showmsg=1"); | 314 | html("showmsg=1"); |
315 | } | 315 | } |
316 | html("'>"); | 316 | html("'>"); |
317 | html_txt(name); | 317 | html_txt(name); |
318 | html("</a>"); | 318 | html("</a>"); |
319 | } | 319 | } |
320 | 320 | ||
321 | void cgit_commit_link(char *name, const char *title, const char *class, | 321 | void cgit_commit_link(char *name, const char *title, const char *class, |
322 | const char *head, const char *rev, int toggle_ssdiff) | 322 | const char *head, const char *rev, const char *path, |
323 | int toggle_ssdiff) | ||
323 | { | 324 | { |
324 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 325 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
325 | name[ctx.cfg.max_msg_len] = '\0'; | 326 | name[ctx.cfg.max_msg_len] = '\0'; |
326 | name[ctx.cfg.max_msg_len - 1] = '.'; | 327 | name[ctx.cfg.max_msg_len - 1] = '.'; |
327 | name[ctx.cfg.max_msg_len - 2] = '.'; | 328 | name[ctx.cfg.max_msg_len - 2] = '.'; |
328 | name[ctx.cfg.max_msg_len - 3] = '.'; | 329 | name[ctx.cfg.max_msg_len - 3] = '.'; |
329 | } | 330 | } |
330 | 331 | ||
331 | char *delim; | 332 | char *delim; |
332 | 333 | ||
333 | delim = repolink(title, class, "commit", head, NULL); | 334 | delim = repolink(title, class, "commit", head, path); |
334 | if (rev && strcmp(rev, ctx.qry.head)) { | 335 | if (rev && strcmp(rev, ctx.qry.head)) { |
335 | html(delim); | 336 | html(delim); |
336 | html("id="); | 337 | html("id="); |
337 | html_url_arg(rev); | 338 | html_url_arg(rev); |
338 | delim = "&"; | 339 | delim = "&"; |
339 | } | 340 | } |
340 | if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) { | 341 | if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) { |
341 | html(delim); | 342 | html(delim); |
342 | html("ss=1"); | 343 | html("ss=1"); |
343 | } | 344 | } |
344 | html("'>"); | 345 | html("'>"); |
345 | html_txt(name); | 346 | html_txt(name); |
346 | html("</a>"); | 347 | html("</a>"); |
347 | } | 348 | } |
348 | 349 | ||
349 | void cgit_refs_link(const char *name, const char *title, const char *class, | 350 | void cgit_refs_link(const char *name, const char *title, const char *class, |
350 | const char *head, const char *rev, const char *path) | 351 | const char *head, const char *rev, const char *path) |
351 | { | 352 | { |
352 | reporevlink("refs", name, title, class, head, rev, path); | 353 | reporevlink("refs", name, title, class, head, rev, path); |
353 | } | 354 | } |
354 | 355 | ||
355 | void cgit_snapshot_link(const char *name, const char *title, const char *class, | 356 | void cgit_snapshot_link(const char *name, const char *title, const char *class, |
356 | const char *head, const char *rev, | 357 | const char *head, const char *rev, |
357 | const char *archivename) | 358 | const char *archivename) |
@@ -445,49 +446,49 @@ void cgit_self_link(char *name, const char *title, const char *class, | |||
445 | ctx->qry.sha1, ctx->qry.sha2, | 446 | ctx->qry.sha1, ctx->qry.sha2, |
446 | ctx->qry.path, 0); | 447 | ctx->qry.path, 0); |
447 | else if (!strcmp(ctx->qry.page, "stats")) | 448 | else if (!strcmp(ctx->qry.page, "stats")) |
448 | return cgit_stats_link(name, title, class, ctx->qry.head, | 449 | return cgit_stats_link(name, title, class, ctx->qry.head, |
449 | ctx->qry.path); | 450 | ctx->qry.path); |
450 | 451 | ||
451 | /* Don't known how to make link for this page */ | 452 | /* Don't known how to make link for this page */ |
452 | repolink(title, class, ctx->qry.page, ctx->qry.head, ctx->qry.path); | 453 | repolink(title, class, ctx->qry.page, ctx->qry.head, ctx->qry.path); |
453 | html("><!-- cgit_self_link() doesn't know how to make link for page '"); | 454 | html("><!-- cgit_self_link() doesn't know how to make link for page '"); |
454 | html_txt(ctx->qry.page); | 455 | html_txt(ctx->qry.page); |
455 | html("' -->"); | 456 | html("' -->"); |
456 | html_txt(name); | 457 | html_txt(name); |
457 | html("</a>"); | 458 | html("</a>"); |
458 | } | 459 | } |
459 | 460 | ||
460 | void cgit_object_link(struct object *obj) | 461 | void cgit_object_link(struct object *obj) |
461 | { | 462 | { |
462 | char *page, *shortrev, *fullrev, *name; | 463 | char *page, *shortrev, *fullrev, *name; |
463 | 464 | ||
464 | fullrev = sha1_to_hex(obj->sha1); | 465 | fullrev = sha1_to_hex(obj->sha1); |
465 | shortrev = xstrdup(fullrev); | 466 | shortrev = xstrdup(fullrev); |
466 | shortrev[10] = '\0'; | 467 | shortrev[10] = '\0'; |
467 | if (obj->type == OBJ_COMMIT) { | 468 | if (obj->type == OBJ_COMMIT) { |
468 | cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL, | 469 | cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL, |
469 | ctx.qry.head, fullrev, 0); | 470 | ctx.qry.head, fullrev, NULL, 0); |
470 | return; | 471 | return; |
471 | } else if (obj->type == OBJ_TREE) | 472 | } else if (obj->type == OBJ_TREE) |
472 | page = "tree"; | 473 | page = "tree"; |
473 | else if (obj->type == OBJ_TAG) | 474 | else if (obj->type == OBJ_TAG) |
474 | page = "tag"; | 475 | page = "tag"; |
475 | else | 476 | else |
476 | page = "blob"; | 477 | page = "blob"; |
477 | name = fmt("%s %s...", typename(obj->type), shortrev); | 478 | name = fmt("%s %s...", typename(obj->type), shortrev); |
478 | reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL); | 479 | reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL); |
479 | } | 480 | } |
480 | 481 | ||
481 | void cgit_print_date(time_t secs, const char *format, int local_time) | 482 | void cgit_print_date(time_t secs, const char *format, int local_time) |
482 | { | 483 | { |
483 | char buf[64]; | 484 | char buf[64]; |
484 | struct tm *time; | 485 | struct tm *time; |
485 | 486 | ||
486 | if (!secs) | 487 | if (!secs) |
487 | return; | 488 | return; |
488 | if(local_time) | 489 | if(local_time) |
489 | time = localtime(&secs); | 490 | time = localtime(&secs); |
490 | else | 491 | else |
491 | time = gmtime(&secs); | 492 | time = gmtime(&secs); |
492 | strftime(buf, sizeof(buf)-1, format, time); | 493 | strftime(buf, sizeof(buf)-1, format, time); |
493 | html_txt(buf); | 494 | html_txt(buf); |
@@ -772,49 +773,49 @@ static void print_header(struct cgit_context *ctx) | |||
772 | html_txt(ctx->cfg.root_desc); | 773 | html_txt(ctx->cfg.root_desc); |
773 | else if (ctx->cfg.index_info) | 774 | else if (ctx->cfg.index_info) |
774 | html_include(ctx->cfg.index_info); | 775 | html_include(ctx->cfg.index_info); |
775 | } | 776 | } |
776 | html("</td></tr></table>\n"); | 777 | html("</td></tr></table>\n"); |
777 | } | 778 | } |
778 | 779 | ||
779 | void cgit_print_pageheader(struct cgit_context *ctx) | 780 | void cgit_print_pageheader(struct cgit_context *ctx) |
780 | { | 781 | { |
781 | html("<div id='cgit'>"); | 782 | html("<div id='cgit'>"); |
782 | if (!ctx->cfg.noheader) | 783 | if (!ctx->cfg.noheader) |
783 | print_header(ctx); | 784 | print_header(ctx); |
784 | 785 | ||
785 | html("<table class='tabs'><tr><td>\n"); | 786 | html("<table class='tabs'><tr><td>\n"); |
786 | if (ctx->repo) { | 787 | if (ctx->repo) { |
787 | cgit_summary_link("summary", NULL, hc(ctx, "summary"), | 788 | cgit_summary_link("summary", NULL, hc(ctx, "summary"), |
788 | ctx->qry.head); | 789 | ctx->qry.head); |
789 | cgit_refs_link("refs", NULL, hc(ctx, "refs"), ctx->qry.head, | 790 | cgit_refs_link("refs", NULL, hc(ctx, "refs"), ctx->qry.head, |
790 | ctx->qry.sha1, NULL); | 791 | ctx->qry.sha1, NULL); |
791 | cgit_log_link("log", NULL, hc(ctx, "log"), ctx->qry.head, | 792 | cgit_log_link("log", NULL, hc(ctx, "log"), ctx->qry.head, |
792 | NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg); | 793 | NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg); |
793 | cgit_tree_link("tree", NULL, hc(ctx, "tree"), ctx->qry.head, | 794 | cgit_tree_link("tree", NULL, hc(ctx, "tree"), ctx->qry.head, |
794 | ctx->qry.sha1, NULL); | 795 | ctx->qry.sha1, NULL); |
795 | cgit_commit_link("commit", NULL, hc(ctx, "commit"), | 796 | cgit_commit_link("commit", NULL, hc(ctx, "commit"), |
796 | ctx->qry.head, ctx->qry.sha1, 0); | 797 | ctx->qry.head, ctx->qry.sha1, NULL, 0); |
797 | cgit_diff_link("diff", NULL, hc(ctx, "diff"), ctx->qry.head, | 798 | cgit_diff_link("diff", NULL, hc(ctx, "diff"), ctx->qry.head, |
798 | ctx->qry.sha1, ctx->qry.sha2, NULL, 0); | 799 | ctx->qry.sha1, ctx->qry.sha2, NULL, 0); |
799 | if (ctx->repo->max_stats) | 800 | if (ctx->repo->max_stats) |
800 | cgit_stats_link("stats", NULL, hc(ctx, "stats"), | 801 | cgit_stats_link("stats", NULL, hc(ctx, "stats"), |
801 | ctx->qry.head, NULL); | 802 | ctx->qry.head, NULL); |
802 | if (ctx->repo->readme) | 803 | if (ctx->repo->readme) |
803 | reporevlink("about", "about", NULL, | 804 | reporevlink("about", "about", NULL, |
804 | hc(ctx, "about"), ctx->qry.head, NULL, | 805 | hc(ctx, "about"), ctx->qry.head, NULL, |
805 | NULL); | 806 | NULL); |
806 | html("</td><td class='form'>"); | 807 | html("</td><td class='form'>"); |
807 | html("<form class='right' method='get' action='"); | 808 | html("<form class='right' method='get' action='"); |
808 | if (ctx->cfg.virtual_root) | 809 | if (ctx->cfg.virtual_root) |
809 | html_url_path(cgit_fileurl(ctx->qry.repo, "log", | 810 | html_url_path(cgit_fileurl(ctx->qry.repo, "log", |
810 | ctx->qry.vpath, NULL)); | 811 | ctx->qry.vpath, NULL)); |
811 | html("'>\n"); | 812 | html("'>\n"); |
812 | cgit_add_hidden_formfields(1, 0, "log"); | 813 | cgit_add_hidden_formfields(1, 0, "log"); |
813 | html("<select name='qt'>\n"); | 814 | html("<select name='qt'>\n"); |
814 | html_option("grep", "log msg", ctx->qry.grep); | 815 | html_option("grep", "log msg", ctx->qry.grep); |
815 | html_option("author", "author", ctx->qry.grep); | 816 | html_option("author", "author", ctx->qry.grep); |
816 | html_option("committer", "committer", ctx->qry.grep); | 817 | html_option("committer", "committer", ctx->qry.grep); |
817 | html("</select>\n"); | 818 | html("</select>\n"); |
818 | html("<input class='txt' type='text' size='10' name='q' value='"); | 819 | html("<input class='txt' type='text' size='10' name='q' value='"); |
819 | html_attr(ctx->qry.search); | 820 | html_attr(ctx->qry.search); |
820 | html("'/>\n"); | 821 | html("'/>\n"); |