author | Lars Hjemli <hjemli@gmail.com> | 2006-12-15 23:33:28 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-15 23:33:28 (UTC) |
commit | 148fb9622c6a96021e572d1a372e38896506031f (patch) (unidiff) | |
tree | 2bfde276f3fed3b3a42afbdd90a64c98d0502ae3 /ui-commit.c | |
parent | 9a8f88658d51aeb86a79ac1121de13562ad2601f (diff) | |
download | cgit-148fb9622c6a96021e572d1a372e38896506031f.zip cgit-148fb9622c6a96021e572d1a372e38896506031f.tar.gz cgit-148fb9622c6a96021e572d1a372e38896506031f.tar.bz2 |
Move cgit_print_date into ui-shared, reuse in ui-summary
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-commit.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ui-commit.c b/ui-commit.c index 1c0e7e5..2d38f0b 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -1,80 +1,69 @@ | |||
1 | #include "cgit.h" | 1 | #include "cgit.h" |
2 | 2 | ||
3 | void cgit_print_date(unsigned long secs) | ||
4 | { | ||
5 | char buf[32]; | ||
6 | struct tm *time; | ||
7 | |||
8 | time = gmtime(&secs); | ||
9 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time); | ||
10 | html_txt(buf); | ||
11 | |||
12 | } | ||
13 | |||
14 | void cgit_print_commit(const char *hex) | 3 | void cgit_print_commit(const char *hex) |
15 | { | 4 | { |
16 | struct commit *commit; | 5 | struct commit *commit; |
17 | struct commitinfo *info; | 6 | struct commitinfo *info; |
18 | struct commit_list *p; | 7 | struct commit_list *p; |
19 | unsigned long size; | 8 | unsigned long size; |
20 | char type[20]; | 9 | char type[20]; |
21 | char *buf; | 10 | char *buf; |
22 | 11 | ||
23 | unsigned char sha1[20]; | 12 | unsigned char sha1[20]; |
24 | 13 | ||
25 | if (get_sha1(hex, sha1)) { | 14 | if (get_sha1(hex, sha1)) { |
26 | cgit_print_error(fmt("Bad object id: %s", hex)); | 15 | cgit_print_error(fmt("Bad object id: %s", hex)); |
27 | return; | 16 | return; |
28 | } | 17 | } |
29 | 18 | ||
30 | buf = read_sha1_file(sha1, type, &size); | 19 | buf = read_sha1_file(sha1, type, &size); |
31 | if (!buf) { | 20 | if (!buf) { |
32 | cgit_print_error(fmt("Bad object reference: %s", hex)); | 21 | cgit_print_error(fmt("Bad object reference: %s", hex)); |
33 | return; | 22 | return; |
34 | } | 23 | } |
35 | 24 | ||
36 | commit = lookup_commit(sha1); | 25 | commit = lookup_commit(sha1); |
37 | if (!commit) { | 26 | if (!commit) { |
38 | cgit_print_error(fmt("Bad commit reference: %s", hex)); | 27 | cgit_print_error(fmt("Bad commit reference: %s", hex)); |
39 | return; | 28 | return; |
40 | } | 29 | } |
41 | 30 | ||
42 | commit->buffer = buf; | 31 | commit->buffer = buf; |
43 | if (parse_commit_buffer(commit, buf, size)) { | 32 | if (parse_commit_buffer(commit, buf, size)) { |
44 | cgit_print_error(fmt("Malformed commit buffer: %s", hex)); | 33 | cgit_print_error(fmt("Malformed commit buffer: %s", hex)); |
45 | return; | 34 | return; |
46 | } | 35 | } |
47 | 36 | ||
48 | info = cgit_parse_commit(commit); | 37 | info = cgit_parse_commit(commit); |
49 | 38 | ||
50 | html("<table class='commit-info'>\n"); | 39 | html("<table class='commit-info'>\n"); |
51 | html("<tr><th>author</th><td colspan='2'>"); | 40 | html("<tr><th>author</th><td colspan='2'>"); |
52 | html_txt(info->author); | 41 | html_txt(info->author); |
53 | html("</td></tr>\n"); | 42 | html("</td></tr>\n"); |
54 | html("<tr><th>committer</th><td>"); | 43 | html("<tr><th>committer</th><td>"); |
55 | html_txt(info->committer); | 44 | html_txt(info->committer); |
56 | html("</td><td class='right'>"); | 45 | html("</td><td class='right'>"); |
57 | cgit_print_date(commit->date); | 46 | cgit_print_date(commit->date); |
58 | html("</td></tr>\n"); | 47 | html("</td></tr>\n"); |
59 | html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='"); | 48 | html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='"); |
60 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1)))); | 49 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1)))); |
61 | htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1)); | 50 | htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1)); |
62 | 51 | ||
63 | for (p = commit->parents; p ; p = p->next) { | 52 | for (p = commit->parents; p ; p = p->next) { |
64 | html("<tr><th>parent</th><td colspan='2' class='sha1'><a href='"); | 53 | html("<tr><th>parent</th><td colspan='2' class='sha1'><a href='"); |
65 | html_attr(cgit_pageurl(cgit_query_repo, "commit", fmt("id=%s", sha1_to_hex(p->item->object.sha1)))); | 54 | html_attr(cgit_pageurl(cgit_query_repo, "commit", fmt("id=%s", sha1_to_hex(p->item->object.sha1)))); |
66 | htmlf("'>%s</a></td></tr>\n", | 55 | htmlf("'>%s</a></td></tr>\n", |
67 | sha1_to_hex(p->item->object.sha1)); | 56 | sha1_to_hex(p->item->object.sha1)); |
68 | } | 57 | } |
69 | html("</table>\n"); | 58 | html("</table>\n"); |
70 | html("<div class='commit-subject'>"); | 59 | html("<div class='commit-subject'>"); |
71 | html_txt(info->subject); | 60 | html_txt(info->subject); |
72 | html("</div>"); | 61 | html("</div>"); |
73 | html("<div class='commit-msg'>"); | 62 | html("<div class='commit-msg'>"); |
74 | html_txt(info->msg); | 63 | html_txt(info->msg); |
75 | html("</div>"); | 64 | html("</div>"); |
76 | free(info->author); | 65 | free(info->author); |
77 | free(info->committer); | 66 | free(info->committer); |
78 | free(info->subject); | 67 | free(info->subject); |
79 | free(info); | 68 | free(info); |
80 | } | 69 | } |