summaryrefslogtreecommitdiffabout
path: root/ui-summary.c
authorLars Hjemli <hjemli@gmail.com>2007-10-27 08:25:40 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-10-27 08:53:27 (UTC)
commit8efb05f98ad389d1b7f5aac17838401908622dad (patch) (unidiff)
tree100c407d28215fab0e5d2936c939ff39ec5290fc /ui-summary.c
parent6bce91be1a60b46270c69c4098a8c03f47dae63a (diff)
downloadcgit-8efb05f98ad389d1b7f5aac17838401908622dad.zip
cgit-8efb05f98ad389d1b7f5aac17838401908622dad.tar.gz
cgit-8efb05f98ad389d1b7f5aac17838401908622dad.tar.bz2
Make cgit_print_branches()/cgit_print_tags() external
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-summary.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-summary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-summary.c b/ui-summary.c
index df79d01..97f1b57 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -157,25 +157,25 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
157 } 157 }
158 html("<tr><td>"); 158 html("<tr><td>");
159 url = cgit_pageurl(cgit_query_repo, "blob", 159 url = cgit_pageurl(cgit_query_repo, "blob",
160 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 160 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
161 buf)); 161 buf));
162 html_link_open(url, NULL, NULL); 162 html_link_open(url, NULL, NULL);
163 html_txt(buf); 163 html_txt(buf);
164 html_link_close(); 164 html_link_close();
165 html("</td></tr>"); 165 html("</td></tr>");
166 return 0; 166 return 0;
167} 167}
168 168
169static void cgit_print_branches(int maxcount) 169void cgit_print_branches(int maxcount)
170{ 170{
171 struct reflist list; 171 struct reflist list;
172 int i; 172 int i;
173 173
174 html("<tr class='nohover'><th class='left'>Branch</th>" 174 html("<tr class='nohover'><th class='left'>Branch</th>"
175 "<th class='left'>Idle</th>" 175 "<th class='left'>Idle</th>"
176 "<th class='left'>Author</th>" 176 "<th class='left'>Author</th>"
177 "<th class='left'>Head commit</th></tr>\n"); 177 "<th class='left'>Head commit</th></tr>\n");
178 178
179 list.refs = NULL; 179 list.refs = NULL;
180 list.alloc = list.count = 0; 180 list.alloc = list.count = 0;
181 for_each_branch_ref(cgit_refs_cb, &list); 181 for_each_branch_ref(cgit_refs_cb, &list);
@@ -183,25 +183,25 @@ static void cgit_print_branches(int maxcount)
183 if (maxcount == 0 || maxcount > list.count) 183 if (maxcount == 0 || maxcount > list.count)
184 maxcount = list.count; 184 maxcount = list.count;
185 185
186 if (maxcount < list.count) { 186 if (maxcount < list.count) {
187 qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age); 187 qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age);
188 qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name); 188 qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name);
189 } 189 }
190 190
191 for(i=0; i<maxcount; i++) 191 for(i=0; i<maxcount; i++)
192 cgit_print_branch(list.refs[i]); 192 cgit_print_branch(list.refs[i]);
193} 193}
194 194
195static void cgit_print_tags(int maxcount) 195void cgit_print_tags(int maxcount)
196{ 196{
197 struct reflist list; 197 struct reflist list;
198 int i; 198 int i;
199 199
200 header = 0; 200 header = 0;
201 list.refs = NULL; 201 list.refs = NULL;
202 list.alloc = list.count = 0; 202 list.alloc = list.count = 0;
203 for_each_tag_ref(cgit_refs_cb, &list); 203 for_each_tag_ref(cgit_refs_cb, &list);
204 if (list.count == 0) 204 if (list.count == 0)
205 return; 205 return;
206 qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); 206 qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age);
207 if (!maxcount) 207 if (!maxcount)