summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-summary.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/ui-summary.c b/ui-summary.c
index c684628..43582da 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -1,24 +1,41 @@
1/* ui-summary.c: functions for generating repo summary page 1/* ui-summary.c: functions for generating repo summary page
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11static int header; 11static int header;
12 12
13static int cmp_tag_age(void *a, void *b)
14{
15 struct refinfo *r1 = *(struct refinfo **)a;
16 struct refinfo *r2 = *(struct refinfo **)b;
17
18 if (r1->tag->tagger_date != 0 && r2->tag->tagger_date != 0)
19 return r2->tag->tagger_date - r1->tag->tagger_date;
20
21 if (r1->tag->tagger_date == 0 && r2->tag->tagger_date == 0)
22 return 0;
23
24 if (r1 == 0)
25 return +1;
26
27 return -1;
28}
29
13static void cgit_print_branch(struct refinfo *ref) 30static void cgit_print_branch(struct refinfo *ref)
14{ 31{
15 struct commit *commit; 32 struct commit *commit;
16 struct commitinfo *info; 33 struct commitinfo *info;
17 char *name = (char *)ref->refname; 34 char *name = (char *)ref->refname;
18 35
19 commit = lookup_commit(ref->object->sha1); 36 commit = lookup_commit(ref->object->sha1);
20 // object is not really parsed at this point, because of some fallout 37 // object is not really parsed at this point, because of some fallout
21 // from previous calls to git functions in cgit_print_log() 38 // from previous calls to git functions in cgit_print_log()
22 commit->object.parsed = 0; 39 commit->object.parsed = 0;
23 if (commit && !parse_commit(commit)){ 40 if (commit && !parse_commit(commit)){
24 info = cgit_parse_commit(commit); 41 info = cgit_parse_commit(commit);
@@ -147,24 +164,25 @@ static void cgit_print_branches()
147 164
148static void cgit_print_tags() 165static void cgit_print_tags()
149{ 166{
150 struct reflist list; 167 struct reflist list;
151 int i; 168 int i;
152 169
153 header = 0; 170 header = 0;
154 list.refs = NULL; 171 list.refs = NULL;
155 list.alloc = list.count = 0; 172 list.alloc = list.count = 0;
156 for_each_tag_ref(cgit_refs_cb, &list); 173 for_each_tag_ref(cgit_refs_cb, &list);
157 if (list.count == 0) 174 if (list.count == 0)
158 return; 175 return;
176 qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age);
159 print_tag_header(); 177 print_tag_header();
160 for(i=0; i<list.count; i++) 178 for(i=0; i<list.count; i++)
161 print_tag(list.refs[i]); 179 print_tag(list.refs[i]);
162} 180}
163 181
164static void cgit_print_archives() 182static void cgit_print_archives()
165{ 183{
166 header = 0; 184 header = 0;
167 for_each_ref(cgit_print_archive_cb, NULL); 185 for_each_ref(cgit_print_archive_cb, NULL);
168 if (header) 186 if (header)
169 html("</table>"); 187 html("</table>");
170} 188}