|
diff --git a/cgit.c b/cgit.c index 3e7e595..431e8fb 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -2,38 +2,24 @@ |
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 | 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); |
36 | if (!cgit_repo) { |
22 | if (!cgit_repo) { |
37 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
23 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
38 | cgit_print_docstart(title, item); |
24 | cgit_print_docstart(title, item); |
39 | cgit_print_pageheader(title, 0); |
25 | cgit_print_pageheader(title, 0); |
|