summaryrefslogtreecommitdiffabout
path: root/ui-summary.c
authorLars Hjemli <hjemli@gmail.com>2007-10-27 08:47:44 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-10-27 08:53:28 (UTC)
commitac1f493b6bbc589327e9ba3303f112fcd323c6b6 (patch) (unidiff)
tree4729ecc84e0b24b044131546ff39bdd55a6cd9a6 /ui-summary.c
parent7937d06090dd5e19145ec6fa8befc5770954b30c (diff)
downloadcgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.zip
cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.tar.gz
cgit-ac1f493b6bbc589327e9ba3303f112fcd323c6b6.tar.bz2
Add links to the new refs page from summary page
If either branches or tags are filtered on the summary page, add a link to refs/heads and/or refs/tags right below the last branch/tag. 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.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui-summary.c b/ui-summary.c
index 97f1b57..016fea2 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -153,77 +153,90 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
153 if (!header) { 153 if (!header) {
154 html("<table id='downloads'>"); 154 html("<table id='downloads'>");
155 html("<tr><th>Downloads</th></tr>"); 155 html("<tr><th>Downloads</th></tr>");
156 header = 1; 156 header = 1;
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 print_refs_link(char *path)
170{
171 html("<tr class='nohover'><td colspan='4'>");
172 cgit_refs_link("[...]", NULL, NULL, cgit_query_head, NULL, path);
173 html("</td></tr>");
174}
175
169void cgit_print_branches(int maxcount) 176void cgit_print_branches(int maxcount)
170{ 177{
171 struct reflist list; 178 struct reflist list;
172 int i; 179 int i;
173 180
174 html("<tr class='nohover'><th class='left'>Branch</th>" 181 html("<tr class='nohover'><th class='left'>Branch</th>"
175 "<th class='left'>Idle</th>" 182 "<th class='left'>Idle</th>"
176 "<th class='left'>Author</th>" 183 "<th class='left'>Author</th>"
177 "<th class='left'>Head commit</th></tr>\n"); 184 "<th class='left'>Head commit</th></tr>\n");
178 185
179 list.refs = NULL; 186 list.refs = NULL;
180 list.alloc = list.count = 0; 187 list.alloc = list.count = 0;
181 for_each_branch_ref(cgit_refs_cb, &list); 188 for_each_branch_ref(cgit_refs_cb, &list);
182 189
183 if (maxcount == 0 || maxcount > list.count) 190 if (maxcount == 0 || maxcount > list.count)
184 maxcount = list.count; 191 maxcount = list.count;
185 192
186 if (maxcount < list.count) { 193 if (maxcount < list.count) {
187 qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age); 194 qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age);
188 qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name); 195 qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name);
189 } 196 }
190 197
191 for(i=0; i<maxcount; i++) 198 for(i=0; i<maxcount; i++)
192 cgit_print_branch(list.refs[i]); 199 cgit_print_branch(list.refs[i]);
200
201 if (maxcount < list.count)
202 print_refs_link("heads");
193} 203}
194 204
195void cgit_print_tags(int maxcount) 205void cgit_print_tags(int maxcount)
196{ 206{
197 struct reflist list; 207 struct reflist list;
198 int i; 208 int i;
199 209
200 header = 0; 210 header = 0;
201 list.refs = NULL; 211 list.refs = NULL;
202 list.alloc = list.count = 0; 212 list.alloc = list.count = 0;
203 for_each_tag_ref(cgit_refs_cb, &list); 213 for_each_tag_ref(cgit_refs_cb, &list);
204 if (list.count == 0) 214 if (list.count == 0)
205 return; 215 return;
206 qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); 216 qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age);
207 if (!maxcount) 217 if (!maxcount)
208 maxcount = list.count; 218 maxcount = list.count;
209 else if (maxcount > list.count) 219 else if (maxcount > list.count)
210 maxcount = list.count; 220 maxcount = list.count;
211 print_tag_header(); 221 print_tag_header();
212 for(i=0; i<maxcount; i++) 222 for(i=0; i<maxcount; i++)
213 print_tag(list.refs[i]); 223 print_tag(list.refs[i]);
224
225 if (maxcount < list.count)
226 print_refs_link("tags");
214} 227}
215 228
216static void cgit_print_archives() 229static void cgit_print_archives()
217{ 230{
218 header = 0; 231 header = 0;
219 for_each_ref(cgit_print_archive_cb, NULL); 232 for_each_ref(cgit_print_archive_cb, NULL);
220 if (header) 233 if (header)
221 html("</table>"); 234 html("</table>");
222} 235}
223 236
224void cgit_print_summary() 237void cgit_print_summary()
225{ 238{
226 html("<div id='summary'>"); 239 html("<div id='summary'>");
227 cgit_print_archives(); 240 cgit_print_archives();
228 html("<h2>"); 241 html("<h2>");
229 html_txt(cgit_repo->name); 242 html_txt(cgit_repo->name);