-rw-r--r-- | ui-repolist.c | 92 |
1 files changed, 83 insertions, 9 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 436a774..0de328b 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -79,11 +79,21 @@ int is_in_url(struct cgit_repo *repo) | |||
79 | } | 79 | } |
80 | 80 | ||
81 | void print_sort_header(const char *title, const char *sort) | ||
82 | { | ||
83 | htmlf("<th class='left'><a href='./?s=%s", sort); | ||
84 | if (ctx.qry.search) { | ||
85 | html("&q="); | ||
86 | html_url_arg(ctx.qry.search); | ||
87 | } | ||
88 | htmlf("'>%s</a></th>", title); | ||
89 | } | ||
90 | |||
81 | void print_header(int columns) | 91 | void print_header(int columns) |
82 | { | 92 | { |
83 | html("<tr class='nohover'>" | 93 | html("<tr class='nohover'>"); |
84 | "<th class='left'>Name</th>" | 94 | print_sort_header("Name", "name"); |
85 | "<th class='left'>Description</th>" | 95 | print_sort_header("Description", "desc"); |
86 | "<th class='left'>Owner</th>" | 96 | print_sort_header("Owner", "owner"); |
87 | "<th class='left'><a href=\"?s=1\">Idle</a></th>"); | 97 | print_sort_header("Idle", "idle"); |
88 | if (ctx.cfg.enable_index_links) | 98 | if (ctx.cfg.enable_index_links) |
89 | html("<th class='left'>Links</th>"); | 99 | html("<th class='left'>Links</th>"); |
@@ -102,5 +112,40 @@ void print_pager(int items, int pagelen, char *search) | |||
102 | } | 112 | } |
103 | 113 | ||
104 | static int cgit_reposort_modtime(const void *a, const void *b) | 114 | static int cmp(const char *s1, const char *s2) |
115 | { | ||
116 | if (s1 && s2) | ||
117 | return strcmp(s1, s2); | ||
118 | if (s1 && !s2) | ||
119 | return 1; | ||
120 | if (s2 && !s1) | ||
121 | return -1; | ||
122 | return 0; | ||
123 | } | ||
124 | |||
125 | static int sort_name(const void *a, const void *b) | ||
126 | { | ||
127 | const struct cgit_repo *r1 = a; | ||
128 | const struct cgit_repo *r2 = b; | ||
129 | |||
130 | return cmp(r1->name, r2->name); | ||
131 | } | ||
132 | |||
133 | static int sort_desc(const void *a, const void *b) | ||
134 | { | ||
135 | const struct cgit_repo *r1 = a; | ||
136 | const struct cgit_repo *r2 = b; | ||
137 | |||
138 | return cmp(r1->desc, r2->desc); | ||
139 | } | ||
140 | |||
141 | static int sort_owner(const void *a, const void *b) | ||
142 | { | ||
143 | const struct cgit_repo *r1 = a; | ||
144 | const struct cgit_repo *r2 = b; | ||
145 | |||
146 | return cmp(r1->owner, r2->owner); | ||
147 | } | ||
148 | |||
149 | static int sort_idle(const void *a, const void *b) | ||
105 | { | 150 | { |
106 | const struct cgit_repo *r1 = a; | 151 | const struct cgit_repo *r1 = a; |
@@ -114,8 +159,37 @@ static int cgit_reposort_modtime(const void *a, const void *b) | |||
114 | } | 159 | } |
115 | 160 | ||
161 | struct sortcolumn { | ||
162 | const char *name; | ||
163 | int (*fn)(const void *a, const void *b); | ||
164 | }; | ||
165 | |||
166 | struct sortcolumn sortcolumn[] = { | ||
167 | {"name", sort_name}, | ||
168 | {"desc", sort_desc}, | ||
169 | {"owner", sort_owner}, | ||
170 | {"idle", sort_idle}, | ||
171 | {NULL, NULL} | ||
172 | }; | ||
173 | |||
174 | int sort_repolist(char *field) | ||
175 | { | ||
176 | struct sortcolumn *column; | ||
177 | |||
178 | for (column = &sortcolumn[0]; column->name; column++) { | ||
179 | if (strcmp(field, column->name)) | ||
180 | continue; | ||
181 | qsort(cgit_repolist.repos, cgit_repolist.count, | ||
182 | sizeof(struct cgit_repo), column->fn); | ||
183 | return 1; | ||
184 | } | ||
185 | return 0; | ||
186 | } | ||
187 | |||
188 | |||
116 | void cgit_print_repolist() | 189 | void cgit_print_repolist() |
117 | { | 190 | { |
118 | int i, columns = 4, hits = 0, header = 0; | 191 | int i, columns = 4, hits = 0, header = 0; |
119 | char *last_group = NULL; | 192 | char *last_group = NULL; |
193 | int sorted = 0; | ||
120 | 194 | ||
121 | if (ctx.cfg.enable_index_links) | 195 | if (ctx.cfg.enable_index_links) |
@@ -131,5 +205,5 @@ void cgit_print_repolist() | |||
131 | 205 | ||
132 | if(ctx.qry.sort) | 206 | if(ctx.qry.sort) |
133 | qsort(cgit_repolist.repos,cgit_repolist.count,sizeof(struct cgit_repo),cgit_reposort_modtime); | 207 | sorted = sort_repolist(ctx.qry.sort); |
134 | 208 | ||
135 | html("<table summary='repository list' class='list nowrap'>"); | 209 | html("<table summary='repository list' class='list nowrap'>"); |
@@ -145,5 +219,5 @@ void cgit_print_repolist() | |||
145 | if (!header++) | 219 | if (!header++) |
146 | print_header(columns); | 220 | print_header(columns); |
147 | if (!ctx.qry.sort && | 221 | if (!sorted && |
148 | ((last_group == NULL && ctx.repo->group != NULL) || | 222 | ((last_group == NULL && ctx.repo->group != NULL) || |
149 | (last_group != NULL && ctx.repo->group == NULL) || | 223 | (last_group != NULL && ctx.repo->group == NULL) || |
@@ -157,5 +231,5 @@ void cgit_print_repolist() | |||
157 | } | 231 | } |
158 | htmlf("<tr><td class='%s'>", | 232 | htmlf("<tr><td class='%s'>", |
159 | ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); | 233 | !sorted && ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); |
160 | cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); | 234 | cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); |
161 | html("</td><td>"); | 235 | html("</td><td>"); |