aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorGravatar Florian Pritz <bluewind@xinu.at>2013-02-01 18:59:13 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-02-01 20:50:24 (JST)
commitb1e172acca870e7999f2d2d917db7b4c42aa05b3 (patch)
treef68ddabb6975f6ac8ef67d55a585f5369f5e4fb2 /cgit.c
parentc6f5bc7264d9c3687a951a76ad93d15a01d7af59 (diff)
downloadcgit-b1e172acca870e7999f2d2d917db7b4c42aa05b3.zip
cgit-b1e172acca870e7999f2d2d917db7b4c42aa05b3.tar.gz
Make "owner" column on index page configurable
This is not really needed for personal sites where all repos belong to the same person. Since it is pretty useful for shared sites however, it should be configurable. Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index a97ed69..11edd81 100644
--- a/cgit.c
+++ b/cgit.c
@@ -172,6 +172,8 @@ void config_cb(const char *name, const char *value)
172 ctx.cfg.enable_http_clone = atoi(value); 172 ctx.cfg.enable_http_clone = atoi(value);
173 else if (!strcmp(name, "enable-index-links")) 173 else if (!strcmp(name, "enable-index-links"))
174 ctx.cfg.enable_index_links = atoi(value); 174 ctx.cfg.enable_index_links = atoi(value);
175 else if (!strcmp(name, "enable-index-owner"))
176 ctx.cfg.enable_index_owner = atoi(value);
175 else if (!strcmp(name, "enable-commit-graph")) 177 else if (!strcmp(name, "enable-commit-graph"))
176 ctx.cfg.enable_commit_graph = atoi(value); 178 ctx.cfg.enable_commit_graph = atoi(value);
177 else if (!strcmp(name, "enable-log-filecount")) 179 else if (!strcmp(name, "enable-log-filecount"))
@@ -354,6 +356,7 @@ static void prepare_context(struct cgit_context *ctx)
354 ctx->cfg.logo = "/cgit.png"; 356 ctx->cfg.logo = "/cgit.png";
355 ctx->cfg.local_time = 0; 357 ctx->cfg.local_time = 0;
356 ctx->cfg.enable_http_clone = 1; 358 ctx->cfg.enable_http_clone = 1;
359 ctx->cfg.enable_index_owner = 1;
357 ctx->cfg.enable_tree_linenumbers = 1; 360 ctx->cfg.enable_tree_linenumbers = 1;
358 ctx->cfg.enable_git_config = 0; 361 ctx->cfg.enable_git_config = 0;
359 ctx->cfg.max_repo_count = 50; 362 ctx->cfg.max_repo_count = 50;