|
diff --git a/shared.c b/shared.c index 808e674..76e10d0 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -1,34 +1,32 @@ |
1 | /* shared.c: global vars + some callback functions |
1 | /* shared.c: global vars + some callback functions |
2 | * |
2 | * |
3 | * Copyright (C) 2006 Lars Hjemli |
3 | * Copyright (C) 2006 Lars Hjemli |
4 | * |
4 | * |
5 | * Licensed under GNU General Public License v2 |
5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) |
6 | * (see COPYING for full license text) |
7 | */ |
7 | */ |
8 | |
8 | |
9 | #include "cgit.h" |
9 | #include "cgit.h" |
10 | |
10 | |
11 | struct cgit_repolist cgit_repolist; |
11 | struct cgit_repolist cgit_repolist; |
12 | struct cgit_context ctx; |
12 | struct cgit_context ctx; |
13 | int cgit_cmd; |
13 | int cgit_cmd; |
14 | |
14 | |
15 | const char *cgit_version = CGIT_VERSION; |
15 | const char *cgit_version = CGIT_VERSION; |
16 | |
16 | |
17 | int htmlfd = 0; |
| |
18 | |
| |
19 | void cgit_prepare_context(struct cgit_context *ctx) |
17 | void cgit_prepare_context(struct cgit_context *ctx) |
20 | { |
18 | { |
21 | memset(ctx, 0, sizeof(ctx)); |
19 | memset(ctx, 0, sizeof(ctx)); |
22 | ctx->cfg.agefile = "info/web/last-modified"; |
20 | ctx->cfg.agefile = "info/web/last-modified"; |
23 | ctx->cfg.cache_dynamic_ttl = 5; |
21 | ctx->cfg.cache_dynamic_ttl = 5; |
24 | ctx->cfg.cache_max_create_time = 5; |
22 | ctx->cfg.cache_max_create_time = 5; |
25 | ctx->cfg.cache_repo_ttl = 5; |
23 | ctx->cfg.cache_repo_ttl = 5; |
26 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
24 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
27 | ctx->cfg.cache_root_ttl = 5; |
25 | ctx->cfg.cache_root_ttl = 5; |
28 | ctx->cfg.cache_static_ttl = -1; |
26 | ctx->cfg.cache_static_ttl = -1; |
29 | ctx->cfg.css = "/cgit.css"; |
27 | ctx->cfg.css = "/cgit.css"; |
30 | ctx->cfg.logo = "/git-logo.png"; |
28 | ctx->cfg.logo = "/git-logo.png"; |
31 | ctx->cfg.max_commit_count = 50; |
29 | ctx->cfg.max_commit_count = 50; |
32 | ctx->cfg.max_lock_attempts = 5; |
30 | ctx->cfg.max_lock_attempts = 5; |
33 | ctx->cfg.max_msg_len = 60; |
31 | ctx->cfg.max_msg_len = 60; |
34 | ctx->cfg.max_repodesc_len = 60; |
32 | ctx->cfg.max_repodesc_len = 60; |
|