diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | Makefile | 21 | ||||
-rw-r--r-- | cgit-doc.css | 3 | ||||
-rw-r--r-- | cgit.c | 89 | ||||
-rw-r--r-- | cgit.css | 2 | ||||
-rw-r--r-- | cgit.h | 42 | ||||
-rw-r--r-- | cgitrc.5.txt | 198 | ||||
-rw-r--r-- | cmd.c | 2 | ||||
-rwxr-xr-x | filters/commit-links.sh | 12 | ||||
-rwxr-xr-x | filters/syntax-highlighting.sh | 39 | ||||
m--------- | git | 0 | ||||
-rw-r--r-- | scan-tree.c | 19 | ||||
-rw-r--r-- | shared.c | 59 | ||||
-rw-r--r-- | ui-atom.c | 8 | ||||
-rw-r--r-- | ui-blob.c | 8 | ||||
-rw-r--r-- | ui-commit.c | 20 | ||||
-rw-r--r-- | ui-log.c | 4 | ||||
-rw-r--r-- | ui-patch.c | 6 | ||||
-rw-r--r-- | ui-plain.c | 18 | ||||
-rw-r--r-- | ui-refs.c | 19 | ||||
-rw-r--r-- | ui-repolist.c | 28 | ||||
-rw-r--r-- | ui-shared.c | 81 | ||||
-rw-r--r-- | ui-shared.h | 1 | ||||
-rw-r--r-- | ui-snapshot.c | 35 | ||||
-rw-r--r-- | ui-summary.c | 28 | ||||
-rw-r--r-- | ui-summary.h | 2 | ||||
-rw-r--r-- | ui-tag.c | 2 | ||||
-rw-r--r-- | ui-tree.c | 26 |
28 files changed, 594 insertions, 183 deletions
@@ -2,5 +2,10 @@ | |||
2 | cgit | 2 | cgit |
3 | cgit.conf | 3 | cgit.conf |
4 | VERSION | 4 | VERSION |
5 | cgitrc.5 | ||
6 | cgitrc.5.fo | ||
7 | cgitrc.5.html | ||
8 | cgitrc.5.pdf | ||
9 | cgitrc.5.xml | ||
5 | *.o | 10 | *.o |
6 | *.d | 11 | *.d |
@@ -5,7 +5,7 @@ CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH) | |||
5 | CGIT_CONFIG = /etc/cgitrc | 5 | CGIT_CONFIG = /etc/cgitrc |
6 | CACHE_ROOT = /var/cache/cgit | 6 | CACHE_ROOT = /var/cache/cgit |
7 | SHA1_HEADER = <openssl/sha.h> | 7 | SHA1_HEADER = <openssl/sha.h> |
8 | GIT_VER = 1.6.1.1 | 8 | GIT_VER = 1.6.3.4 |
9 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 | 9 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 |
10 | INSTALL = install | 10 | INSTALL = install |
11 | 11 | ||
@@ -100,7 +100,8 @@ ifdef NEEDS_LIBICONV | |||
100 | endif | 100 | endif |
101 | 101 | ||
102 | 102 | ||
103 | .PHONY: all libgit test install uninstall clean force-version get-git | 103 | .PHONY: all libgit test install uninstall clean force-version get-git \ |
104 | doc man-doc html-doc clean-doc | ||
104 | 105 | ||
105 | all: cgit | 106 | all: cgit |
106 | 107 | ||
@@ -149,8 +150,22 @@ uninstall: | |||
149 | rm -f $(CGIT_DATA_PATH)/cgit.css | 150 | rm -f $(CGIT_DATA_PATH)/cgit.css |
150 | rm -f $(CGIT_DATA_PATH)/cgit.png | 151 | rm -f $(CGIT_DATA_PATH)/cgit.png |
151 | 152 | ||
152 | clean: | 153 | doc: man-doc html-doc pdf-doc |
154 | |||
155 | man-doc: cgitrc.5.txt | ||
156 | a2x -f manpage cgitrc.5.txt | ||
157 | |||
158 | html-doc: cgitrc.5.txt | ||
159 | a2x -f xhtml --stylesheet=cgit-doc.css cgitrc.5.txt | ||
160 | |||
161 | pdf-doc: cgitrc.5.txt | ||
162 | a2x -f pdf cgitrc.5.txt | ||
163 | |||
164 | clean: clean-doc | ||
153 | rm -f cgit VERSION *.o *.d | 165 | rm -f cgit VERSION *.o *.d |
154 | 166 | ||
167 | clean-doc: | ||
168 | rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo | ||
169 | |||
155 | get-git: | 170 | get-git: |
156 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git | 171 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git |
diff --git a/cgit-doc.css b/cgit-doc.css new file mode 100644 index 0000000..5a399b6 --- /dev/null +++ b/cgit-doc.css | |||
@@ -0,0 +1,3 @@ | |||
1 | div.variablelist dt { | ||
2 | margin-top: 1em; | ||
3 | } | ||
@@ -17,6 +17,29 @@ | |||
17 | 17 | ||
18 | const char *cgit_version = CGIT_VERSION; | 18 | const char *cgit_version = CGIT_VERSION; |
19 | 19 | ||
20 | void add_mimetype(const char *name, const char *value) | ||
21 | { | ||
22 | struct string_list_item *item; | ||
23 | |||
24 | item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes); | ||
25 | item->util = xstrdup(value); | ||
26 | } | ||
27 | |||
28 | struct cgit_filter *new_filter(const char *cmd, int extra_args) | ||
29 | { | ||
30 | struct cgit_filter *f; | ||
31 | |||
32 | if (!cmd || !cmd[0]) | ||
33 | return NULL; | ||
34 | |||
35 | f = xmalloc(sizeof(struct cgit_filter)); | ||
36 | f->cmd = xstrdup(cmd); | ||
37 | f->argv = xmalloc((2 + extra_args) * sizeof(char *)); | ||
38 | f->argv[0] = f->cmd; | ||
39 | f->argv[1] = NULL; | ||
40 | return f; | ||
41 | } | ||
42 | |||
20 | void config_cb(const char *name, const char *value) | 43 | void config_cb(const char *name, const char *value) |
21 | { | 44 | { |
22 | if (!strcmp(name, "root-title")) | 45 | if (!strcmp(name, "root-title")) |
@@ -31,6 +54,8 @@ void config_cb(const char *name, const char *value) | |||
31 | ctx.cfg.favicon = xstrdup(value); | 54 | ctx.cfg.favicon = xstrdup(value); |
32 | else if (!strcmp(name, "footer")) | 55 | else if (!strcmp(name, "footer")) |
33 | ctx.cfg.footer = xstrdup(value); | 56 | ctx.cfg.footer = xstrdup(value); |
57 | else if (!strcmp(name, "head-include")) | ||
58 | ctx.cfg.head_include = xstrdup(value); | ||
34 | else if (!strcmp(name, "header")) | 59 | else if (!strcmp(name, "header")) |
35 | ctx.cfg.header = xstrdup(value); | 60 | ctx.cfg.header = xstrdup(value); |
36 | else if (!strcmp(name, "logo")) | 61 | else if (!strcmp(name, "logo")) |
@@ -49,6 +74,10 @@ void config_cb(const char *name, const char *value) | |||
49 | ctx.cfg.virtual_root = ""; | 74 | ctx.cfg.virtual_root = ""; |
50 | } else if (!strcmp(name, "nocache")) | 75 | } else if (!strcmp(name, "nocache")) |
51 | ctx.cfg.nocache = atoi(value); | 76 | ctx.cfg.nocache = atoi(value); |
77 | else if (!strcmp(name, "noplainemail")) | ||
78 | ctx.cfg.noplainemail = atoi(value); | ||
79 | else if (!strcmp(name, "noheader")) | ||
80 | ctx.cfg.noheader = atoi(value); | ||
52 | else if (!strcmp(name, "snapshots")) | 81 | else if (!strcmp(name, "snapshots")) |
53 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); | 82 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
54 | else if (!strcmp(name, "enable-index-links")) | 83 | else if (!strcmp(name, "enable-index-links")) |
@@ -71,6 +100,12 @@ void config_cb(const char *name, const char *value) | |||
71 | ctx.cfg.cache_static_ttl = atoi(value); | 100 | ctx.cfg.cache_static_ttl = atoi(value); |
72 | else if (!strcmp(name, "cache-dynamic-ttl")) | 101 | else if (!strcmp(name, "cache-dynamic-ttl")) |
73 | ctx.cfg.cache_dynamic_ttl = atoi(value); | 102 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
103 | else if (!strcmp(name, "about-filter")) | ||
104 | ctx.cfg.about_filter = new_filter(value, 0); | ||
105 | else if (!strcmp(name, "commit-filter")) | ||
106 | ctx.cfg.commit_filter = new_filter(value, 0); | ||
107 | else if (!strcmp(name, "embedded")) | ||
108 | ctx.cfg.embedded = atoi(value); | ||
74 | else if (!strcmp(name, "max-message-length")) | 109 | else if (!strcmp(name, "max-message-length")) |
75 | ctx.cfg.max_msg_len = atoi(value); | 110 | ctx.cfg.max_msg_len = atoi(value); |
76 | else if (!strcmp(name, "max-repodesc-length")) | 111 | else if (!strcmp(name, "max-repodesc-length")) |
@@ -79,6 +114,8 @@ void config_cb(const char *name, const char *value) | |||
79 | ctx.cfg.max_repo_count = atoi(value); | 114 | ctx.cfg.max_repo_count = atoi(value); |
80 | else if (!strcmp(name, "max-commit-count")) | 115 | else if (!strcmp(name, "max-commit-count")) |
81 | ctx.cfg.max_commit_count = atoi(value); | 116 | ctx.cfg.max_commit_count = atoi(value); |
117 | else if (!strcmp(name, "source-filter")) | ||
118 | ctx.cfg.source_filter = new_filter(value, 1); | ||
82 | else if (!strcmp(name, "summary-log")) | 119 | else if (!strcmp(name, "summary-log")) |
83 | ctx.cfg.summary_log = atoi(value); | 120 | ctx.cfg.summary_log = atoi(value); |
84 | else if (!strcmp(name, "summary-branches")) | 121 | else if (!strcmp(name, "summary-branches")) |
@@ -95,6 +132,8 @@ void config_cb(const char *name, const char *value) | |||
95 | ctx.cfg.clone_prefix = xstrdup(value); | 132 | ctx.cfg.clone_prefix = xstrdup(value); |
96 | else if (!strcmp(name, "local-time")) | 133 | else if (!strcmp(name, "local-time")) |
97 | ctx.cfg.local_time = atoi(value); | 134 | ctx.cfg.local_time = atoi(value); |
135 | else if (!prefixcmp(name, "mimetype.")) | ||
136 | add_mimetype(name + 9, value); | ||
98 | else if (!strcmp(name, "repo.group")) | 137 | else if (!strcmp(name, "repo.group")) |
99 | ctx.cfg.repo_group = xstrdup(value); | 138 | ctx.cfg.repo_group = xstrdup(value); |
100 | else if (!strcmp(name, "repo.url")) | 139 | else if (!strcmp(name, "repo.url")) |
@@ -121,6 +160,12 @@ void config_cb(const char *name, const char *value) | |||
121 | ctx.repo->max_stats = cgit_find_stats_period(value, NULL); | 160 | ctx.repo->max_stats = cgit_find_stats_period(value, NULL); |
122 | else if (ctx.repo && !strcmp(name, "repo.module-link")) | 161 | else if (ctx.repo && !strcmp(name, "repo.module-link")) |
123 | ctx.repo->module_link= xstrdup(value); | 162 | ctx.repo->module_link= xstrdup(value); |
163 | else if (ctx.repo && !strcmp(name, "repo.about-filter")) | ||
164 | ctx.repo->about_filter = new_filter(value, 0); | ||
165 | else if (ctx.repo && !strcmp(name, "repo.commit-filter")) | ||
166 | ctx.repo->commit_filter = new_filter(value, 0); | ||
167 | else if (ctx.repo && !strcmp(name, "repo.source-filter")) | ||
168 | ctx.repo->source_filter = new_filter(value, 1); | ||
124 | else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { | 169 | else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { |
125 | if (*value == '/') | 170 | if (*value == '/') |
126 | ctx.repo->readme = xstrdup(value); | 171 | ctx.repo->readme = xstrdup(value); |
@@ -173,6 +218,11 @@ static void querystring_cb(const char *name, const char *value) | |||
173 | } | 218 | } |
174 | } | 219 | } |
175 | 220 | ||
221 | char *xstrdupn(const char *str) | ||
222 | { | ||
223 | return (str ? xstrdup(str) : NULL); | ||
224 | } | ||
225 | |||
176 | static void prepare_context(struct cgit_context *ctx) | 226 | static void prepare_context(struct cgit_context *ctx) |
177 | { | 227 | { |
178 | memset(ctx, 0, sizeof(ctx)); | 228 | memset(ctx, 0, sizeof(ctx)); |
@@ -186,7 +236,7 @@ static void prepare_context(struct cgit_context *ctx) | |||
186 | ctx->cfg.cache_root_ttl = 5; | 236 | ctx->cfg.cache_root_ttl = 5; |
187 | ctx->cfg.cache_static_ttl = -1; | 237 | ctx->cfg.cache_static_ttl = -1; |
188 | ctx->cfg.css = "/cgit.css"; | 238 | ctx->cfg.css = "/cgit.css"; |
189 | ctx->cfg.logo = "/git-logo.png"; | 239 | ctx->cfg.logo = "/cgit.png"; |
190 | ctx->cfg.local_time = 0; | 240 | ctx->cfg.local_time = 0; |
191 | ctx->cfg.max_repo_count = 50; | 241 | ctx->cfg.max_repo_count = 50; |
192 | ctx->cfg.max_commit_count = 50; | 242 | ctx->cfg.max_commit_count = 50; |
@@ -203,12 +253,30 @@ static void prepare_context(struct cgit_context *ctx) | |||
203 | ctx->cfg.summary_branches = 10; | 253 | ctx->cfg.summary_branches = 10; |
204 | ctx->cfg.summary_log = 10; | 254 | ctx->cfg.summary_log = 10; |
205 | ctx->cfg.summary_tags = 10; | 255 | ctx->cfg.summary_tags = 10; |
256 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); | ||
257 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); | ||
258 | ctx->env.https = xstrdupn(getenv("HTTPS")); | ||
259 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); | ||
260 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); | ||
261 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); | ||
262 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); | ||
263 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); | ||
264 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); | ||
265 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); | ||
206 | ctx->page.mimetype = "text/html"; | 266 | ctx->page.mimetype = "text/html"; |
207 | ctx->page.charset = PAGE_ENCODING; | 267 | ctx->page.charset = PAGE_ENCODING; |
208 | ctx->page.filename = NULL; | 268 | ctx->page.filename = NULL; |
209 | ctx->page.size = 0; | 269 | ctx->page.size = 0; |
210 | ctx->page.modified = time(NULL); | 270 | ctx->page.modified = time(NULL); |
211 | ctx->page.expires = ctx->page.modified; | 271 | ctx->page.expires = ctx->page.modified; |
272 | ctx->page.etag = NULL; | ||
273 | memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list)); | ||
274 | if (ctx->env.script_name) | ||
275 | ctx->cfg.script_name = ctx->env.script_name; | ||
276 | if (ctx->env.query_string) | ||
277 | ctx->qry.raw = ctx->env.query_string; | ||
278 | if (!ctx->env.cgit_config) | ||
279 | ctx->env.cgit_config = CGIT_CONFIG; | ||
212 | } | 280 | } |
213 | 281 | ||
214 | struct refmatch { | 282 | struct refmatch { |
@@ -288,6 +356,8 @@ static int prepare_repo_cmd(struct cgit_context *ctx) | |||
288 | if (get_sha1(ctx->qry.head, sha1)) { | 356 | if (get_sha1(ctx->qry.head, sha1)) { |
289 | tmp = xstrdup(ctx->qry.head); | 357 | tmp = xstrdup(ctx->qry.head); |
290 | ctx->qry.head = ctx->repo->defbranch; | 358 | ctx->qry.head = ctx->repo->defbranch; |
359 | ctx->page.status = 404; | ||
360 | ctx->page.statusmsg = "not found"; | ||
291 | cgit_print_http_headers(ctx); | 361 | cgit_print_http_headers(ctx); |
292 | cgit_print_docstart(ctx); | 362 | cgit_print_docstart(ctx); |
293 | cgit_print_pageheader(ctx); | 363 | cgit_print_pageheader(ctx); |
@@ -379,6 +449,9 @@ static void cgit_parse_args(int argc, const char **argv) | |||
379 | if (!strcmp(argv[i], "--nocache")) { | 449 | if (!strcmp(argv[i], "--nocache")) { |
380 | ctx.cfg.nocache = 1; | 450 | ctx.cfg.nocache = 1; |
381 | } | 451 | } |
452 | if (!strcmp(argv[i], "--nohttp")) { | ||
453 | ctx.env.no_http = "1"; | ||
454 | } | ||
382 | if (!strncmp(argv[i], "--query=", 8)) { | 455 | if (!strncmp(argv[i], "--query=", 8)) { |
383 | ctx.qry.raw = xstrdup(argv[i]+8); | 456 | ctx.qry.raw = xstrdup(argv[i]+8); |
384 | } | 457 | } |
@@ -431,7 +504,6 @@ static int calc_ttl() | |||
431 | 504 | ||
432 | int main(int argc, const char **argv) | 505 | int main(int argc, const char **argv) |
433 | { | 506 | { |
434 | const char *cgit_config_env = getenv("CGIT_CONFIG"); | ||
435 | const char *path; | 507 | const char *path; |
436 | char *qry; | 508 | char *qry; |
437 | int err, ttl; | 509 | int err, ttl; |
@@ -441,13 +513,8 @@ int main(int argc, const char **argv) | |||
441 | cgit_repolist.count = 0; | 513 | cgit_repolist.count = 0; |
442 | cgit_repolist.repos = NULL; | 514 | cgit_repolist.repos = NULL; |
443 | 515 | ||
444 | if (getenv("SCRIPT_NAME")) | ||
445 | ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME")); | ||
446 | if (getenv("QUERY_STRING")) | ||
447 | ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); | ||
448 | cgit_parse_args(argc, argv); | 516 | cgit_parse_args(argc, argv); |
449 | parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG, | 517 | parse_configfile(ctx.env.cgit_config, config_cb); |
450 | config_cb); | ||
451 | ctx.repo = NULL; | 518 | ctx.repo = NULL; |
452 | http_parse_querystring(ctx.qry.raw, querystring_cb); | 519 | http_parse_querystring(ctx.qry.raw, querystring_cb); |