-rw-r--r-- | ui-summary.c | 74 |
1 files changed, 66 insertions, 8 deletions
diff --git a/ui-summary.c b/ui-summary.c index de95053..1591632 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -17,2 +17,3 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | |||
17 | 17 | ||
18 | strncpy(buf, refname, sizeof(buf)); | ||
18 | commit = lookup_commit(sha1); | 19 | commit = lookup_commit(sha1); |
@@ -24,3 +25,2 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | |||
24 | html_link_open(url, NULL, NULL); | 25 | html_link_open(url, NULL, NULL); |
25 | strncpy(buf, refname, sizeof(buf)); | ||
26 | html_txt(buf); | 26 | html_txt(buf); |
@@ -30,2 +30,4 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | |||
30 | html("</td><td>"); | 30 | html("</td><td>"); |
31 | html_txt(info->author); | ||
32 | html("</td><td>"); | ||
31 | url = cgit_pageurl(cgit_query_repo, "commit", | 33 | url = cgit_pageurl(cgit_query_repo, "commit", |
@@ -35,4 +37,2 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | |||
35 | html_link_close(); | 37 | html_link_close(); |
36 | html("</td><td>"); | ||
37 | html_txt(info->author); | ||
38 | html("</td></tr>\n"); | 38 | html("</td></tr>\n"); |
@@ -42,4 +42,51 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | |||
42 | html_txt(buf); | 42 | html_txt(buf); |
43 | html("</td><td colspan='3'>"); | ||
44 | htmlf("*** bad ref %s ***", sha1_to_hex(sha1)); | ||
45 | html("</td></tr>\n"); | ||
46 | } | ||
47 | return 0; | ||
48 | } | ||
49 | |||
50 | static int cgit_print_tag_cb(const char *refname, const unsigned char *sha1, | ||
51 | int flags, void *cb_data) | ||
52 | { | ||
53 | struct tag *tag; | ||
54 | struct taginfo *info; | ||
55 | char buf[256], *page, *url; | ||
56 | |||
57 | strncpy(buf, refname, sizeof(buf)); | ||
58 | tag = lookup_tag(sha1); | ||
59 | if (tag && !parse_tag(tag) && (info = cgit_parse_tag(tag))){ | ||
60 | html("<tr><td>"); | ||
61 | url = cgit_pageurl(cgit_query_repo, "view", | ||
62 | fmt("id=%s", sha1_to_hex(sha1))); | ||
63 | html_link_open(url, NULL, NULL); | ||
64 | html_txt(buf); | ||
65 | html_link_close(); | ||
66 | html("</td><td>"); | ||
67 | if (info->tagger_date > 0) | ||
68 | cgit_print_date(info->tagger_date); | ||
43 | html("</td><td>"); | 69 | html("</td><td>"); |
44 | htmlf("*** bad ref %s", sha1_to_hex(sha1)); | 70 | if (info->tagger) |
71 | html(info->tagger); | ||
72 | html("</td><td>"); | ||
73 | if (tag->tagged->type == OBJ_COMMIT) | ||
74 | page = "commit"; | ||
75 | else if (tag->tagged->type == OBJ_TREE) | ||
76 | page = "tree"; | ||
77 | else | ||
78 | page = "view"; | ||
79 | |||
80 | url = cgit_pageurl(cgit_query_repo, page, | ||
81 | fmt("id=%s", sha1_to_hex(tag->tagged->sha1))); | ||
82 | html_link_open(url, NULL, NULL); | ||
83 | htmlf("%s %s", type_names[tag->tagged->type], | ||
84 | sha1_to_hex(tag->tagged->sha1)); | ||
85 | html_link_close(); | ||
86 | html("</td></tr>\n"); | ||
87 | } else { | ||
88 | html("<tr><td>"); | ||
89 | html_txt(buf); | ||
90 | html("</td><td colspan='3'>"); | ||
91 | htmlf("*** bad ref %s ***", sha1_to_hex(sha1)); | ||
45 | html("</td></tr>\n"); | 92 | html("</td></tr>\n"); |
@@ -51,9 +98,16 @@ static void cgit_print_branches() | |||
51 | { | 98 | { |
52 | html("<table class='list nowrap'>"); | ||
53 | html("<tr><th class='left'>Branch</th>" | 99 | html("<tr><th class='left'>Branch</th>" |
54 | "<th class='left'>Updated</th>" | 100 | "<th class='left'>Updated</th>" |
55 | "<th class='left'>Commit subject</th>" | 101 | "<th class='left'>Author</th>" |
56 | "<th class='left'>Author</th></tr>\n"); | 102 | "<th class='left'>Head commit</th></tr>\n"); |
57 | for_each_branch_ref(cgit_print_branch_cb, NULL); | 103 | for_each_branch_ref(cgit_print_branch_cb, NULL); |
58 | html("</table>"); | 104 | } |
105 | |||
106 | static void cgit_print_tags() | ||
107 | { | ||
108 | html("<tr><th class='left'>Tag</th>" | ||
109 | "<th class='left'>Created</th>" | ||
110 | "<th class='left'>Author</th>" | ||
111 | "<th class='left'>Reference</th></tr>\n"); | ||
112 | for_each_tag_ref(cgit_print_tag_cb, NULL); | ||
59 | } | 113 | } |
@@ -65,3 +119,7 @@ void cgit_print_summary() | |||
65 | html("</h2>"); | 119 | html("</h2>"); |
120 | html("<table class='list nowrap'>"); | ||
66 | cgit_print_branches(); | 121 | cgit_print_branches(); |
122 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | ||
123 | cgit_print_tags(); | ||
124 | html("</table>"); | ||
67 | } | 125 | } |