|
diff --git a/cgit.c b/cgit.c index 3e7e595..431e8fb 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -6,30 +6,16 @@ |
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 | const char cgit_version[] = CGIT_VERSION; |
11 | const char cgit_version[] = CGIT_VERSION; |
12 | |
12 | |
13 | |
13 | |
14 | static struct repoinfo *cgit_get_repoinfo(char *url) |
| |
15 | { |
| |
16 | int i; |
| |
17 | struct repoinfo *repo; |
| |
18 | |
| |
19 | for (i=0; i<cgit_repolist.count; i++) { |
| |
20 | repo = &cgit_repolist.repos[i]; |
| |
21 | if (!strcmp(repo->url, url)) |
| |
22 | return repo; |
| |
23 | } |
| |
24 | return NULL; |
| |
25 | } |
| |
26 | |
| |
27 | |
| |
28 | static int cgit_prepare_cache(struct cacheitem *item) |
14 | static int cgit_prepare_cache(struct cacheitem *item) |
29 | { |
15 | { |
30 | if (!cgit_query_repo) { |
16 | if (!cgit_query_repo) { |
31 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); |
17 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); |
32 | item->ttl = cgit_cache_root_ttl; |
18 | item->ttl = cgit_cache_root_ttl; |
33 | return 1; |
19 | return 1; |
34 | } |
20 | } |
35 | cgit_repo = cgit_get_repoinfo(cgit_query_repo); |
21 | cgit_repo = cgit_get_repoinfo(cgit_query_repo); |
|
|
diff --git a/cgit.h b/cgit.h index f3d783e..a38981d 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -107,16 +107,17 @@ extern char *cgit_query_head; |
107 | extern char *cgit_query_sha1; |
107 | extern char *cgit_query_sha1; |
108 | extern char *cgit_query_sha2; |
108 | extern char *cgit_query_sha2; |
109 | extern char *cgit_query_path; |
109 | extern char *cgit_query_path; |
110 | extern char *cgit_query_name; |
110 | extern char *cgit_query_name; |
111 | extern int cgit_query_ofs; |
111 | extern int cgit_query_ofs; |
112 | |
112 | |
113 | extern int htmlfd; |
113 | extern int htmlfd; |
114 | |
114 | |
| |
115 | extern struct repoinfo *cgit_get_repoinfo(const char *url); |
115 | extern void cgit_global_config_cb(const char *name, const char *value); |
116 | extern void cgit_global_config_cb(const char *name, const char *value); |
116 | extern void cgit_repo_config_cb(const char *name, const char *value); |
117 | extern void cgit_repo_config_cb(const char *name, const char *value); |
117 | extern void cgit_querystring_cb(const char *name, const char *value); |
118 | extern void cgit_querystring_cb(const char *name, const char *value); |
118 | |
119 | |
119 | extern int chk_zero(int result, char *msg); |
120 | extern int chk_zero(int result, char *msg); |
120 | extern int chk_positive(int result, char *msg); |
121 | extern int chk_positive(int result, char *msg); |
121 | |
122 | |
122 | extern int hextoint(char c); |
123 | extern int hextoint(char c); |
|
|
diff --git a/shared.c b/shared.c index 53cd9b0..b164d81 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -88,16 +88,29 @@ struct repoinfo *add_repo(const char *url) |
88 | ret->defbranch = "master"; |
88 | ret->defbranch = "master"; |
89 | ret->snapshots = cgit_snapshots; |
89 | ret->snapshots = cgit_snapshots; |
90 | ret->enable_log_filecount = cgit_enable_log_filecount; |
90 | ret->enable_log_filecount = cgit_enable_log_filecount; |
91 | ret->enable_log_linecount = cgit_enable_log_linecount; |
91 | ret->enable_log_linecount = cgit_enable_log_linecount; |
92 | ret->module_link = cgit_module_link; |
92 | ret->module_link = cgit_module_link; |
93 | return ret; |
93 | return ret; |
94 | } |
94 | } |
95 | |
95 | |
| |
96 | struct repoinfo *cgit_get_repoinfo(const char *url) |
| |
97 | { |
| |
98 | int i; |
| |
99 | struct repoinfo *repo; |
| |
100 | |
| |
101 | for (i=0; i<cgit_repolist.count; i++) { |
| |
102 | repo = &cgit_repolist.repos[i]; |
| |
103 | if (!strcmp(repo->url, url)) |
| |
104 | return repo; |
| |
105 | } |
| |
106 | return NULL; |
| |
107 | } |
| |
108 | |
96 | void cgit_global_config_cb(const char *name, const char *value) |
109 | void cgit_global_config_cb(const char *name, const char *value) |
97 | { |
110 | { |
98 | if (!strcmp(name, "root-title")) |
111 | if (!strcmp(name, "root-title")) |
99 | cgit_root_title = xstrdup(value); |
112 | cgit_root_title = xstrdup(value); |
100 | else if (!strcmp(name, "css")) |
113 | else if (!strcmp(name, "css")) |
101 | cgit_css = xstrdup(value); |
114 | cgit_css = xstrdup(value); |
102 | else if (!strcmp(name, "logo")) |
115 | else if (!strcmp(name, "logo")) |
103 | cgit_logo = xstrdup(value); |
116 | cgit_logo = xstrdup(value); |
|