diff options
Diffstat (limited to 'ui-commit.c')
| -rw-r--r-- | ui-commit.c | 46 |
1 files changed, 37 insertions, 9 deletions
diff --git a/ui-commit.c b/ui-commit.c index f5b0ae5..2b4f677 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
| @@ -12,13 +12,14 @@ | |||
| 12 | #include "ui-diff.h" | 12 | #include "ui-diff.h" |
| 13 | #include "ui-log.h" | 13 | #include "ui-log.h" |
| 14 | 14 | ||
| 15 | void cgit_print_commit(char *hex) | 15 | void cgit_print_commit(char *hex, const char *prefix) |
| 16 | { | 16 | { |
| 17 | struct commit *commit, *parent; | 17 | struct commit *commit, *parent; |
| 18 | struct commitinfo *info; | 18 | struct commitinfo *info, *parent_info; |
| 19 | struct commit_list *p; | 19 | struct commit_list *p; |
| 20 | struct strbuf notes = STRBUF_INIT; | ||
| 20 | unsigned char sha1[20]; | 21 | unsigned char sha1[20]; |
| 21 | char *tmp; | 22 | char *tmp, *tmp2; |
| 22 | int parents = 0; | 23 | int parents = 0; |
| 23 | 24 | ||
| 24 | if (!hex) | 25 | if (!hex) |
| @@ -35,6 +36,8 @@ void cgit_print_commit(char *hex) | |||
| 35 | } | 36 | } |
| 36 | info = cgit_parse_commit(commit); | 37 | info = cgit_parse_commit(commit); |
| 37 | 38 | ||
| 39 | format_note(NULL, sha1, ¬es, PAGE_ENCODING, 0); | ||
| 40 | |||
| 38 | load_ref_decorations(DECORATE_FULL_REFS); | 41 | load_ref_decorations(DECORATE_FULL_REFS); |
| 39 | 42 | ||
| 40 | html("<table summary='commit info' class='commit-info'>\n"); | 43 | html("<table summary='commit info' class='commit-info'>\n"); |
| @@ -58,14 +61,23 @@ void cgit_print_commit(char *hex) | |||
| 58 | html("</td></tr>\n"); | 61 | html("</td></tr>\n"); |
| 59 | html("<tr><th>commit</th><td colspan='2' class='sha1'>"); | 62 | html("<tr><th>commit</th><td colspan='2' class='sha1'>"); |
| 60 | tmp = sha1_to_hex(commit->object.sha1); | 63 | tmp = sha1_to_hex(commit->object.sha1); |
| 61 | cgit_commit_link(tmp, NULL, NULL, ctx.qry.head, tmp); | 64 | cgit_commit_link(tmp, NULL, NULL, ctx.qry.head, tmp, prefix, 0); |
| 62 | html(" ("); | 65 | html(" ("); |
| 63 | cgit_patch_link("patch", NULL, NULL, NULL, tmp); | 66 | cgit_patch_link("patch", NULL, NULL, NULL, tmp, prefix); |
| 67 | html(") ("); | ||
| 68 | if ((ctx.qry.ssdiff && !ctx.cfg.ssdiff) || (!ctx.qry.ssdiff && ctx.cfg.ssdiff)) | ||
| 69 | cgit_commit_link("unidiff", NULL, NULL, ctx.qry.head, tmp, prefix, 1); | ||
| 70 | else | ||
| 71 | cgit_commit_link("side-by-side diff", NULL, NULL, ctx.qry.head, tmp, prefix, 1); | ||
| 64 | html(")</td></tr>\n"); | 72 | html(")</td></tr>\n"); |
| 65 | html("<tr><th>tree</th><td colspan='2' class='sha1'>"); | 73 | html("<tr><th>tree</th><td colspan='2' class='sha1'>"); |
| 66 | tmp = xstrdup(hex); | 74 | tmp = xstrdup(hex); |
| 67 | cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL, | 75 | cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL, |
| 68 | ctx.qry.head, tmp, NULL); | 76 | ctx.qry.head, tmp, NULL); |
| 77 | if (prefix) { | ||
| 78 | html(" /"); | ||
| 79 | cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix); | ||
| 80 | } | ||
| 69 | html("</td></tr>\n"); | 81 | html("</td></tr>\n"); |
| 70 | for (p = commit->parents; p ; p = p->next) { | 82 | for (p = commit->parents; p ; p = p->next) { |
| 71 | parent = lookup_commit_reference(p->item->object.sha1); | 83 | parent = lookup_commit_reference(p->item->object.sha1); |
| @@ -77,11 +89,15 @@ void cgit_print_commit(char *hex) | |||
| 77 | } | 89 | } |
| 78 | html("<tr><th>parent</th>" | 90 | html("<tr><th>parent</th>" |
| 79 | "<td colspan='2' class='sha1'>"); | 91 | "<td colspan='2' class='sha1'>"); |
| 80 | cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL, | 92 | tmp = tmp2 = sha1_to_hex(p->item->object.sha1); |
| 81 | ctx.qry.head, sha1_to_hex(p->item->object.sha1)); | 93 | if (ctx.repo->enable_subject_links) { |
| 94 | parent_info = cgit_parse_commit(parent); | ||
| 95 | tmp2 = parent_info->subject; | ||
| 96 | } | ||
| 97 | cgit_commit_link(tmp2, NULL, NULL, ctx.qry.head, tmp, prefix, 0); | ||
| 82 | html(" ("); | 98 | html(" ("); |
| 83 | cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex, | 99 | cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex, |
| 84 | sha1_to_hex(p->item->object.sha1), NULL); | 100 | sha1_to_hex(p->item->object.sha1), prefix, 0); |
| 85 | html(")</td></tr>"); | 101 | html(")</td></tr>"); |
| 86 | parents++; | 102 | parents++; |
| 87 | } | 103 | } |
| @@ -107,12 +123,24 @@ void cgit_print_commit(char *hex) | |||
| 107 | if (ctx.repo->commit_filter) | 123 | if (ctx.repo->commit_filter) |
| 108 | cgit_close_filter(ctx.repo->commit_filter); | 124 | cgit_close_filter(ctx.repo->commit_filter); |
| 109 | html("</div>"); | 125 | html("</div>"); |
| 126 | if (notes.len != 0) { | ||
| 127 | html("<div class='notes-header'>Notes</div>"); | ||
| 128 | html("<div class='notes'>"); | ||
| 129 | if (ctx.repo->commit_filter) | ||
| 130 | cgit_open_filter(ctx.repo->commit_filter); | ||
| 131 | html_txt(notes.buf); | ||
| 132 | if (ctx.repo->commit_filter) | ||
| 133 | cgit_close_filter(ctx.repo->commit_filter); | ||
| 134 | html("</div>"); | ||
| 135 | html("<div class='notes-footer'></div>"); | ||
| 136 | } | ||
| 110 | if (parents < 3) { | 137 | if (parents < 3) { |
| 111 | if (parents) | 138 | if (parents) |
| 112 | tmp = sha1_to_hex(commit->parents->item->object.sha1); | 139 | tmp = sha1_to_hex(commit->parents->item->object.sha1); |
| 113 | else | 140 | else |
| 114 | tmp = NULL; | 141 | tmp = NULL; |
| 115 | cgit_print_diff(ctx.qry.sha1, tmp, NULL); | 142 | cgit_print_diff(ctx.qry.sha1, tmp, prefix); |
| 116 | } | 143 | } |
| 144 | strbuf_release(¬es); | ||
| 117 | cgit_free_commitinfo(info); | 145 | cgit_free_commitinfo(info); |
| 118 | } | 146 | } |
