2006-12-16 01:11:55 +01:00
|
|
|
/* ui-commit.c: generate commit view
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
2006-12-16 00:19:56 +01:00
|
|
|
#include "cgit.h"
|
|
|
|
|
2006-12-17 23:07:28 +01:00
|
|
|
int files = 0;
|
|
|
|
|
|
|
|
void print_filepair(struct diff_filepair *pair)
|
|
|
|
{
|
|
|
|
char *query;
|
|
|
|
char *class;
|
2007-05-13 11:26:23 +02:00
|
|
|
|
2006-12-17 23:07:28 +01:00
|
|
|
switch (pair->status) {
|
|
|
|
case DIFF_STATUS_ADDED:
|
|
|
|
class = "add";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_COPIED:
|
|
|
|
class = "cpy";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_DELETED:
|
|
|
|
class = "del";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_MODIFIED:
|
|
|
|
class = "upd";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_RENAMED:
|
|
|
|
class = "mov";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_TYPE_CHANGED:
|
|
|
|
class = "typ";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_UNKNOWN:
|
|
|
|
class = "unk";
|
|
|
|
break;
|
|
|
|
case DIFF_STATUS_UNMERGED:
|
|
|
|
class = "stg";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("bug: unhandled diff status %c", pair->status);
|
|
|
|
}
|
|
|
|
|
|
|
|
html("<tr>");
|
|
|
|
htmlf("<td class='mode'>");
|
2006-12-17 23:30:55 +01:00
|
|
|
if (is_null_sha1(pair->two->sha1)) {
|
|
|
|
html_filemode(pair->one->mode);
|
|
|
|
} else {
|
|
|
|
html_filemode(pair->two->mode);
|
|
|
|
}
|
|
|
|
|
2007-05-13 11:26:23 +02:00
|
|
|
if (pair->one->mode != pair->two->mode &&
|
|
|
|
!is_null_sha1(pair->one->sha1) &&
|
2006-12-17 23:30:55 +01:00
|
|
|
!is_null_sha1(pair->two->sha1)) {
|
2006-12-17 23:07:28 +01:00
|
|
|
html("<span class='modechange'>[");
|
|
|
|
html_filemode(pair->one->mode);
|
|
|
|
html("]</span>");
|
|
|
|
}
|
|
|
|
htmlf("</td><td class='%s'>", class);
|
2007-05-13 11:26:23 +02:00
|
|
|
query = fmt("id=%s&id2=%s", sha1_to_hex(pair->one->sha1),
|
|
|
|
sha1_to_hex(pair->two->sha1));
|
|
|
|
html_link_open(cgit_pageurl(cgit_query_repo, "diff", query),
|
2006-12-17 23:07:28 +01:00
|
|
|
NULL, NULL);
|
2007-05-13 11:26:23 +02:00
|
|
|
if (pair->status == DIFF_STATUS_COPIED ||
|
2006-12-17 23:07:28 +01:00
|
|
|
pair->status == DIFF_STATUS_RENAMED) {
|
|
|
|
html_txt(pair->two->path);
|
2007-05-13 11:26:23 +02:00
|
|
|
htmlf("</a> (%s from ", pair->status == DIFF_STATUS_COPIED ?
|
2006-12-17 23:07:28 +01:00
|
|
|
"copied" : "renamed");
|
2007-05-13 11:26:23 +02:00
|
|
|
query = fmt("id=%s", sha1_to_hex(pair->one->sha1));
|
|
|
|
html_link_open(cgit_pageurl(cgit_query_repo, "view", query),
|
2006-12-17 23:07:28 +01:00
|
|
|
NULL, NULL);
|
|
|
|
html_txt(pair->one->path);
|
|
|
|
html("</a>)");
|
|
|
|
} else {
|
|
|
|
html_txt(pair->two->path);
|
|
|
|
html("</a>");
|
|
|
|
}
|
|
|
|
html("<td>");
|
|
|
|
|
|
|
|
//TODO: diffstat graph
|
|
|
|
|
2007-05-13 11:26:23 +02:00
|
|
|
html("</td></tr>\n");
|
|
|
|
files++;
|
2006-12-17 23:07:28 +01:00
|
|
|
}
|
|
|
|
|
2006-12-16 00:19:56 +01:00
|
|
|
void cgit_print_commit(const char *hex)
|
|
|
|
{
|
|
|
|
struct commit *commit;
|
|
|
|
struct commitinfo *info;
|
|
|
|
struct commit_list *p;
|
|
|
|
unsigned char sha1[20];
|
2006-12-16 19:35:31 +01:00
|
|
|
char *query;
|
2007-02-08 13:53:13 +01:00
|
|
|
char *filename;
|
2006-12-16 00:19:56 +01:00
|
|
|
|
|
|
|
if (get_sha1(hex, sha1)) {
|
|
|
|
cgit_print_error(fmt("Bad object id: %s", hex));
|
|
|
|
return;
|
|
|
|
}
|
2006-12-16 14:46:05 +01:00
|
|
|
commit = lookup_commit_reference(sha1);
|
2006-12-16 00:19:56 +01:00
|
|
|
if (!commit) {
|
|
|
|
cgit_print_error(fmt("Bad commit reference: %s", hex));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
info = cgit_parse_commit(commit);
|
|
|
|
|
|
|
|
html("<table class='commit-info'>\n");
|
2006-12-16 14:28:26 +01:00
|
|
|
html("<tr><th>author</th><td>");
|
2006-12-16 00:19:56 +01:00
|
|
|
html_txt(info->author);
|
2006-12-16 14:28:26 +01:00
|
|
|
html(" ");
|
|
|
|
html_txt(info->author_email);
|
|
|
|
html("</td><td class='right'>");
|
|
|
|
cgit_print_date(info->author_date);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</td></tr>\n");
|
|
|
|
html("<tr><th>committer</th><td>");
|
|
|
|
html_txt(info->committer);
|
2006-12-16 14:28:26 +01:00
|
|
|
html(" ");
|
|
|
|
html_txt(info->committer_email);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</td><td class='right'>");
|
2006-12-16 14:28:26 +01:00
|
|
|
cgit_print_date(info->committer_date);
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</td></tr>\n");
|
|
|
|
html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='");
|
2006-12-16 19:35:31 +01:00
|
|
|
query = fmt("id=%s", sha1_to_hex(commit->tree->object.sha1));
|
|
|
|
html_attr(cgit_pageurl(cgit_query_repo, "tree", query));
|
2006-12-16 00:19:56 +01:00
|
|
|
htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1));
|
2006-12-16 19:35:31 +01:00
|
|
|
for (p = commit->parents; p ; p = p->next) {
|
|
|
|
html("<tr><th>parent</th>"
|
|
|
|
"<td colspan='2' class='sha1'>"
|
|
|
|
"<a href='");
|
|
|
|
query = fmt("id=%s", sha1_to_hex(p->item->object.sha1));
|
|
|
|
html_attr(cgit_pageurl(cgit_query_repo, "commit", query));
|
2007-05-13 11:26:23 +02:00
|
|
|
htmlf("'>%s</a></td></tr>\n",
|
2006-12-16 00:19:56 +01:00
|
|
|
sha1_to_hex(p->item->object.sha1));
|
|
|
|
}
|
2007-02-08 14:47:56 +01:00
|
|
|
if (cgit_repo->snapshots) {
|
|
|
|
htmlf("<tr><th>download</th><td colspan='2' class='sha1'><a href='");
|
|
|
|
filename = fmt("%s-%s.zip", cgit_query_repo, hex);
|
2007-05-13 11:26:23 +02:00
|
|
|
html_attr(cgit_pageurl(cgit_query_repo, "snapshot",
|
2007-02-08 14:47:56 +01:00
|
|
|
fmt("id=%s&name=%s", hex, filename)));
|
|
|
|
htmlf("'>%s</a></td></tr>", filename);
|
|
|
|
}
|
2006-12-16 00:19:56 +01:00
|
|
|
html("</table>\n");
|
|
|
|
html("<div class='commit-subject'>");
|
|
|
|
html_txt(info->subject);
|
|
|
|
html("</div>");
|
|
|
|
html("<div class='commit-msg'>");
|
|
|
|
html_txt(info->msg);
|
|
|
|
html("</div>");
|
2006-12-17 23:07:28 +01:00
|
|
|
html("<table class='diffstat'>");
|
|
|
|
html("<tr><th colspan='3'>Affected files</tr>\n");
|
2007-05-13 11:26:23 +02:00
|
|
|
cgit_diff_commit(commit, print_filepair);
|
2006-12-17 23:07:28 +01:00
|
|
|
htmlf("<tr><td colspan='3' class='summary'>"
|
|
|
|
"%d file%s changed</td></tr>\n", files, files > 1 ? "s" : "");
|
|
|
|
html("</table>");
|
2006-12-16 14:58:20 +01:00
|
|
|
cgit_free_commitinfo(info);
|
2006-12-16 00:19:56 +01:00
|
|
|
}
|