|
diff --git a/cgit.c b/cgit.c index bd37788..a17f40d 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -196,32 +196,34 @@ void config_cb(const char *name, const char *value) |
196 | add_mimetype(name + 9, value); |
196 | add_mimetype(name + 9, value); |
197 | else if (!strcmp(name, "include")) |
197 | else if (!strcmp(name, "include")) |
198 | parse_configfile(value, config_cb); |
198 | parse_configfile(value, config_cb); |
199 | } |
199 | } |
200 | |
200 | |
201 | static void querystring_cb(const char *name, const char *value) |
201 | static void querystring_cb(const char *name, const char *value) |
202 | { |
202 | { |
203 | if (!value) |
203 | if (!value) |
204 | value = ""; |
204 | value = ""; |
205 | |
205 | |
206 | if (!strcmp(name,"r")) { |
206 | if (!strcmp(name,"r")) { |
207 | ctx.qry.repo = xstrdup(value); |
207 | ctx.qry.repo = xstrdup(value); |
208 | ctx.repo = cgit_get_repoinfo(value); |
208 | ctx.repo = cgit_get_repoinfo(value); |
209 | } else if (!strcmp(name, "p")) { |
209 | } else if (!strcmp(name, "p")) { |
210 | ctx.qry.page = xstrdup(value); |
210 | ctx.qry.page = xstrdup(value); |
211 | } else if (!strcmp(name, "url")) { |
211 | } else if (!strcmp(name, "url")) { |
| |
212 | if (*value == '/') |
| |
213 | value++; |
212 | ctx.qry.url = xstrdup(value); |
214 | ctx.qry.url = xstrdup(value); |
213 | cgit_parse_url(value); |
215 | cgit_parse_url(value); |
214 | } else if (!strcmp(name, "qt")) { |
216 | } else if (!strcmp(name, "qt")) { |
215 | ctx.qry.grep = xstrdup(value); |
217 | ctx.qry.grep = xstrdup(value); |
216 | } else if (!strcmp(name, "q")) { |
218 | } else if (!strcmp(name, "q")) { |
217 | ctx.qry.search = xstrdup(value); |
219 | ctx.qry.search = xstrdup(value); |
218 | } else if (!strcmp(name, "h")) { |
220 | } else if (!strcmp(name, "h")) { |
219 | ctx.qry.head = xstrdup(value); |
221 | ctx.qry.head = xstrdup(value); |
220 | ctx.qry.has_symref = 1; |
222 | ctx.qry.has_symref = 1; |
221 | } else if (!strcmp(name, "id")) { |
223 | } else if (!strcmp(name, "id")) { |
222 | ctx.qry.sha1 = xstrdup(value); |
224 | ctx.qry.sha1 = xstrdup(value); |
223 | ctx.qry.has_sha1 = 1; |
225 | ctx.qry.has_sha1 = 1; |
224 | } else if (!strcmp(name, "id2")) { |
226 | } else if (!strcmp(name, "id2")) { |
225 | ctx.qry.sha2 = xstrdup(value); |
227 | ctx.qry.sha2 = xstrdup(value); |
226 | ctx.qry.has_sha1 = 1; |
228 | ctx.qry.has_sha1 = 1; |
227 | } else if (!strcmp(name, "ofs")) { |
229 | } else if (!strcmp(name, "ofs")) { |
|