author | Lars Hjemli <hjemli@gmail.com> | 2007-10-25 08:40:16 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 08:53:27 (UTC) |
commit | fe211c7eef6c7d3e39486d6a7484d3b4debff88f (patch) (unidiff) | |
tree | 1b77d4b541cd5848ae1ad8d48e17e7d0f1a8b017 | |
parent | ef1cc6ef941cedf2e34fa1ed34ca8cd8a0cfdacc (diff) | |
download | cgit-fe211c7eef6c7d3e39486d6a7484d3b4debff88f.zip cgit-fe211c7eef6c7d3e39486d6a7484d3b4debff88f.tar.gz cgit-fe211c7eef6c7d3e39486d6a7484d3b4debff88f.tar.bz2 |
Add support for config param summary-tags
This parameter can be used to specify max number of tags to show on
the summary page. If not specified, all tags are printed.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | shared.c | 3 | ||||
-rw-r--r-- | ui-summary.c | 10 |
3 files changed, 11 insertions, 3 deletions
@@ -145,2 +145,3 @@ extern int cgit_cache_max_create_time; | |||
145 | extern int cgit_summary_log; | 145 | extern int cgit_summary_log; |
146 | extern int cgit_summary_tags; | ||
146 | 147 | ||
@@ -40,2 +40,3 @@ int cgit_cache_max_create_time = 5; | |||
40 | int cgit_summary_log = 0; | 40 | int cgit_summary_log = 0; |
41 | int cgit_summary_tags = 0; | ||
41 | int cgit_renamelimit = -1; | 42 | int cgit_renamelimit = -1; |
@@ -183,2 +184,4 @@ void cgit_global_config_cb(const char *name, const char *value) | |||
183 | cgit_summary_log = atoi(value); | 184 | cgit_summary_log = atoi(value); |
185 | else if (!strcmp(name, "summary-tags")) | ||
186 | cgit_summary_tags = atoi(value); | ||
184 | else if (!strcmp(name, "agefile")) | 187 | else if (!strcmp(name, "agefile")) |
diff --git a/ui-summary.c b/ui-summary.c index 43582da..3d5eda8 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -164,3 +164,3 @@ static void cgit_print_branches() | |||
164 | 164 | ||
165 | static void cgit_print_tags() | 165 | static void cgit_print_tags(int maxcount) |
166 | { | 166 | { |
@@ -176,4 +176,8 @@ static void cgit_print_tags() | |||
176 | qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); | 176 | qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); |
177 | if (!maxcount) | ||
178 | maxcount = list.count; | ||
179 | else if (maxcount > list.count) | ||
180 | maxcount = list.count; | ||
177 | print_tag_header(); | 181 | print_tag_header(); |
178 | for(i=0; i<list.count; i++) | 182 | for(i=0; i<maxcount; i++) |
179 | print_tag(list.refs[i]); | 183 | print_tag(list.refs[i]); |
@@ -208,3 +212,3 @@ void cgit_print_summary() | |||
208 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 212 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
209 | cgit_print_tags(); | 213 | cgit_print_tags(cgit_summary_tags); |
210 | html("</table>"); | 214 | html("</table>"); |