|
diff --git a/cgit.c b/cgit.c index e9bafb5..9452884 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -231,48 +231,50 @@ static void querystring_cb(const char *name, const char *value) |
231 | } else if (!strcmp(name, "id")) { |
231 | } else if (!strcmp(name, "id")) { |
232 | ctx.qry.sha1 = xstrdup(value); |
232 | ctx.qry.sha1 = xstrdup(value); |
233 | ctx.qry.has_sha1 = 1; |
233 | ctx.qry.has_sha1 = 1; |
234 | } else if (!strcmp(name, "id2")) { |
234 | } else if (!strcmp(name, "id2")) { |
235 | ctx.qry.sha2 = xstrdup(value); |
235 | ctx.qry.sha2 = xstrdup(value); |
236 | ctx.qry.has_sha1 = 1; |
236 | ctx.qry.has_sha1 = 1; |
237 | } else if (!strcmp(name, "ofs")) { |
237 | } else if (!strcmp(name, "ofs")) { |
238 | ctx.qry.ofs = atoi(value); |
238 | ctx.qry.ofs = atoi(value); |
239 | } else if (!strcmp(name, "path")) { |
239 | } else if (!strcmp(name, "path")) { |
240 | ctx.qry.path = trim_end(value, '/'); |
240 | ctx.qry.path = trim_end(value, '/'); |
241 | } else if (!strcmp(name, "name")) { |
241 | } else if (!strcmp(name, "name")) { |
242 | ctx.qry.name = xstrdup(value); |
242 | ctx.qry.name = xstrdup(value); |
243 | } else if (!strcmp(name, "mimetype")) { |
243 | } else if (!strcmp(name, "mimetype")) { |
244 | ctx.qry.mimetype = xstrdup(value); |
244 | ctx.qry.mimetype = xstrdup(value); |
245 | } else if (!strcmp(name, "s")){ |
245 | } else if (!strcmp(name, "s")){ |
246 | ctx.qry.sort = xstrdup(value); |
246 | ctx.qry.sort = xstrdup(value); |
247 | } else if (!strcmp(name, "showmsg")) { |
247 | } else if (!strcmp(name, "showmsg")) { |
248 | ctx.qry.showmsg = atoi(value); |
248 | ctx.qry.showmsg = atoi(value); |
249 | } else if (!strcmp(name, "period")) { |
249 | } else if (!strcmp(name, "period")) { |
250 | ctx.qry.period = xstrdup(value); |
250 | ctx.qry.period = xstrdup(value); |
251 | } else if (!strcmp(name, "ss")) { |
251 | } else if (!strcmp(name, "ss")) { |
252 | ctx.qry.ssdiff = atoi(value); |
252 | ctx.qry.ssdiff = atoi(value); |
253 | } else if (!strcmp(name, "context")) { |
253 | } else if (!strcmp(name, "context")) { |
254 | ctx.qry.context = atoi(value); |
254 | ctx.qry.context = atoi(value); |
| |
255 | } else if (!strcmp(name, "ignorews")) { |
| |
256 | ctx.qry.ignorews = atoi(value); |
255 | } |
257 | } |
256 | } |
258 | } |
257 | |
259 | |
258 | char *xstrdupn(const char *str) |
260 | char *xstrdupn(const char *str) |
259 | { |
261 | { |
260 | return (str ? xstrdup(str) : NULL); |
262 | return (str ? xstrdup(str) : NULL); |
261 | } |
263 | } |
262 | |
264 | |
263 | static void prepare_context(struct cgit_context *ctx) |
265 | static void prepare_context(struct cgit_context *ctx) |
264 | { |
266 | { |
265 | memset(ctx, 0, sizeof(*ctx)); |
267 | memset(ctx, 0, sizeof(*ctx)); |
266 | ctx->cfg.agefile = "info/web/last-modified"; |
268 | ctx->cfg.agefile = "info/web/last-modified"; |
267 | ctx->cfg.nocache = 0; |
269 | ctx->cfg.nocache = 0; |
268 | ctx->cfg.cache_size = 0; |
270 | ctx->cfg.cache_size = 0; |
269 | ctx->cfg.cache_dynamic_ttl = 5; |
271 | ctx->cfg.cache_dynamic_ttl = 5; |
270 | ctx->cfg.cache_max_create_time = 5; |
272 | ctx->cfg.cache_max_create_time = 5; |
271 | ctx->cfg.cache_repo_ttl = 5; |
273 | ctx->cfg.cache_repo_ttl = 5; |
272 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
274 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
273 | ctx->cfg.cache_root_ttl = 5; |
275 | ctx->cfg.cache_root_ttl = 5; |
274 | ctx->cfg.cache_scanrc_ttl = 15; |
276 | ctx->cfg.cache_scanrc_ttl = 15; |
275 | ctx->cfg.cache_static_ttl = -1; |
277 | ctx->cfg.cache_static_ttl = -1; |
276 | ctx->cfg.css = "/cgit.css"; |
278 | ctx->cfg.css = "/cgit.css"; |
277 | ctx->cfg.logo = "/cgit.png"; |
279 | ctx->cfg.logo = "/cgit.png"; |
278 | ctx->cfg.local_time = 0; |
280 | ctx->cfg.local_time = 0; |
|