|
diff --git a/shared.c b/shared.c index 4574120..b576df8 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -43,48 +43,58 @@ int htmlfd = 0; |
43 | |
43 | |
44 | void cgit_global_config_cb(const char *name, const char *value) |
44 | void cgit_global_config_cb(const char *name, const char *value) |
45 | { |
45 | { |
46 | if (!strcmp(name, "root")) |
46 | if (!strcmp(name, "root")) |
47 | cgit_root = xstrdup(value); |
47 | cgit_root = xstrdup(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")) |
60 | else if (!strcmp(name, "cache-root")) |
61 | cgit_cache_root = xstrdup(value); |
61 | cgit_cache_root = xstrdup(value); |
62 | } |
62 | } |
63 | |
63 | |
64 | void cgit_repo_config_cb(const char *name, const char *value) |
64 | void cgit_repo_config_cb(const char *name, const char *value) |
65 | { |
65 | { |
66 | if (!strcmp(name, "name")) |
66 | if (!strcmp(name, "name")) |
67 | cgit_repo_name = xstrdup(value); |
67 | cgit_repo_name = xstrdup(value); |
68 | else if (!strcmp(name, "desc")) |
68 | else if (!strcmp(name, "desc")) |
69 | cgit_repo_desc = xstrdup(value); |
69 | cgit_repo_desc = xstrdup(value); |
70 | else if (!strcmp(name, "owner")) |
70 | else if (!strcmp(name, "owner")) |
71 | cgit_repo_owner = xstrdup(value); |
71 | cgit_repo_owner = xstrdup(value); |
72 | } |
72 | } |
73 | |
73 | |
74 | void cgit_querystring_cb(const char *name, const char *value) |
74 | void cgit_querystring_cb(const char *name, const char *value) |
75 | { |
75 | { |
76 | if (!strcmp(name,"r")) { |
76 | if (!strcmp(name,"r")) { |
77 | cgit_query_repo = xstrdup(value); |
77 | cgit_query_repo = xstrdup(value); |
78 | } else if (!strcmp(name, "p")) { |
78 | } else if (!strcmp(name, "p")) { |
79 | cgit_query_page = xstrdup(value); |
79 | cgit_query_page = xstrdup(value); |
80 | } else if (!strcmp(name, "h")) { |
80 | } else if (!strcmp(name, "h")) { |
81 | cgit_query_head = xstrdup(value); |
81 | cgit_query_head = xstrdup(value); |
82 | cgit_query_has_symref = 1; |
82 | cgit_query_has_symref = 1; |
83 | } else if (!strcmp(name, "id")) { |
83 | } else if (!strcmp(name, "id")) { |
84 | cgit_query_sha1 = xstrdup(value); |
84 | cgit_query_sha1 = xstrdup(value); |
85 | cgit_query_has_sha1 = 1; |
85 | cgit_query_has_sha1 = 1; |
86 | } else if (!strcmp(name, "ofs")) { |
86 | } else if (!strcmp(name, "ofs")) { |
87 | cgit_query_ofs = atoi(value); |
87 | cgit_query_ofs = atoi(value); |
88 | } |
88 | } |
89 | } |
89 | } |
90 | |
90 | |
| |
91 | void *cgit_free_commitinfo(struct commitinfo *info) |
| |
92 | { |
| |
93 | free(info->author); |
| |
94 | free(info->author_email); |
| |
95 | free(info->committer); |
| |
96 | free(info->committer_email); |
| |
97 | free(info->subject); |
| |
98 | free(info); |
| |
99 | return NULL; |
| |
100 | } |
|