mirror of
https://git.zx2c4.com/cgit
synced 2024-11-08 09:38:41 +00:00
a6da40bf84
Update to git version v2.41.0, with lots of changes...
This requires changes for these upstream commits:
* 60ff56f50372c1498718938ef504e744fe011ffb
banned.h: mark `strtok()` and `strtok_r()` as banned
* 52acddf36c8cb3778ab2098a0d95cc2e375a4069
string-list: multi-delimiter `string_list_split_in_place()`
* d850b7a545fcfbd97460a921c7f7c59d933eb0f7
cocci: apply the "cache.h" part of "the_repository.pending"
* cb338c23d6d518947bf6f7240bf30e2ec232bd3b
cocci: apply the "commit-reach.h" part of "the_repository.pending"
* ecb5091fd4301ac647db0bd2504112b38f7ee06d
cocci: apply the "commit.h" part of "the_repository.pending"
* 085390328f5fe1dfba67039b1fd6cc51546a4e41
cocci: apply the "diff.h" part of "the_repository.pending"
* bc726bd075929aab6b3e09d4dd5c2b0726fd5350
cocci: apply the "object-store.h" part of "the_repository.pending"
* bab821646a74c446370fa8d01ca851f247df5033
cocci: apply the "pretty.h" part of "the_repository.pending"
* afe27c889429438829bc8818ed17e4960bd3ef02
cocci: apply the "packfile.h" part of "the_repository.pending"
* 12cb1c10a64170a5d600dd1c6c8abfeec105fb6b
cocci: apply the "refs.h" part of "the_repository.pending"
* 035c7de9e9ea11d26df5f9e4bb117f91ed11a9fd
cocci: apply the "revision.h" part of "the_repository.pending"
... and some more I missed to list 😜 - for example the move and cleanup
of headers and includes (see changes in `cgit.h`) comes to mind...
Signed-off-by: Christian Hesse <mail@eworm.de>
149 lines
4.3 KiB
C
149 lines
4.3 KiB
C
/* ui-commit.c: generate commit view
|
|
*
|
|
* Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
|
|
*
|
|
* Licensed under GNU General Public License v2
|
|
* (see COPYING for full license text)
|
|
*/
|
|
|
|
#include "cgit.h"
|
|
#include "ui-commit.h"
|
|
#include "html.h"
|
|
#include "ui-shared.h"
|
|
#include "ui-diff.h"
|
|
#include "ui-log.h"
|
|
|
|
void cgit_print_commit(char *hex, const char *prefix)
|
|
{
|
|
struct commit *commit, *parent;
|
|
struct commitinfo *info, *parent_info;
|
|
struct commit_list *p;
|
|
struct strbuf notes = STRBUF_INIT;
|
|
struct object_id oid;
|
|
char *tmp, *tmp2;
|
|
int parents = 0;
|
|
|
|
if (!hex)
|
|
hex = ctx.qry.head;
|
|
|
|
if (repo_get_oid(the_repository, hex, &oid)) {
|
|
cgit_print_error_page(400, "Bad request",
|
|
"Bad object id: %s", hex);
|
|
return;
|
|
}
|
|
commit = lookup_commit_reference(the_repository, &oid);
|
|
if (!commit) {
|
|
cgit_print_error_page(404, "Not found",
|
|
"Bad commit reference: %s", hex);
|
|
return;
|
|
}
|
|
info = cgit_parse_commit(commit);
|
|
|
|
format_display_notes(&oid, ¬es, PAGE_ENCODING, 1);
|
|
|
|
load_ref_decorations(NULL, DECORATE_FULL_REFS);
|
|
|
|
ctx.page.title = fmtalloc("%s - %s", info->subject, ctx.page.title);
|
|
cgit_print_layout_start();
|
|
cgit_print_diff_ctrls();
|
|
html("<table summary='commit info' class='commit-info'>\n");
|
|
html("<tr><th>author</th><td>");
|
|
cgit_open_filter(ctx.repo->email_filter, info->author_email, "commit");
|
|
html_txt(info->author);
|
|
if (!ctx.cfg.noplainemail) {
|
|
html(" ");
|
|
html_txt(info->author_email);
|
|
}
|
|
cgit_close_filter(ctx.repo->email_filter);
|
|
html("</td><td class='right'>");
|
|
html_txt(show_date(info->author_date, info->author_tz,
|
|
cgit_date_mode(DATE_ISO8601)));
|
|
html("</td></tr>\n");
|
|
html("<tr><th>committer</th><td>");
|
|
cgit_open_filter(ctx.repo->email_filter, info->committer_email, "commit");
|
|
html_txt(info->committer);
|
|
if (!ctx.cfg.noplainemail) {
|
|
html(" ");
|
|
html_txt(info->committer_email);
|
|
}
|
|
cgit_close_filter(ctx.repo->email_filter);
|
|
html("</td><td class='right'>");
|
|
html_txt(show_date(info->committer_date, info->committer_tz,
|
|
cgit_date_mode(DATE_ISO8601)));
|
|
html("</td></tr>\n");
|
|
html("<tr><th>commit</th><td colspan='2' class='oid'>");
|
|
tmp = oid_to_hex(&commit->object.oid);
|
|
cgit_commit_link(tmp, NULL, NULL, ctx.qry.head, tmp, prefix);
|
|
html(" (");
|
|
cgit_patch_link("patch", NULL, NULL, NULL, tmp, prefix);
|
|
html(")</td></tr>\n");
|
|
html("<tr><th>tree</th><td colspan='2' class='oid'>");
|
|
tmp = xstrdup(hex);
|
|
cgit_tree_link(oid_to_hex(get_commit_tree_oid(commit)), NULL, NULL,
|
|
ctx.qry.head, tmp, NULL);
|
|
if (prefix) {
|
|
html(" /");
|
|
cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix);
|
|
}
|
|
free(tmp);
|
|
html("</td></tr>\n");
|
|
for (p = commit->parents; p; p = p->next) {
|
|
parent = lookup_commit_reference(the_repository, &p->item->object.oid);
|
|
if (!parent) {
|
|
html("<tr><td colspan='3'>");
|
|
cgit_print_error("Error reading parent commit");
|
|
html("</td></tr>");
|
|
continue;
|
|
}
|
|
html("<tr><th>parent</th>"
|
|
"<td colspan='2' class='oid'>");
|
|
tmp = tmp2 = oid_to_hex(&p->item->object.oid);
|
|
if (ctx.repo->enable_subject_links) {
|
|
parent_info = cgit_parse_commit(parent);
|
|
tmp2 = parent_info->subject;
|
|
}
|
|
cgit_commit_link(tmp2, NULL, NULL, ctx.qry.head, tmp, prefix);
|
|
html(" (");
|
|
cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex,
|
|
oid_to_hex(&p->item->object.oid), prefix);
|
|
html(")</td></tr>");
|
|
parents++;
|
|
}
|
|
if (ctx.repo->snapshots) {
|
|
html("<tr><th>download</th><td colspan='2' class='oid'>");
|
|
cgit_print_snapshot_links(ctx.repo, hex, "<br/>");
|
|
html("</td></tr>");
|
|
}
|
|
html("</table>\n");
|
|
html("<div class='commit-subject'>");
|
|
cgit_open_filter(ctx.repo->commit_filter);
|
|
html_txt(info->subject);
|
|
cgit_close_filter(ctx.repo->commit_filter);
|
|
show_commit_decorations(commit);
|
|
html("</div>");
|
|
html("<div class='commit-msg'>");
|
|
cgit_open_filter(ctx.repo->commit_filter);
|
|
html_txt(info->msg);
|
|
cgit_close_filter(ctx.repo->commit_filter);
|
|
html("</div>");
|
|
if (notes.len != 0) {
|
|
html("<div class='notes-header'>Notes</div>");
|
|
html("<div class='notes'>");
|
|
cgit_open_filter(ctx.repo->commit_filter);
|
|
html_txt(notes.buf);
|
|
cgit_close_filter(ctx.repo->commit_filter);
|
|
html("</div>");
|
|
html("<div class='notes-footer'></div>");
|
|
}
|
|
if (parents < 3) {
|
|
if (parents)
|
|
tmp = oid_to_hex(&commit->parents->item->object.oid);
|
|
else
|
|
tmp = NULL;
|
|
cgit_print_diff(ctx.qry.oid, tmp, prefix, 0, 0);
|
|
}
|
|
strbuf_release(¬es);
|
|
cgit_free_commitinfo(info);
|
|
cgit_print_layout_end();
|
|
}
|