diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2008-05-03 10:54:39 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2008-05-03 10:54:39 +0200 | 
| commit | c6078b8b006bcb0671a3c1bc21dd1a2c01035a2e (patch) | |
| tree | 0ca48d3ac455a7aecd30590ed71703ba5b34c4f1 /cgit.c | |
| parent | Add cgit_index_link() function with support for offset (diff) | |
| download | cgit-c6078b8b006bcb0671a3c1bc21dd1a2c01035a2e.tar.gz cgit-c6078b8b006bcb0671a3c1bc21dd1a2c01035a2e.tar.bz2 cgit-c6078b8b006bcb0671a3c1bc21dd1a2c01035a2e.zip | |
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>
Diffstat (limited to '')
| -rw-r--r-- | cgit.c | 3 | ||||
| -rw-r--r-- | cgit.css | 10 | 
2 files changed, 13 insertions, 0 deletions
| @@ -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; @@ -413,6 +413,16 @@ table.list td.sublevel-repo {  	padding-left: 1.5em;  } +div.pager { +	text-align: center; +	margin: 1em 0em 0em 0em; +} + +div.pager a { +	color: #777; +	margin: 0em 0.5em; +} +  span.age-mins {  	font-weight: bold;  	color: #080; | 
