summaryrefslogtreecommitdiffabout
path: root/ui-commit.c
authorLars Hjemli <hjemli@gmail.com>2006-12-16 00:11:55 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-16 00:11:55 (UTC)
commit6c14f5e457e17da9205588c273d7cb9f92a23b9f (patch) (unidiff)
tree5786904549cdefe16e003ddd874c62567f27abfa /ui-commit.c
parentf516218d0d0a6ddbd04e8ade722cc67eee4cf001 (diff)
downloadcgit-6c14f5e457e17da9205588c273d7cb9f92a23b9f.zip
cgit-6c14f5e457e17da9205588c273d7cb9f92a23b9f.tar.gz
cgit-6c14f5e457e17da9205588c273d7cb9f92a23b9f.tar.bz2
Add head comment to ui-commit.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-commit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-commit.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 2d38f0b..2d36015 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -1,69 +1,77 @@
1/* ui-commit.c: generate commit view
2 *
3 * Copyright (C) 2006 Lars Hjemli
4 *
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
7 */
8
1#include "cgit.h" 9#include "cgit.h"
2 10
3void cgit_print_commit(const char *hex) 11void cgit_print_commit(const char *hex)
4{ 12{
5 struct commit *commit; 13 struct commit *commit;
6 struct commitinfo *info; 14 struct commitinfo *info;
7 struct commit_list *p; 15 struct commit_list *p;
8 unsigned long size; 16 unsigned long size;
9 char type[20]; 17 char type[20];
10 char *buf; 18 char *buf;
11 19
12 unsigned char sha1[20]; 20 unsigned char sha1[20];
13 21
14 if (get_sha1(hex, sha1)) { 22 if (get_sha1(hex, sha1)) {
15 cgit_print_error(fmt("Bad object id: %s", hex)); 23 cgit_print_error(fmt("Bad object id: %s", hex));
16 return; 24 return;
17 } 25 }
18 26
19 buf = read_sha1_file(sha1, type, &size); 27 buf = read_sha1_file(sha1, type, &size);
20 if (!buf) { 28 if (!buf) {
21 cgit_print_error(fmt("Bad object reference: %s", hex)); 29 cgit_print_error(fmt("Bad object reference: %s", hex));
22 return; 30 return;
23 } 31 }
24 32
25 commit = lookup_commit(sha1); 33 commit = lookup_commit(sha1);
26 if (!commit) { 34 if (!commit) {
27 cgit_print_error(fmt("Bad commit reference: %s", hex)); 35 cgit_print_error(fmt("Bad commit reference: %s", hex));
28 return; 36 return;
29 } 37 }
30 38
31 commit->buffer = buf; 39 commit->buffer = buf;
32 if (parse_commit_buffer(commit, buf, size)) { 40 if (parse_commit_buffer(commit, buf, size)) {
33 cgit_print_error(fmt("Malformed commit buffer: %s", hex)); 41 cgit_print_error(fmt("Malformed commit buffer: %s", hex));
34 return; 42 return;
35 } 43 }
36 44
37 info = cgit_parse_commit(commit); 45 info = cgit_parse_commit(commit);
38 46
39 html("<table class='commit-info'>\n"); 47 html("<table class='commit-info'>\n");
40 html("<tr><th>author</th><td colspan='2'>"); 48 html("<tr><th>author</th><td colspan='2'>");
41 html_txt(info->author); 49 html_txt(info->author);
42 html("</td></tr>\n"); 50 html("</td></tr>\n");
43 html("<tr><th>committer</th><td>"); 51 html("<tr><th>committer</th><td>");
44 html_txt(info->committer); 52 html_txt(info->committer);
45 html("</td><td class='right'>"); 53 html("</td><td class='right'>");
46 cgit_print_date(commit->date); 54 cgit_print_date(commit->date);
47 html("</td></tr>\n"); 55 html("</td></tr>\n");
48 html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='"); 56 html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='");
49 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1)))); 57 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1))));
50 htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1)); 58 htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1));
51 59
52 for (p = commit->parents; p ; p = p->next) { 60 for (p = commit->parents; p ; p = p->next) {
53 html("<tr><th>parent</th><td colspan='2' class='sha1'><a href='"); 61 html("<tr><th>parent</th><td colspan='2' class='sha1'><a href='");
54 html_attr(cgit_pageurl(cgit_query_repo, "commit", fmt("id=%s", sha1_to_hex(p->item->object.sha1)))); 62 html_attr(cgit_pageurl(cgit_query_repo, "commit", fmt("id=%s", sha1_to_hex(p->item->object.sha1))));
55 htmlf("'>%s</a></td></tr>\n", 63 htmlf("'>%s</a></td></tr>\n",
56 sha1_to_hex(p->item->object.sha1)); 64 sha1_to_hex(p->item->object.sha1));
57 } 65 }
58 html("</table>\n"); 66 html("</table>\n");
59 html("<div class='commit-subject'>"); 67 html("<div class='commit-subject'>");
60 html_txt(info->subject); 68 html_txt(info->subject);
61 html("</div>"); 69 html("</div>");
62 html("<div class='commit-msg'>"); 70 html("<div class='commit-msg'>");
63 html_txt(info->msg); 71 html_txt(info->msg);
64 html("</div>"); 72 html("</div>");
65 free(info->author); 73 free(info->author);
66 free(info->committer); 74 free(info->committer);
67 free(info->subject); 75 free(info->subject);
68 free(info); 76 free(info);
69} 77}