summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-10-25 08:40:16 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-10-27 08:53:27 (UTC)
commitfe211c7eef6c7d3e39486d6a7484d3b4debff88f (patch) (unidiff)
tree1b77d4b541cd5848ae1ad8d48e17e7d0f1a8b017
parentef1cc6ef941cedf2e34fa1ed34ca8cd8a0cfdacc (diff)
downloadcgit-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>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
-rw-r--r--shared.c3
-rw-r--r--ui-summary.c10
3 files changed, 11 insertions, 3 deletions
diff --git a/cgit.h b/cgit.h
index 75e919b..53e1336 100644
--- a/cgit.h
+++ b/cgit.h
@@ -140,12 +140,13 @@ extern int cgit_max_lock_attempts;
140extern int cgit_cache_root_ttl; 140extern int cgit_cache_root_ttl;
141extern int cgit_cache_repo_ttl; 141extern int cgit_cache_repo_ttl;
142extern int cgit_cache_dynamic_ttl; 142extern int cgit_cache_dynamic_ttl;
143extern int cgit_cache_static_ttl; 143extern int cgit_cache_static_ttl;
144extern int cgit_cache_max_create_time; 144extern int cgit_cache_max_create_time;
145extern int cgit_summary_log; 145extern int cgit_summary_log;
146extern int cgit_summary_tags;
146 147
147extern int cgit_max_msg_len; 148extern int cgit_max_msg_len;
148extern int cgit_max_repodesc_len; 149extern int cgit_max_repodesc_len;
149extern int cgit_max_commit_count; 150extern int cgit_max_commit_count;
150 151
151extern int cgit_query_has_symref; 152extern int cgit_query_has_symref;
diff --git a/shared.c b/shared.c
index d815cb1..7e5eaba 100644
--- a/shared.c
+++ b/shared.c
@@ -35,12 +35,13 @@ int cgit_max_lock_attempts = 5;
35int cgit_cache_root_ttl = 5; 35int cgit_cache_root_ttl = 5;
36int cgit_cache_repo_ttl = 5; 36int cgit_cache_repo_ttl = 5;
37int cgit_cache_dynamic_ttl = 5; 37int cgit_cache_dynamic_ttl = 5;
38int cgit_cache_static_ttl = -1; 38int cgit_cache_static_ttl = -1;
39int cgit_cache_max_create_time = 5; 39int cgit_cache_max_create_time = 5;
40int cgit_summary_log = 0; 40int cgit_summary_log = 0;
41int cgit_summary_tags = 0;
41int cgit_renamelimit = -1; 42int cgit_renamelimit = -1;
42 43
43int cgit_max_msg_len = 60; 44int cgit_max_msg_len = 60;
44int cgit_max_repodesc_len = 60; 45int cgit_max_repodesc_len = 60;
45int cgit_max_commit_count = 50; 46int cgit_max_commit_count = 50;
46 47
@@ -178,12 +179,14 @@ void cgit_global_config_cb(const char *name, const char *value)
178 else if (!strcmp(name, "max-repodesc-length")) 179 else if (!strcmp(name, "max-repodesc-length"))
179 cgit_max_repodesc_len = atoi(value); 180 cgit_max_repodesc_len = atoi(value);
180 else if (!strcmp(name, "max-commit-count")) 181 else if (!strcmp(name, "max-commit-count"))
181 cgit_max_commit_count = atoi(value); 182 cgit_max_commit_count = atoi(value);
182 else if (!strcmp(name, "summary-log")) 183 else if (!strcmp(name, "summary-log"))
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"))
185 cgit_agefile = xstrdup(value); 188 cgit_agefile = xstrdup(value);
186 else if (!strcmp(name, "renamelimit")) 189 else if (!strcmp(name, "renamelimit"))
187 cgit_renamelimit = atoi(value); 190 cgit_renamelimit = atoi(value);
188 else if (!strcmp(name, "repo.group")) 191 else if (!strcmp(name, "repo.group"))
189 cgit_repo_group = xstrdup(value); 192 cgit_repo_group = xstrdup(value);
diff --git a/ui-summary.c b/ui-summary.c
index 43582da..3d5eda8 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -159,26 +159,30 @@ static void cgit_print_branches()
159 list.alloc = list.count = 0; 159 list.alloc = list.count = 0;
160 for_each_branch_ref(cgit_refs_cb, &list); 160 for_each_branch_ref(cgit_refs_cb, &list);
161 for(i=0; i<list.count; i++) 161 for(i=0; i<list.count; i++)
162 cgit_print_branch(list.refs[i]); 162 cgit_print_branch(list.refs[i]);
163} 163}
164 164
165static void cgit_print_tags() 165static void cgit_print_tags(int maxcount)
166{ 166{
167 struct reflist list; 167 struct reflist list;
168 int i; 168 int i;
169 169
170 header = 0; 170 header = 0;
171 list.refs = NULL; 171 list.refs = NULL;
172 list.alloc = list.count = 0; 172 list.alloc = list.count = 0;
173 for_each_tag_ref(cgit_refs_cb, &list); 173 for_each_tag_ref(cgit_refs_cb, &list);
174 if (list.count == 0) 174 if (list.count == 0)
175 return; 175 return;
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]);
180} 184}
181 185
182static void cgit_print_archives() 186static void cgit_print_archives()
183{ 187{
184 header = 0; 188 header = 0;
@@ -203,9 +207,9 @@ void cgit_print_summary()
203 cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, NULL, 0); 207 cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, NULL, 0);
204 html("<table class='list nowrap'>"); 208 html("<table class='list nowrap'>");
205 if (cgit_summary_log > 0) 209 if (cgit_summary_log > 0)
206 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>"); 210 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
207 cgit_print_branches(); 211 cgit_print_branches();
208 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>"); 212 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
209 cgit_print_tags(); 213 cgit_print_tags(cgit_summary_tags);
210 html("</table>"); 214 html("</table>");
211} 215}