summaryrefslogtreecommitdiffabout
path: root/cgit.c
authorLars Hjemli <hjemli@gmail.com>2008-07-27 10:58:37 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-07-27 10:58:37 (UTC)
commit952f4ece296d91b8b41f56de9e1c3bc80f94f196 (patch) (unidiff)
tree3ad6b53b89c0508b70c6dbf9bb73a02252b8ff98 /cgit.c
parent25c84326deff579d5de4b880f9dca2690bdc8569 (diff)
downloadcgit-952f4ece296d91b8b41f56de9e1c3bc80f94f196.zip
cgit-952f4ece296d91b8b41f56de9e1c3bc80f94f196.tar.gz
cgit-952f4ece296d91b8b41f56de9e1c3bc80f94f196.tar.bz2
Modify default value for a few cgitrc options
The default max-length used when printing commit messages and repo descriptions can be increased due to the new layout (no sidebar). Also, on the repo summary page I believe it makes sense to only show the ten most recent branches and tags by default, just as it makes sense to show the ten most recent commit messages for the active branch. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c
index cefeddf..e2d5edb 100644
--- a/cgit.c
+++ b/cgit.c
@@ -171,6 +171,6 @@ static void prepare_context(struct cgit_context *ctx)
171 ctx->cfg.max_commit_count = 50; 171 ctx->cfg.max_commit_count = 50;
172 ctx->cfg.max_lock_attempts = 5; 172 ctx->cfg.max_lock_attempts = 5;
173 ctx->cfg.max_msg_len = 60; 173 ctx->cfg.max_msg_len = 80;
174 ctx->cfg.max_repodesc_len = 60; 174 ctx->cfg.max_repodesc_len = 80;
175 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; 175 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
176 ctx->cfg.renamelimit = -1; 176 ctx->cfg.renamelimit = -1;
@@ -179,4 +179,7 @@ static void prepare_context(struct cgit_context *ctx)
179 ctx->cfg.root_desc = "a fast webinterface for the git dscm"; 179 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
180 ctx->cfg.script_name = CGIT_SCRIPT_NAME; 180 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
181 ctx->cfg.summary_branches = 10;
182 ctx->cfg.summary_log = 10;
183 ctx->cfg.summary_tags = 10;
181 ctx->page.mimetype = "text/html"; 184 ctx->page.mimetype = "text/html";
182 ctx->page.charset = PAGE_ENCODING; 185 ctx->page.charset = PAGE_ENCODING;