Merge branch 'lh/mimetypes'

This commit is contained in:
Lars Hjemli
2009-08-09 13:45:36 +02:00
當前提交 17e3ff4264
共有 4 個文件被更改,包括 45 次插入5 次删除

11
cgit.c
查看文件

@ -17,6 +17,14 @@
const char *cgit_version = CGIT_VERSION;
void add_mimetype(const char *name, const char *value)
{
struct string_list_item *item;
item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes);
item->util = xstrdup(value);
}
void config_cb(const char *name, const char *value)
{
if (!strcmp(name, "root-title"))
@ -103,6 +111,8 @@ void config_cb(const char *name, const char *value)
ctx.cfg.clone_prefix = xstrdup(value);
else if (!strcmp(name, "local-time"))
ctx.cfg.local_time = atoi(value);
else if (!prefixcmp(name, "mimetype."))
add_mimetype(name + 9, value);
else if (!strcmp(name, "repo.group"))
ctx.cfg.repo_group = xstrdup(value);
else if (!strcmp(name, "repo.url"))
@ -215,6 +225,7 @@ static void prepare_context(struct cgit_context *ctx)
ctx->page.modified = time(NULL);
ctx->page.expires = ctx->page.modified;
ctx->page.etag = NULL;
memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list));
}
struct refmatch {