diff options
| author | 2009-08-24 05:58:39 (JST) | |
|---|---|---|
| committer | 2009-08-24 17:22:58 (JST) | |
| commit | e7af002d5c405c82652f739d08ced3908d1f57e7 (patch) | |
| tree | 1e31e5dd8d33ca4a8392c4d6207b2ff6bf8a0d76 /ui-repolist.c | |
| parent | 50d5af3adcdd90424b70e9472af24356ed50aa9b (diff) | |
| download | cgit-e7af002d5c405c82652f739d08ced3908d1f57e7.zip cgit-e7af002d5c405c82652f739d08ced3908d1f57e7.tar.gz | |
Introduce 'section' as canonical spelling for 'repo.group'
The 'repo.' prefix should be reserved for repo-specific options, but
the option 'repo.group' must still be honored to stay backwards
compatible.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-repolist.c')
| -rw-r--r-- | ui-repolist.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 7c7aa9b..4dea3b3 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
| @@ -203,7 +203,7 @@ int sort_repolist(char *field) | |||
| 203 | void cgit_print_repolist() | 203 | void cgit_print_repolist() |
| 204 | { | 204 | { |
| 205 | int i, columns = 4, hits = 0, header = 0; | 205 | int i, columns = 4, hits = 0, header = 0; |
| 206 | char *last_group = NULL; | 206 | char *last_section = NULL; |
| 207 | int sorted = 0; | 207 | int sorted = 0; |
| 208 | 208 | ||
| 209 | if (ctx.cfg.enable_index_links) | 209 | if (ctx.cfg.enable_index_links) |
| @@ -233,18 +233,18 @@ void cgit_print_repolist() | |||
| 233 | if (!header++) | 233 | if (!header++) |
| 234 | print_header(columns); | 234 | print_header(columns); |
| 235 | if (!sorted && | 235 | if (!sorted && |
| 236 | ((last_group == NULL && ctx.repo->group != NULL) || | 236 | ((last_section == NULL && ctx.repo->section != NULL) || |
| 237 | (last_group != NULL && ctx.repo->group == NULL) || | 237 | (last_section != NULL && ctx.repo->section == NULL) || |
| 238 | (last_group != NULL && ctx.repo->group != NULL && | 238 | (last_section != NULL && ctx.repo->section != NULL && |
| 239 | strcmp(ctx.repo->group, last_group)))) { | 239 | strcmp(ctx.repo->section, last_section)))) { |
| 240 | htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", | 240 | htmlf("<tr class='nohover'><td colspan='%d' class='reposection'>", |
| 241 | columns); | 241 | columns); |
| 242 | html_txt(ctx.repo->group); | 242 | html_txt(ctx.repo->section); |
| 243 | html("</td></tr>"); | 243 | html("</td></tr>"); |
| 244 | last_group = ctx.repo->group; | 244 | last_section = ctx.repo->section; |
| 245 | } | 245 | } |
| 246 | htmlf("<tr><td class='%s'>", | 246 | htmlf("<tr><td class='%s'>", |
| 247 | !sorted && ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); | 247 | !sorted && ctx.repo->section ? "sublevel-repo" : "toplevel-repo"); |
| 248 | cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); | 248 | cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); |
| 249 | html("</td><td>"); | 249 | html("</td><td>"); |
| 250 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); | 250 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); |
