shared.c (view raw)
1/* shared.c: global vars + some callback functions
2 *
3 * Copyright (C) 2006 Lars Hjemli
4 *
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
7 */
8
9#include "cgit.h"
10
11char *cgit_root = "/usr/src/git";
12char *cgit_root_title = "Git repository browser";
13char *cgit_css = "/cgit.css";
14char *cgit_logo = "/git-logo.png";
15char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
16char *cgit_virtual_root = NULL;
17
18char *cgit_cache_root = "/var/cache/cgit";
19
20int cgit_nocache = 0;
21int cgit_max_lock_attempts = 5;
22int cgit_cache_root_ttl = 5;
23int cgit_cache_repo_ttl = 5;
24int cgit_cache_dynamic_ttl = 5;
25int cgit_cache_static_ttl = -1;
26int cgit_cache_max_create_time = 5;
27
28char *cgit_repo_name = NULL;
29char *cgit_repo_desc = NULL;
30char *cgit_repo_owner = NULL;
31
32int cgit_query_has_symref = 0;
33int cgit_query_has_sha1 = 0;
34
35char *cgit_querystring = NULL;
36char *cgit_query_repo = NULL;
37char *cgit_query_page = NULL;
38char *cgit_query_head = NULL;
39char *cgit_query_sha1 = NULL;
40char *cgit_query_sha2 = NULL;
41int cgit_query_ofs = 0;
42
43int htmlfd = 0;
44
45void cgit_global_config_cb(const char *name, const char *value)
46{
47 if (!strcmp(name, "root"))
48 cgit_root = xstrdup(value);
49 else if (!strcmp(name, "root-title"))
50 cgit_root_title = xstrdup(value);
51 else if (!strcmp(name, "css"))
52 cgit_css = xstrdup(value);
53 else if (!strcmp(name, "logo"))
54 cgit_logo = xstrdup(value);
55 else if (!strcmp(name, "logo-link"))
56 cgit_logo_link = xstrdup(value);
57 else if (!strcmp(name, "virtual-root"))
58 cgit_virtual_root = xstrdup(value);
59 else if (!strcmp(name, "nocache"))
60 cgit_nocache = atoi(value);
61 else if (!strcmp(name, "cache-root"))
62 cgit_cache_root = xstrdup(value);
63}
64
65void cgit_repo_config_cb(const char *name, const char *value)
66{
67 if (!strcmp(name, "name"))
68 cgit_repo_name = xstrdup(value);
69 else if (!strcmp(name, "desc"))
70 cgit_repo_desc = xstrdup(value);
71 else if (!strcmp(name, "owner"))
72 cgit_repo_owner = xstrdup(value);
73}
74
75void cgit_querystring_cb(const char *name, const char *value)
76{
77 if (!strcmp(name,"r")) {
78 cgit_query_repo = xstrdup(value);
79 } else if (!strcmp(name, "p")) {
80 cgit_query_page = xstrdup(value);
81 } else if (!strcmp(name, "h")) {
82 cgit_query_head = xstrdup(value);
83 cgit_query_has_symref = 1;
84 } else if (!strcmp(name, "id")) {
85 cgit_query_sha1 = xstrdup(value);
86 cgit_query_has_sha1 = 1;
87 } else if (!strcmp(name, "id2")) {
88 cgit_query_sha2 = xstrdup(value);
89 cgit_query_has_sha1 = 1;
90 } else if (!strcmp(name, "ofs")) {
91 cgit_query_ofs = atoi(value);
92 }
93}
94
95void *cgit_free_commitinfo(struct commitinfo *info)
96{
97 free(info->author);
98 free(info->author_email);
99 free(info->committer);
100 free(info->committer_email);
101 free(info->subject);
102 free(info);
103 return NULL;
104}