author | Lars Hjemli <hjemli@gmail.com> | 2006-12-16 12:43:01 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-16 12:43:01 (UTC) |
commit | 61245ad18545ab09b22e9fcce5e49d5d36bf8176 (patch) (unidiff) | |
tree | d20fb330a904abd0f15c68011eb15fe995eb0fe7 | |
parent | 521dc7a4bf4af6115ffc3a94d447689bbaa22272 (diff) | |
download | cgit-61245ad18545ab09b22e9fcce5e49d5d36bf8176.zip cgit-61245ad18545ab09b22e9fcce5e49d5d36bf8176.tar.gz cgit-61245ad18545ab09b22e9fcce5e49d5d36bf8176.tar.bz2 |
Add cache-root option to /cgit/rc
Somehow, this option was forgotten when parsing the configfile.
Add it.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | shared.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -48,24 +48,26 @@ void cgit_global_config_cb(const char *name, const char *value) | |||
48 | else if (!strcmp(name, "root-title")) | 48 | else if (!strcmp(name, "root-title")) |
49 | cgit_root_title = xstrdup(value); | 49 | cgit_root_title = xstrdup(value); |
50 | else if (!strcmp(name, "css")) | 50 | else if (!strcmp(name, "css")) |
51 | cgit_css = xstrdup(value); | 51 | cgit_css = xstrdup(value); |
52 | else if (!strcmp(name, "logo")) | 52 | else if (!strcmp(name, "logo")) |
53 | cgit_logo = xstrdup(value); | 53 | cgit_logo = xstrdup(value); |
54 | else if (!strcmp(name, "logo-link")) | 54 | else if (!strcmp(name, "logo-link")) |
55 | cgit_logo_link = xstrdup(value); | 55 | cgit_logo_link = xstrdup(value); |
56 | else if (!strcmp(name, "virtual-root")) | 56 | else if (!strcmp(name, "virtual-root")) |
57 | cgit_virtual_root = xstrdup(value); | 57 | cgit_virtual_root = xstrdup(value); |
58 | else if (!strcmp(name, "nocache")) | 58 | else if (!strcmp(name, "nocache")) |
59 | cgit_nocache = atoi(value); | 59 | cgit_nocache = atoi(value); |
60 | else if (!strcmp(name, "cache-root")) | ||
61 | cgit_cache_root = xstrdup(value); | ||
60 | } | 62 | } |
61 | 63 | ||
62 | void cgit_repo_config_cb(const char *name, const char *value) | 64 | void cgit_repo_config_cb(const char *name, const char *value) |
63 | { | 65 | { |
64 | if (!strcmp(name, "name")) | 66 | if (!strcmp(name, "name")) |
65 | cgit_repo_name = xstrdup(value); | 67 | cgit_repo_name = xstrdup(value); |
66 | else if (!strcmp(name, "desc")) | 68 | else if (!strcmp(name, "desc")) |
67 | cgit_repo_desc = xstrdup(value); | 69 | cgit_repo_desc = xstrdup(value); |
68 | else if (!strcmp(name, "owner")) | 70 | else if (!strcmp(name, "owner")) |
69 | cgit_repo_owner = xstrdup(value); | 71 | cgit_repo_owner = xstrdup(value); |
70 | } | 72 | } |
71 | 73 | ||