|
diff --git a/cgit.c b/cgit.c index 808ffe9..110face 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -1,42 +1,44 @@ |
1 | /* cgit.c: cgi for the git scm |
1 | /* cgit.c: cgi for the git scm |
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 | static const char cgit_doctype[] = |
11 | const char cgit_version[] = CGIT_VERSION; |
| |
12 | |
| |
13 | const char cgit_doctype[] = |
12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
13 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
14 | |
16 | |
15 | static const char cgit_error[] = |
17 | const char cgit_error[] = |
16 | "<div class='error'>%s</div>"; |
18 | "<div class='error'>%s</div>"; |
17 | |
19 | |
18 | static const char cgit_lib_error[] = |
20 | const char cgit_lib_error[] = |
19 | "<div class='error'>%s: %s</div>"; |
21 | "<div class='error'>%s: %s</div>"; |
20 | |
22 | |
21 | int htmlfd = 0; |
23 | int htmlfd = 0; |
22 | |
24 | |
23 | char *cgit_root = "/usr/src/git"; |
25 | char *cgit_root = "/usr/src/git"; |
24 | char *cgit_root_title = "Git repository browser"; |
26 | char *cgit_root_title = "Git repository browser"; |
25 | char *cgit_css = "/cgit.css"; |
27 | char *cgit_css = "/cgit.css"; |
26 | char *cgit_logo = "/git-logo.png"; |
28 | char *cgit_logo = "/git-logo.png"; |
27 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
29 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
28 | char *cgit_virtual_root = NULL; |
30 | char *cgit_virtual_root = NULL; |
29 | |
31 | |
30 | char *cgit_cache_root = "/var/cache/cgit"; |
32 | char *cgit_cache_root = "/var/cache/cgit"; |
31 | |
33 | |
32 | int cgit_cache_root_ttl = 5; |
34 | int cgit_cache_root_ttl = 5; |
33 | int cgit_cache_repo_ttl = 5; |
35 | int cgit_cache_repo_ttl = 5; |
34 | int cgit_cache_dynamic_ttl = 5; |
36 | int cgit_cache_dynamic_ttl = 5; |
35 | int cgit_cache_static_ttl = -1; |
37 | int cgit_cache_static_ttl = -1; |
36 | int cgit_cache_max_create_time = 5; |
38 | int cgit_cache_max_create_time = 5; |
37 | |
39 | |
38 | char *cgit_repo_name = NULL; |
40 | char *cgit_repo_name = NULL; |
39 | char *cgit_repo_desc = NULL; |
41 | char *cgit_repo_desc = NULL; |
40 | char *cgit_repo_owner = NULL; |
42 | char *cgit_repo_owner = NULL; |
41 | |
43 | |
42 | int cgit_query_has_symref = 0; |
44 | int cgit_query_has_symref = 0; |
@@ -179,48 +181,49 @@ static char *http_date(time_t t) |
179 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
181 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
180 | } |
182 | } |
181 | |
183 | |
182 | static int ttl_seconds(int ttl) |
184 | static int ttl_seconds(int ttl) |
183 | { |
185 | { |
184 | if (ttl<0) |
186 | if (ttl<0) |
185 | return 60 * 60 * 24 * 365; |
187 | return 60 * 60 * 24 * 365; |
186 | else |
188 | else |
187 | return ttl * 60; |
189 | return ttl * 60; |
188 | } |
190 | } |
189 | |
191 | |
190 | static void cgit_print_docstart(char *title) |
192 | static void cgit_print_docstart(char *title) |
191 | { |
193 | { |
192 | html("Content-Type: text/html; charset=utf-8\n"); |
194 | html("Content-Type: text/html; charset=utf-8\n"); |
193 | htmlf("Last-Modified: %s\n", http_date(cacheitem.st.st_mtime)); |
195 | htmlf("Last-Modified: %s\n", http_date(cacheitem.st.st_mtime)); |
194 | htmlf("Expires: %s\n", http_date(cacheitem.st.st_mtime + |
196 | htmlf("Expires: %s\n", http_date(cacheitem.st.st_mtime + |
195 | ttl_seconds(cacheitem.ttl))); |
197 | ttl_seconds(cacheitem.ttl))); |
196 | html("\n"); |
198 | html("\n"); |
197 | html(cgit_doctype); |
199 | html(cgit_doctype); |
198 | html("<html>\n"); |
200 | html("<html>\n"); |
199 | html("<head>\n"); |
201 | html("<head>\n"); |
200 | html("<title>"); |
202 | html("<title>"); |
201 | html_txt(title); |
203 | html_txt(title); |
202 | html("</title>\n"); |
204 | html("</title>\n"); |
| |
205 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); |
203 | html("<link rel='stylesheet' type='text/css' href='"); |
206 | html("<link rel='stylesheet' type='text/css' href='"); |
204 | html_attr(cgit_css); |
207 | html_attr(cgit_css); |
205 | html("'/>\n"); |
208 | html("'/>\n"); |
206 | html("</head>\n"); |
209 | html("</head>\n"); |
207 | html("<body>\n"); |
210 | html("<body>\n"); |
208 | } |
211 | } |
209 | |
212 | |
210 | static void cgit_print_docend() |
213 | static void cgit_print_docend() |
211 | { |
214 | { |
212 | html("</body>\n</html>\n"); |
215 | html("</body>\n</html>\n"); |
213 | } |
216 | } |
214 | |
217 | |
215 | static void cgit_print_pageheader(char *title) |
218 | static void cgit_print_pageheader(char *title) |
216 | { |
219 | { |
217 | html("<div id='header'>"); |
220 | html("<div id='header'>"); |
218 | htmlf("<a href='%s'>", cgit_logo_link); |
221 | htmlf("<a href='%s'>", cgit_logo_link); |
219 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); |
222 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); |
220 | htmlf("</a>"); |
223 | htmlf("</a>"); |
221 | html_txt(title); |
224 | html_txt(title); |
222 | html("</div>"); |
225 | html("</div>"); |
223 | } |
226 | } |
224 | |
227 | |
225 | static void cgit_print_repolist() |
228 | static void cgit_print_repolist() |
226 | { |
229 | { |
|