2006-12-16 01:11:55 +01:00
|
|
|
/* ui-commit.c: generate commit view
|
|
|
|
*
|
2014-01-08 15:10:49 +01:00
|
|
|
* Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
|
2006-12-16 01:11:55 +01:00
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
2006-12-16 00:19:56 +01:00
|
|
|
#include "cgit.h"
|
2013-04-06 12:37:59 +02:00
|
|
|
#include "ui-commit.h"
|
2008-02-23 22:45:33 +01:00
|
|
|
#include "html.h"
|
2008-03-24 16:50:57 +01:00
|
|
|
#include "ui-shared.h"
|
2008-04-12 15:53:53 +02:00
|
|
|
#include "ui-diff.h"
|
2009-01-12 16:23:28 +01:00
|
|
|
#include "ui-log.h"
|
2006-12-16 00:19:56 +01:00
|
|
|
|
2010-06-10 01:09:32 +02:00
|
|
|
void cgit_print_commit(char *hex, const char *prefix)
|
2006-12-16 00:19:56 +01:00
|
|
|
{
|
2007-05-13 23:13:12 +02:00
|
|
|
struct commit *commit, *parent;
|
2010-02-15 09:57:50 +01:00
|
|
|
struct commitinfo *info, *parent_info;
|
2006-12-16 00:19:56 +01:00
|
|
|
struct commit_list *p;
|
2010-07-29 16:32:30 +02:00
|
|
|
struct strbuf notes = STRBUF_INIT;
|
2006-12-16 00:19:56 +01:00
|
|
|
unsigned char sha1[20];
|
2010-02-27 13:12:55 +01:00
|
|
|
char *tmp, *tmp2;
|
2008-05-18 21:09:26 +02:00
|
|
|
int parents = 0;
|
2006-12-16 00:19:56 +01:00
|
|
|
|
2007-06-17 14:53:02 +02:00
|
|
|
if (!hex)
|
2008-02-16 11:53:40 +01:00
|
|
|
hex = ctx.qry.head;
|
2007-06-17 14:53:02 +02:00
|
|
|
|
2006-12-16 00:19:56 +01:00
|
|
|
if (get_sha1(hex, sha1)) {
|
2013-04-06 12:23:52 +02:00
|
|
|
cgit_print_error("Bad object id: %s", hex);
|
2006-12-16 00:19:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2006-12-16 14:46:05 +01:00
|
|
|
commit = lookup_commit_reference(sha1);
|
2006-12-16 00:19:56 +01:00
|
|
|
if (!commit) {
|
2013-04-06 12:23:52 +02:00
|
|
|
cgit_print_error("Bad commit reference: %s", hex);
|
2006-12-16 00:19:56 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
info = cgit_parse_commit(commit);
|
|
|
|
|
2013-04-08 10:00:22 +02:00
|
|
|
format_display_notes(sha1, ¬es, PAGE_ENCODING, 0);
|
2010-07-29 16:32:30 +02:00
|
|
|
|
2009-09-13 21:56:45 +02:00
|
|
|
load_ref_decorations(DECORATE_FULL_REFS);
|
2013-03-03 16:04:29 +01:00
|
|
|
|
2011-03-06 23:59:56 +01:00
|
|
|
cgit_print_diff_ctrls();
|
2007-11-11 13:04:28 +01:00
|
|
|
html("<table summary='commit info' class='commit-info'>\n");
|
2006-12-16 14:28:26 +01:00
|
|
|
html("<tr><th>author</th><td>");
|
2014-01-13 16:24:40 +01:00
|
|
|
cgit_open_filter(ctx.repo->email_filter, info->author_email, "commit");
|
2006-12-16 00:19:56 +01:00
|
|
|
html_txt(info->author);
|
2009-08-07 14:05:17 +02:00
|
|
|
if (!ctx.cfg.noplainemail) {
|
|
|
|
html(" ");
|
|
|
|
html_txt(info->author_email);
|
|
|
|
}
|
2014-01-13 04:04:52 +01:00
|
|
|
cgit_close_filter(ctx.repo->email_filter);
|
2006-12-16 14:28:26 +01:00
|
|
|
html("</td><td class='right'>");
|
2008-08-01 14:54:38 +02:00
|
|
|
cgit_print_date(info->author_date, FMT_LONGDATE, ctx.cfg.local_time);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</td></tr>\n");
|
|
|
|
html("<tr><th>committer</th><td>");
|
2014-01-13 16:24:40 +01:00
|
|
|
cgit_open_filter(ctx.repo->email_filter, info->committer_email, "commit");
|
2006-12-16 00:19:56 +01:00
|
|
|
html_txt(info->committer);
|
2009-08-07 14:05:17 +02:00
|
|
|
if (!ctx.cfg.noplainemail) {
|
|
|
|
html(" ");
|
|
|
|
html_txt(info->committer_email);
|
|
|
|
}
|
2014-01-13 04:04:52 +01:00
|
|
|
cgit_close_filter(ctx.repo->email_filter);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</td><td class='right'>");
|
2008-08-01 14:54:38 +02:00
|
|
|
cgit_print_date(info->committer_date, FMT_LONGDATE, ctx.cfg.local_time);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</td></tr>\n");
|
2008-04-13 12:20:00 +02:00
|
|
|
html("<tr><th>commit</th><td colspan='2' class='sha1'>");
|
|
|
|
tmp = sha1_to_hex(commit->object.sha1);
|
2014-10-05 11:59:02 +02:00
|
|
|
cgit_commit_link(tmp, NULL, NULL, ctx.qry.head, tmp, prefix);
|
2008-04-13 12:20:00 +02:00
|
|
|
html(" (");
|
2010-06-10 01:09:33 +02:00
|
|
|
cgit_patch_link("patch", NULL, NULL, NULL, tmp, prefix);
|
2008-04-13 12:20:00 +02:00
|
|
|
html(")</td></tr>\n");
|
2007-06-17 01:23:08 +02:00
|
|
|
html("<tr><th>tree</th><td colspan='2' class='sha1'>");
|
|
|
|
tmp = xstrdup(hex);
|
|
|
|
cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL,
|
2008-02-16 11:53:40 +01:00
|
|
|
ctx.qry.head, tmp, NULL);
|
2010-06-10 01:09:34 +02:00
|
|
|
if (prefix) {
|
|
|
|
html(" /");
|
|
|
|
cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix);
|
|
|
|
}
|
2013-03-04 13:25:37 +01:00
|
|
|
free(tmp);
|
2007-06-17 01:23:08 +02:00
|
|
|
html("</td></tr>\n");
|
2013-03-03 16:04:29 +01:00
|
|
|
for (p = commit->parents; p; p = p->next) {
|
2007-05-13 23:13:12 +02:00
|
|
|
parent = lookup_commit_reference(p->item->object.sha1);
|
|
|
|
if (!parent) {
|
|
|
|
html("<tr><td colspan='3'>");
|
|
|
|
cgit_print_error("Error reading parent commit");
|
|
|
|
html("</td></tr>");
|
|
|
|
continue;
|
|
|
|
}
|
2006-12-16 19:35:31 +01:00
|
|
|
html("<tr><th>parent</th>"
|
2007-06-17 15:44:22 +02:00
|
|
|
"<td colspan='2' class='sha1'>");
|
2010-02-27 13:12:55 +01:00
|
|
|
tmp = tmp2 = sha1_to_hex(p->item->object.sha1);
|
|
|
|
if (ctx.repo->enable_subject_links) {
|
|
|
|
parent_info = cgit_parse_commit(parent);
|
|
|
|
tmp2 = parent_info->subject;
|
|
|
|
}
|
2014-10-05 11:59:02 +02:00
|
|
|
cgit_commit_link(tmp2, NULL, NULL, ctx.qry.head, tmp, prefix);
|
2007-06-17 18:12:03 +02:00
|
|
|
html(" (");
|
2008-02-16 11:53:40 +01:00
|
|
|
cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex,
|
2014-10-05 11:59:03 +02:00
|
|
|
sha1_to_hex(p->item->object.sha1), prefix);
|
2007-06-17 18:12:03 +02:00
|
|
|
html(")</td></tr>");
|
2008-05-18 21:09:26 +02:00
|
|
|
parents++;
|
2006-12-16 00:19:56 +01:00
|
|
|
}
|
2008-02-16 13:56:09 +01:00
|
|
|
if (ctx.repo->snapshots) {
|
2007-07-18 14:40:03 +02:00
|
|
|
html("<tr><th>download</th><td colspan='2' class='sha1'>");
|
2008-02-16 11:53:40 +01:00
|
|
|
cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head,
|
2008-02-16 13:56:09 +01:00
|
|
|
hex, ctx.repo->snapshots);
|
2007-07-18 14:40:03 +02:00
|
|
|
html("</td></tr>");
|
2007-02-08 14:47:56 +01:00
|
|
|
}
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</table>\n");
|
|
|
|
html("<div class='commit-subject'>");
|
2014-01-13 03:56:50 +01:00
|
|
|
cgit_open_filter(ctx.repo->commit_filter);
|
2006-12-16 00:19:56 +01:00
|
|
|
html_txt(info->subject);
|
2014-01-13 03:56:50 +01:00
|
|
|
cgit_close_filter(ctx.repo->commit_filter);
|
2009-01-12 16:23:28 +01:00
|
|
|
show_commit_decorations(commit);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</div>");
|
|
|
|
html("<div class='commit-msg'>");
|
2014-01-13 03:56:50 +01:00
|
|
|
cgit_open_filter(ctx.repo->commit_filter);
|
2006-12-16 00:19:56 +01:00
|
|
|
html_txt(info->msg);
|
2014-01-13 03:56:50 +01:00
|
|
|
cgit_close_filter(ctx.repo->commit_filter);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</div>");
|
2010-07-29 16:32:30 +02:00
|
|
|
if (notes.len != 0) {
|
|
|
|
html("<div class='notes-header'>Notes</div>");
|
|
|
|
html("<div class='notes'>");
|
2014-01-13 03:56:50 +01:00
|
|
|
cgit_open_filter(ctx.repo->commit_filter);
|
2010-07-29 16:32:30 +02:00
|
|
|
html_txt(notes.buf);
|
2014-01-13 03:56:50 +01:00
|
|
|
cgit_close_filter(ctx.repo->commit_filter);
|
2010-07-29 16:32:30 +02:00
|
|
|
html("</div>");
|
|
|
|
html("<div class='notes-footer'></div>");
|
|
|
|
}
|
2008-05-18 21:09:26 +02:00
|
|
|
if (parents < 3) {
|
|
|
|
if (parents)
|
|
|
|
tmp = sha1_to_hex(commit->parents->item->object.sha1);
|
|
|
|
else
|
|
|
|
tmp = NULL;
|
2013-08-14 10:50:32 +02:00
|
|
|
cgit_print_diff(ctx.qry.sha1, tmp, prefix, 0, 0);
|
2007-05-13 22:25:14 +02:00
|
|
|
}
|
2010-07-29 16:32:30 +02:00
|
|
|
strbuf_release(¬es);
|
2006-12-16 14:58:20 +01:00
|
|
|
cgit_free_commitinfo(info);
|
2006-12-16 00:19:56 +01:00
|
|
|
}
|