|
diff --git a/shared.c b/shared.c index 18b795b..7def51a 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -31,16 +31,17 @@ char *cgit_repo_owner = NULL; |
31 | |
31 | |
32 | int cgit_query_has_symref = 0; |
32 | int cgit_query_has_symref = 0; |
33 | int cgit_query_has_sha1 = 0; |
33 | int cgit_query_has_sha1 = 0; |
34 | |
34 | |
35 | char *cgit_querystring = NULL; |
35 | char *cgit_querystring = NULL; |
36 | char *cgit_query_repo = NULL; |
36 | char *cgit_query_repo = NULL; |
37 | char *cgit_query_page = NULL; |
37 | char *cgit_query_page = NULL; |
38 | char *cgit_query_head = NULL; |
38 | char *cgit_query_head = NULL; |
| |
39 | char *cgit_query_search = NULL; |
39 | char *cgit_query_sha1 = NULL; |
40 | char *cgit_query_sha1 = NULL; |
40 | char *cgit_query_sha2 = NULL; |
41 | char *cgit_query_sha2 = NULL; |
41 | int cgit_query_ofs = 0; |
42 | int cgit_query_ofs = 0; |
42 | |
43 | |
43 | int htmlfd = 0; |
44 | int htmlfd = 0; |
44 | |
45 | |
45 | void cgit_global_config_cb(const char *name, const char *value) |
46 | void cgit_global_config_cb(const char *name, const char *value) |
46 | { |
47 | { |
@@ -81,16 +82,18 @@ void cgit_repo_config_cb(const char *name, const char *value) |
81 | } |
82 | } |
82 | |
83 | |
83 | void cgit_querystring_cb(const char *name, const char *value) |
84 | void cgit_querystring_cb(const char *name, const char *value) |
84 | { |
85 | { |
85 | if (!strcmp(name,"r")) { |
86 | if (!strcmp(name,"r")) { |
86 | cgit_query_repo = xstrdup(value); |
87 | cgit_query_repo = xstrdup(value); |
87 | } else if (!strcmp(name, "p")) { |
88 | } else if (!strcmp(name, "p")) { |
88 | cgit_query_page = xstrdup(value); |
89 | cgit_query_page = xstrdup(value); |
| |
90 | } else if (!strcmp(name, "q")) { |
| |
91 | cgit_query_search = xstrdup(value); |
89 | } else if (!strcmp(name, "h")) { |
92 | } else if (!strcmp(name, "h")) { |
90 | cgit_query_head = xstrdup(value); |
93 | cgit_query_head = xstrdup(value); |
91 | cgit_query_has_symref = 1; |
94 | cgit_query_has_symref = 1; |
92 | } else if (!strcmp(name, "id")) { |
95 | } else if (!strcmp(name, "id")) { |
93 | cgit_query_sha1 = xstrdup(value); |
96 | cgit_query_sha1 = xstrdup(value); |
94 | cgit_query_has_sha1 = 1; |
97 | cgit_query_has_sha1 = 1; |
95 | } else if (!strcmp(name, "id2")) { |
98 | } else if (!strcmp(name, "id2")) { |
96 | cgit_query_sha2 = xstrdup(value); |
99 | cgit_query_sha2 = xstrdup(value); |
|