about summary refs log tree commit diff
path: root/shared.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-12-14 00:40:34 +0100
committerLars Hjemli <hjemli@gmail.com>2006-12-14 00:40:34 +0100
commit420712ac2531f65a2b94d5ec6d8e03de6942331e (patch)
tree4849b20b4341a55d1b6435c104de860cda5f6ad6 /shared.c
parentAdd separate makefile-rule to clear current cache (diff)
downloadcgit-pink-420712ac2531f65a2b94d5ec6d8e03de6942331e.tar.gz
cgit-pink-420712ac2531f65a2b94d5ec6d8e03de6942331e.zip
Add simple pager to log page
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/shared.c b/shared.c
index c58a2ff..6b5cfc2 100644
--- a/shared.c
+++ b/shared.c
@@ -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);
 	}
 }