diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2006-12-14 00:40:34 +0100 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-14 00:40:34 +0100 | 
| commit | 420712ac2531f65a2b94d5ec6d8e03de6942331e (patch) | |
| tree | 4849b20b4341a55d1b6435c104de860cda5f6ad6 /shared.c | |
| parent | Add separate makefile-rule to clear current cache (diff) | |
| download | cgit-420712ac2531f65a2b94d5ec6d8e03de6942331e.tar.gz cgit-420712ac2531f65a2b94d5ec6d8e03de6942331e.tar.bz2 cgit-420712ac2531f65a2b94d5ec6d8e03de6942331e.zip | |
Add simple pager to log page
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | shared.c | 9 | 
1 files changed, 6 insertions, 3 deletions
| @@ -28,6 +28,7 @@ char *cgit_query_repo   = NULL;  char *cgit_query_page   = NULL;  char *cgit_query_head   = NULL;  char *cgit_query_sha1   = NULL; +int   cgit_query_ofs    = 0;  int htmlfd = 0; @@ -59,16 +60,18 @@ void cgit_repo_config_cb(const char *name, const char *value)  void cgit_querystring_cb(const char *name, const char *value)  { -	if (!strcmp(name,"r")) +	if (!strcmp(name,"r")) {  		cgit_query_repo = xstrdup(value); -	else if (!strcmp(name, "p")) +	} else if (!strcmp(name, "p")) {  		cgit_query_page = xstrdup(value); -	else if (!strcmp(name, "h")) { +	} else if (!strcmp(name, "h")) {  		cgit_query_head = xstrdup(value);  		cgit_query_has_symref = 1;  	} else if (!strcmp(name, "id")) {  		cgit_query_sha1 = xstrdup(value);  		cgit_query_has_sha1 = 1; +	} else if (!strcmp(name, "ofs")) { +		cgit_query_ofs = atoi(value);  	}  } | 
