mirror of
https://git.zx2c4.com/cgit
synced 2025-07-02 14:24:33 +02:00
Add a pager on the repolist
This enables a pager on the repolist which restricts the number of entries displayed per page, controlled by the new option `max-repo-count` (default value 50). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
141f1c3eb6
commit
c6078b8b00
4 changed files with 32 additions and 1 deletions
3
cgit.c
3
cgit.c
|
@ -65,6 +65,8 @@ void config_cb(const char *name, const char *value)
|
|||
ctx.cfg.max_msg_len = atoi(value);
|
||||
else if (!strcmp(name, "max-repodesc-length"))
|
||||
ctx.cfg.max_repodesc_len = atoi(value);
|
||||
else if (!strcmp(name, "max-repo-count"))
|
||||
ctx.cfg.max_repo_count = atoi(value);
|
||||
else if (!strcmp(name, "max-commit-count"))
|
||||
ctx.cfg.max_commit_count = atoi(value);
|
||||
else if (!strcmp(name, "summary-log"))
|
||||
|
@ -159,6 +161,7 @@ static void prepare_context(struct cgit_context *ctx)
|
|||
ctx->cfg.cache_static_ttl = -1;
|
||||
ctx->cfg.css = "/cgit.css";
|
||||
ctx->cfg.logo = "/git-logo.png";
|
||||
ctx->cfg.max_repo_count = 50;
|
||||
ctx->cfg.max_commit_count = 50;
|
||||
ctx->cfg.max_lock_attempts = 5;
|
||||
ctx->cfg.max_msg_len = 60;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue