summaryrefslogtreecommitdiffabout
path: root/shared.c
authorLars Hjemli <hjemli@gmail.com>2007-01-28 11:17:03 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-01-28 11:17:03 (UTC)
commit7dd50c98d73bf6c579b8ce5893739a2d0ffc00d5 (patch) (unidiff)
tree17f0e21c129723468a1f291faba52580993a39b1 /shared.c
parentd8b0cca2606f8919208ea68549ff60c6e5fe91bb (diff)
downloadcgit-7dd50c98d73bf6c579b8ce5893739a2d0ffc00d5.zip
cgit-7dd50c98d73bf6c579b8ce5893739a2d0ffc00d5.tar.gz
cgit-7dd50c98d73bf6c579b8ce5893739a2d0ffc00d5.tar.bz2
Add parameter to adjust max message length in log listings
The parameter "max-message-length" can be specified in cgitrc, default value is 60. This affects the log message shown in repo summary and shortlog. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--shared.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index dd711a8..8e6df31 100644
--- a/shared.c
+++ b/shared.c
@@ -25,6 +25,8 @@ int cgit_cache_dynamic_ttl = 5;
25int cgit_cache_static_ttl = -1; 25int cgit_cache_static_ttl = -1;
26int cgit_cache_max_create_time = 5; 26int cgit_cache_max_create_time = 5;
27 27
28int cgit_max_msg_len = 60;
29
28char *cgit_repo_name = NULL; 30char *cgit_repo_name = NULL;
29char *cgit_repo_desc = NULL; 31char *cgit_repo_desc = NULL;
30char *cgit_repo_owner = NULL; 32char *cgit_repo_owner = NULL;
@@ -70,6 +72,8 @@ void cgit_global_config_cb(const char *name, const char *value)
70 cgit_cache_static_ttl = atoi(value); 72 cgit_cache_static_ttl = atoi(value);
71 else if (!strcmp(name, "cache-dynamic-ttl")) 73 else if (!strcmp(name, "cache-dynamic-ttl"))
72 cgit_cache_dynamic_ttl = atoi(value); 74 cgit_cache_dynamic_ttl = atoi(value);
75 else if (!strcmp(name, "max-message-length"))
76 cgit_max_msg_len = atoi(value);
73} 77}
74 78
75void cgit_repo_config_cb(const char *name, const char *value) 79void cgit_repo_config_cb(const char *name, const char *value)