-rw-r--r-- | cgit.c | 4 | ||||
-rw-r--r-- | cgitrc.5.txt | 4 | ||||
-rw-r--r-- | ui-blob.c | 35 | ||||
-rw-r--r-- | ui-blob.h | 1 | ||||
-rw-r--r-- | ui-summary.c | 26 |
5 files changed, 63 insertions, 7 deletions
@@ -1,138 +1,140 @@ | |||
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 | * Copyright (C) 2010 Jason A. Donenfeld <Jason@zx2c4.com> | ||
4 | * | 5 | * |
5 | * Licensed under GNU General Public License v2 | 6 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 7 | * (see COPYING for full license text) |
7 | */ | 8 | */ |
8 | 9 | ||
9 | #include "cgit.h" | 10 | #include "cgit.h" |
10 | #include "cache.h" | 11 | #include "cache.h" |
11 | #include "cmd.h" | 12 | #include "cmd.h" |
12 | #include "configfile.h" | 13 | #include "configfile.h" |
13 | #include "html.h" | 14 | #include "html.h" |
14 | #include "ui-shared.h" | 15 | #include "ui-shared.h" |
15 | #include "ui-stats.h" | 16 | #include "ui-stats.h" |
16 | #include "scan-tree.h" | 17 | #include "scan-tree.h" |
17 | 18 | ||
18 | const char *cgit_version = CGIT_VERSION; | 19 | const char *cgit_version = CGIT_VERSION; |
19 | 20 | ||
20 | void add_mimetype(const char *name, const char *value) | 21 | void add_mimetype(const char *name, const char *value) |
21 | { | 22 | { |
22 | struct string_list_item *item; | 23 | struct string_list_item *item; |
23 | 24 | ||
24 | item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes); | 25 | item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes); |
25 | item->util = xstrdup(value); | 26 | item->util = xstrdup(value); |
26 | } | 27 | } |
27 | 28 | ||
28 | struct cgit_filter *new_filter(const char *cmd, int extra_args) | 29 | struct cgit_filter *new_filter(const char *cmd, int extra_args) |
29 | { | 30 | { |
30 | struct cgit_filter *f; | 31 | struct cgit_filter *f; |
31 | 32 | ||
32 | if (!cmd || !cmd[0]) | 33 | if (!cmd || !cmd[0]) |
33 | return NULL; | 34 | return NULL; |
34 | 35 | ||
35 | f = xmalloc(sizeof(struct cgit_filter)); | 36 | f = xmalloc(sizeof(struct cgit_filter)); |
36 | f->cmd = xstrdup(cmd); | 37 | f->cmd = xstrdup(cmd); |
37 | f->argv = xmalloc((2 + extra_args) * sizeof(char *)); | 38 | f->argv = xmalloc((2 + extra_args) * sizeof(char *)); |
38 | f->argv[0] = f->cmd; | 39 | f->argv[0] = f->cmd; |
39 | f->argv[1] = NULL; | 40 | f->argv[1] = NULL; |
40 | return f; | 41 | return f; |
41 | } | 42 | } |
42 | 43 | ||
43 | static void process_cached_repolist(const char *path); | 44 | static void process_cached_repolist(const char *path); |
44 | 45 | ||
45 | void repo_config(struct cgit_repo *repo, const char *name, const char *value) | 46 | void repo_config(struct cgit_repo *repo, const char *name, const char *value) |
46 | { | 47 | { |
47 | if (!strcmp(name, "name")) | 48 | if (!strcmp(name, "name")) |
48 | repo->name = xstrdup(value); | 49 | repo->name = xstrdup(value); |
49 | else if (!strcmp(name, "clone-url")) | 50 | else if (!strcmp(name, "clone-url")) |
50 | repo->clone_url = xstrdup(value); | 51 | repo->clone_url = xstrdup(value); |
51 | else if (!strcmp(name, "desc")) | 52 | else if (!strcmp(name, "desc")) |
52 | repo->desc = xstrdup(value); | 53 | repo->desc = xstrdup(value); |
53 | else if (!strcmp(name, "owner")) | 54 | else if (!strcmp(name, "owner")) |
54 | repo->owner = xstrdup(value); | 55 | repo->owner = xstrdup(value); |
55 | else if (!strcmp(name, "defbranch")) | 56 | else if (!strcmp(name, "defbranch")) |
56 | repo->defbranch = xstrdup(value); | 57 | repo->defbranch = xstrdup(value); |
57 | else if (!strcmp(name, "snapshots")) | 58 | else if (!strcmp(name, "snapshots")) |
58 | repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); | 59 | repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); |
59 | else if (!strcmp(name, "enable-log-filecount")) | 60 | else if (!strcmp(name, "enable-log-filecount")) |
60 | repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); | 61 | repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); |
61 | else if (!strcmp(name, "enable-log-linecount")) | 62 | else if (!strcmp(name, "enable-log-linecount")) |
62 | repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); | 63 | repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); |
63 | else if (!strcmp(name, "enable-remote-branches")) | 64 | else if (!strcmp(name, "enable-remote-branches")) |
64 | repo->enable_remote_branches = atoi(value); | 65 | repo->enable_remote_branches = atoi(value); |
65 | else if (!strcmp(name, "enable-subject-links")) | 66 | else if (!strcmp(name, "enable-subject-links")) |
66 | repo->enable_subject_links = atoi(value); | 67 | repo->enable_subject_links = atoi(value); |
67 | else if (!strcmp(name, "max-stats")) | 68 | else if (!strcmp(name, "max-stats")) |
68 | repo->max_stats = cgit_find_stats_period(value, NULL); | 69 | repo->max_stats = cgit_find_stats_period(value, NULL); |
69 | else if (!strcmp(name, "module-link")) | 70 | else if (!strcmp(name, "module-link")) |
70 | repo->module_link= xstrdup(value); | 71 | repo->module_link= xstrdup(value); |
71 | else if (!strcmp(name, "section")) | 72 | else if (!strcmp(name, "section")) |
72 | repo->section = xstrdup(value); | 73 | repo->section = xstrdup(value); |
73 | else if (!strcmp(name, "readme") && value != NULL) { | 74 | else if (!strcmp(name, "readme") && value != NULL) { |
74 | if (*value == '/') | 75 | char *colon; |
76 | if (*value == '/' || ((colon = strchr(value, ':')) != NULL && colon != value && *(colon + 1) != '\0')) | ||
75 | repo->readme = xstrdup(value); | 77 | repo->readme = xstrdup(value); |
76 | else | 78 | else |
77 | repo->readme = xstrdup(fmt("%s/%s", repo->path, value)); | 79 | repo->readme = xstrdup(fmt("%s/%s", repo->path, value)); |
78 | } else if (ctx.cfg.enable_filter_overrides) { | 80 | } else if (ctx.cfg.enable_filter_overrides) { |
79 | if (!strcmp(name, "about-filter")) | 81 | if (!strcmp(name, "about-filter")) |
80 | repo->about_filter = new_filter(value, 0); | 82 | repo->about_filter = new_filter(value, 0); |
81 | else if (!strcmp(name, "commit-filter")) | 83 | else if (!strcmp(name, "commit-filter")) |
82 | repo->commit_filter = new_filter(value, 0); | 84 | repo->commit_filter = new_filter(value, 0); |
83 | else if (!strcmp(name, "source-filter")) | 85 | else if (!strcmp(name, "source-filter")) |
84 | repo->source_filter = new_filter(value, 1); | 86 | repo->source_filter = new_filter(value, 1); |
85 | } | 87 | } |
86 | } | 88 | } |
87 | 89 | ||
88 | void config_cb(const char *name, const char *value) | 90 | void config_cb(const char *name, const char *value) |
89 | { | 91 | { |
90 | if (!strcmp(name, "section") || !strcmp(name, "repo.group")) | 92 | if (!strcmp(name, "section") || !strcmp(name, "repo.group")) |
91 | ctx.cfg.section = xstrdup(value); | 93 | ctx.cfg.section = xstrdup(value); |
92 | else if (!strcmp(name, "repo.url")) | 94 | else if (!strcmp(name, "repo.url")) |
93 | ctx.repo = cgit_add_repo(value); | 95 | ctx.repo = cgit_add_repo(value); |
94 | else if (ctx.repo && !strcmp(name, "repo.path")) | 96 | else if (ctx.repo && !strcmp(name, "repo.path")) |
95 | ctx.repo->path = trim_end(value, '/'); | 97 | ctx.repo->path = trim_end(value, '/'); |
96 | else if (ctx.repo && !prefixcmp(name, "repo.")) | 98 | else if (ctx.repo && !prefixcmp(name, "repo.")) |
97 | repo_config(ctx.repo, name + 5, value); | 99 | repo_config(ctx.repo, name + 5, value); |
98 | else if (!strcmp(name, "root-title")) | 100 | else if (!strcmp(name, "root-title")) |
99 | ctx.cfg.root_title = xstrdup(value); | 101 | ctx.cfg.root_title = xstrdup(value); |
100 | else if (!strcmp(name, "root-desc")) | 102 | else if (!strcmp(name, "root-desc")) |
101 | ctx.cfg.root_desc = xstrdup(value); | 103 | ctx.cfg.root_desc = xstrdup(value); |
102 | else if (!strcmp(name, "root-readme")) | 104 | else if (!strcmp(name, "root-readme")) |
103 | ctx.cfg.root_readme = xstrdup(value); | 105 | ctx.cfg.root_readme = xstrdup(value); |
104 | else if (!strcmp(name, "css")) | 106 | else if (!strcmp(name, "css")) |
105 | ctx.cfg.css = xstrdup(value); | 107 | ctx.cfg.css = xstrdup(value); |
106 | else if (!strcmp(name, "favicon")) | 108 | else if (!strcmp(name, "favicon")) |
107 | ctx.cfg.favicon = xstrdup(value); | 109 | ctx.cfg.favicon = xstrdup(value); |
108 | else if (!strcmp(name, "footer")) | 110 | else if (!strcmp(name, "footer")) |
109 | ctx.cfg.footer = xstrdup(value); | 111 | ctx.cfg.footer = xstrdup(value); |
110 | else if (!strcmp(name, "head-include")) | 112 | else if (!strcmp(name, "head-include")) |
111 | ctx.cfg.head_include = xstrdup(value); | 113 | ctx.cfg.head_include = xstrdup(value); |
112 | else if (!strcmp(name, "header")) | 114 | else if (!strcmp(name, "header")) |
113 | ctx.cfg.header = xstrdup(value); | 115 | ctx.cfg.header = xstrdup(value); |
114 | else if (!strcmp(name, "logo")) | 116 | else if (!strcmp(name, "logo")) |
115 | ctx.cfg.logo = xstrdup(value); | 117 | ctx.cfg.logo = xstrdup(value); |
116 | else if (!strcmp(name, "index-header")) | 118 | else if (!strcmp(name, "index-header")) |
117 | ctx.cfg.index_header = xstrdup(value); | 119 | ctx.cfg.index_header = xstrdup(value); |
118 | else if (!strcmp(name, "index-info")) | 120 | else if (!strcmp(name, "index-info")) |
119 | ctx.cfg.index_info = xstrdup(value); | 121 | ctx.cfg.index_info = xstrdup(value); |
120 | else if (!strcmp(name, "logo-link")) | 122 | else if (!strcmp(name, "logo-link")) |
121 | ctx.cfg.logo_link = xstrdup(value); | 123 | ctx.cfg.logo_link = xstrdup(value); |
122 | else if (!strcmp(name, "module-link")) | 124 | else if (!strcmp(name, "module-link")) |
123 | ctx.cfg.module_link = xstrdup(value); | 125 | ctx.cfg.module_link = xstrdup(value); |
124 | else if (!strcmp(name, "virtual-root")) { | 126 | else if (!strcmp(name, "virtual-root")) { |
125 | ctx.cfg.virtual_root = trim_end(value, '/'); | 127 | ctx.cfg.virtual_root = trim_end(value, '/'); |
126 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) | 128 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
127 | ctx.cfg.virtual_root = ""; | 129 | ctx.cfg.virtual_root = ""; |
128 | } else if (!strcmp(name, "nocache")) | 130 | } else if (!strcmp(name, "nocache")) |
129 | ctx.cfg.nocache = atoi(value); | 131 | ctx.cfg.nocache = atoi(value); |
130 | else if (!strcmp(name, "noplainemail")) | 132 | else if (!strcmp(name, "noplainemail")) |
131 | ctx.cfg.noplainemail = atoi(value); | 133 | ctx.cfg.noplainemail = atoi(value); |
132 | else if (!strcmp(name, "noheader")) | 134 | else if (!strcmp(name, "noheader")) |
133 | ctx.cfg.noheader = atoi(value); | 135 | ctx.cfg.noheader = atoi(value); |
134 | else if (!strcmp(name, "snapshots")) | 136 | else if (!strcmp(name, "snapshots")) |
135 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); | 137 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
136 | else if (!strcmp(name, "enable-filter-overrides")) | 138 | else if (!strcmp(name, "enable-filter-overrides")) |
137 | ctx.cfg.enable_filter_overrides = atoi(value); | 139 | ctx.cfg.enable_filter_overrides = atoi(value); |
138 | else if (!strcmp(name, "enable-gitweb-owner")) | 140 | else if (!strcmp(name, "enable-gitweb-owner")) |
diff --git a/cgitrc.5.txt b/cgitrc.5.txt index 5d77973..c643fae 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt | |||
@@ -310,129 +310,131 @@ summary-tags:: | |||
310 | virtual-root:: | 310 | virtual-root:: |
311 | Url which, if specified, will be used as root for all cgit links. It | 311 | Url which, if specified, will be used as root for all cgit links. It |
312 | will also cause cgit to generate 'virtual urls', i.e. urls like | 312 | will also cause cgit to generate 'virtual urls', i.e. urls like |
313 | '/cgit/tree/README' as opposed to '?r=cgit&p=tree&path=README'. Default | 313 | '/cgit/tree/README' as opposed to '?r=cgit&p=tree&path=README'. Default |
314 | value: none. | 314 | value: none. |
315 | NOTE: cgit has recently learned how to use PATH_INFO to achieve the | 315 | NOTE: cgit has recently learned how to use PATH_INFO to achieve the |
316 | same kind of virtual urls, so this option will probably be deprecated. | 316 | same kind of virtual urls, so this option will probably be deprecated. |
317 | 317 | ||
318 | REPOSITORY SETTINGS | 318 | REPOSITORY SETTINGS |
319 | ------------------- | 319 | ------------------- |
320 | repo.about-filter:: | 320 | repo.about-filter:: |
321 | Override the default about-filter. Default value: none. See also: | 321 | Override the default about-filter. Default value: none. See also: |
322 | "enable-filter-overrides". | 322 | "enable-filter-overrides". |
323 | 323 | ||
324 | repo.clone-url:: | 324 | repo.clone-url:: |
325 | A list of space-separated urls which can be used to clone this repo. | 325 | A list of space-separated urls which can be used to clone this repo. |
326 | Default value: none. | 326 | Default value: none. |
327 | 327 | ||
328 | repo.commit-filter:: | 328 | repo.commit-filter:: |
329 | Override the default commit-filter. Default value: none. See also: | 329 | Override the default commit-filter. Default value: none. See also: |
330 | "enable-filter-overrides". | 330 | "enable-filter-overrides". |
331 | 331 | ||
332 | repo.defbranch:: | 332 | repo.defbranch:: |
333 | The name of the default branch for this repository. If no such branch | 333 | The name of the default branch for this repository. If no such branch |
334 | exists in the repository, the first branch name (when sorted) is used | 334 | exists in the repository, the first branch name (when sorted) is used |
335 | as default instead. Default value: "master". | 335 | as default instead. Default value: "master". |
336 | 336 | ||
337 | repo.desc:: | 337 | repo.desc:: |
338 | The value to show as repository description. Default value: none. | 338 | The value to show as repository description. Default value: none. |
339 | 339 | ||
340 | repo.enable-log-filecount:: | 340 | repo.enable-log-filecount:: |
341 | A flag which can be used to disable the global setting | 341 | A flag which can be used to disable the global setting |
342 | `enable-log-filecount'. Default value: none. | 342 | `enable-log-filecount'. Default value: none. |
343 | 343 | ||
344 | repo.enable-log-linecount:: | 344 | repo.enable-log-linecount:: |
345 | A flag which can be used to disable the global setting | 345 | A flag which can be used to disable the global setting |
346 | `enable-log-linecount'. Default value: none. | 346 | `enable-log-linecount'. Default value: none. |
347 | 347 | ||
348 | repo.enable-remote-branches:: | 348 | repo.enable-remote-branches:: |
349 | Flag which, when set to "1", will make cgit display remote branches | 349 | Flag which, when set to "1", will make cgit display remote branches |
350 | in the summary and refs views. Default value: <enable-remote-branches>. | 350 | in the summary and refs views. Default value: <enable-remote-branches>. |
351 | 351 | ||
352 | repo.enable-subject-links:: | 352 | repo.enable-subject-links:: |
353 | A flag which can be used to override the global setting | 353 | A flag which can be used to override the global setting |
354 | `enable-subject-links'. Default value: none. | 354 | `enable-subject-links'. Default value: none. |
355 | 355 | ||
356 | repo.max-stats:: | 356 | repo.max-stats:: |
357 | Override the default maximum statistics period. Valid values are equal | 357 | Override the default maximum statistics period. Valid values are equal |
358 | to the values specified for the global "max-stats" setting. Default | 358 | to the values specified for the global "max-stats" setting. Default |
359 | value: none. | 359 | value: none. |
360 | 360 | ||
361 | repo.name:: | 361 | repo.name:: |
362 | The value to show as repository name. Default value: <repo.url>. | 362 | The value to show as repository name. Default value: <repo.url>. |
363 | 363 | ||
364 | repo.owner:: | 364 | repo.owner:: |
365 | A value used to identify the owner of the repository. Default value: | 365 | A value used to identify the owner of the repository. Default value: |
366 | none. | 366 | none. |
367 | 367 | ||
368 | repo.path:: | 368 | repo.path:: |
369 | An absolute path to the repository directory. For non-bare repositories | 369 | An absolute path to the repository directory. For non-bare repositories |
370 | this is the .git-directory. Default value: none. | 370 | this is the .git-directory. Default value: none. |
371 | 371 | ||
372 | repo.readme:: | 372 | repo.readme:: |
373 | A path (relative to <repo.path>) which specifies a file to include | 373 | A path (relative to <repo.path>) which specifies a file to include |
374 | verbatim as the "About" page for this repo. Default value: none. | 374 | verbatim as the "About" page for this repo. You may also specify a |
375 | git refspec by head or by hash by prepending the refspec followed by | ||
376 | a colon. For example, "master:docs/readme.mkd" Default value: none. | ||
375 | 377 | ||
376 | repo.snapshots:: | 378 | repo.snapshots:: |
377 | A mask of allowed snapshot-formats for this repo, restricted by the | 379 | A mask of allowed snapshot-formats for this repo, restricted by the |
378 | "snapshots" global setting. Default value: <snapshots>. | 380 | "snapshots" global setting. Default value: <snapshots>. |
379 | 381 | ||
380 | repo.section:: | 382 | repo.section:: |
381 | Override the current section name for this repository. Default value: | 383 | Override the current section name for this repository. Default value: |
382 | none. | 384 | none. |
383 | 385 | ||
384 | repo.source-filter:: | 386 | repo.source-filter:: |
385 | Override the default source-filter. Default value: none. See also: | 387 | Override the default source-filter. Default value: none. See also: |
386 | "enable-filter-overrides". | 388 | "enable-filter-overrides". |
387 | 389 | ||
388 | repo.url:: | 390 | repo.url:: |
389 | The relative url used to access the repository. This must be the first | 391 | The relative url used to access the repository. This must be the first |
390 | setting specified for each repo. Default value: none. | 392 | setting specified for each repo. Default value: none. |
391 | 393 | ||
392 | 394 | ||
393 | REPOSITORY-SPECIFIC CGITRC FILE | 395 | REPOSITORY-SPECIFIC CGITRC FILE |
394 | ------------------------------- | 396 | ------------------------------- |
395 | When the option "scan-path" is used to auto-discover git repositories, cgit | 397 | When the option "scan-path" is used to auto-discover git repositories, cgit |
396 | will try to parse the file "cgitrc" within any found repository. Such a | 398 | will try to parse the file "cgitrc" within any found repository. Such a |
397 | repo-specific config file may contain any of the repo-specific options | 399 | repo-specific config file may contain any of the repo-specific options |
398 | described above, except "repo.url" and "repo.path". Additionally, the "filter" | 400 | described above, except "repo.url" and "repo.path". Additionally, the "filter" |
399 | options are only acknowledged in repo-specific config files when | 401 | options are only acknowledged in repo-specific config files when |
400 | "enable-filter-overrides" is set to "1". | 402 | "enable-filter-overrides" is set to "1". |
401 | 403 | ||
402 | Note: the "repo." prefix is dropped from the option names in repo-specific | 404 | Note: the "repo." prefix is dropped from the option names in repo-specific |
403 | config files, e.g. "repo.desc" becomes "desc". | 405 | config files, e.g. "repo.desc" becomes "desc". |
404 | 406 | ||
405 | 407 | ||
406 | EXAMPLE CGITRC FILE | 408 | EXAMPLE CGITRC FILE |
407 | ------------------- | 409 | ------------------- |
408 | 410 | ||
409 | .... | 411 | .... |
410 | # Enable caching of up to 1000 output entriess | 412 | # Enable caching of up to 1000 output entriess |
411 | cache-size=1000 | 413 | cache-size=1000 |
412 | 414 | ||
413 | 415 | ||
414 | # Specify some default clone prefixes | 416 | # Specify some default clone prefixes |
415 | clone-prefix=git://foobar.com ssh://foobar.com/pub/git http://foobar.com/git | 417 | clone-prefix=git://foobar.com ssh://foobar.com/pub/git http://foobar.com/git |
416 | 418 | ||
417 | # Specify the css url | 419 | # Specify the css url |
418 | css=/css/cgit.css | 420 | css=/css/cgit.css |
419 | 421 | ||
420 | 422 | ||
421 | # Show extra links for each repository on the index page | 423 | # Show extra links for each repository on the index page |
422 | enable-index-links=1 | 424 | enable-index-links=1 |
423 | 425 | ||
424 | 426 | ||
425 | # Show number of affected files per commit on the log pages | 427 | # Show number of affected files per commit on the log pages |
426 | enable-log-filecount=1 | 428 | enable-log-filecount=1 |
427 | 429 | ||
428 | 430 | ||
429 | # Show number of added/removed lines per commit on the log pages | 431 | # Show number of added/removed lines per commit on the log pages |
430 | enable-log-linecount=1 | 432 | enable-log-linecount=1 |
431 | 433 | ||
432 | 434 | ||
433 | # Add a cgit favicon | 435 | # Add a cgit favicon |
434 | favicon=/favicon.ico | 436 | favicon=/favicon.ico |
435 | 437 | ||
436 | 438 | ||
437 | # Use a custom logo | 439 | # Use a custom logo |
438 | logo=/img/mylogo.png | 440 | logo=/img/mylogo.png |
@@ -1,79 +1,112 @@ | |||
1 | /* ui-blob.c: show blob content | 1 | /* ui-blob.c: show blob content |
2 | * | 2 | * |
3 | * Copyright (C) 2008 Lars Hjemli | 3 | * Copyright (C) 2008 Lars Hjemli |
4 | * Copyright (C) 2010 Jason A. Donenfeld <Jason@zx2c4.com> | ||
4 | * | 5 | * |
5 | * Licensed under GNU General Public License v2 | 6 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 7 | * (see COPYING for full license text) |
7 | */ | 8 | */ |
8 | 9 | ||
9 | #include "cgit.h" | 10 | #include "cgit.h" |
10 | #include "html.h" | 11 | #include "html.h" |
11 | #include "ui-shared.h" | 12 | #include "ui-shared.h" |
12 | 13 | ||
13 | static char *match_path; | 14 | static char *match_path; |
14 | static unsigned char *matched_sha1; | 15 | static unsigned char *matched_sha1; |
16 | static int found_path; | ||
15 | 17 | ||
16 | static int walk_tree(const unsigned char *sha1, const char *base,int baselen, | 18 | static int walk_tree(const unsigned char *sha1, const char *base,int baselen, |
17 | const char *pathname, unsigned mode, int stage, void *cbdata) { | 19 | const char *pathname, unsigned mode, int stage, void *cbdata) { |
18 | if(strncmp(base,match_path,baselen) | 20 | if(strncmp(base,match_path,baselen) |
19 | || strcmp(match_path+baselen,pathname) ) | 21 | || strcmp(match_path+baselen,pathname) ) |
20 | return READ_TREE_RECURSIVE; | 22 | return READ_TREE_RECURSIVE; |
21 | memmove(matched_sha1,sha1,20); | 23 | memmove(matched_sha1,sha1,20); |
24 | found_path = 1; | ||
22 | return 0; | 25 | return 0; |
23 | } | 26 | } |
24 | 27 | ||
25 | void cgit_print_blob(const char *hex, char *path, const char *head) | 28 | int cgit_print_file(char *path, const char *head) |
26 | { | 29 | { |
30 | unsigned char sha1[20]; | ||
31 | enum object_type type; | ||
32 | char *buf; | ||
33 | unsigned long size; | ||
34 | struct commit *commit; | ||
35 | const char *paths[] = {path, NULL}; | ||
36 | if (get_sha1(head, sha1)) | ||
37 | return -1; | ||
38 | type = sha1_object_info(sha1, &size); | ||
39 | if(type == OBJ_COMMIT && path) { | ||
40 | commit = lookup_commit_reference(sha1); | ||
41 | match_path = path; | ||
42 | matched_sha1 = sha1; | ||
43 | found_path = 0; | ||
44 | read_tree_recursive(commit->tree, "", 0, 0, paths, walk_tree, NULL); | ||
45 | if (!found_path) | ||
46 | return -1; | ||
47 | type = sha1_object_info(sha1, &size); | ||
48 | } | ||
49 | if (type == OBJ_BAD) | ||
50 | return -1; | ||
51 | buf = read_sha1_file(sha1, &type, &size); | ||
52 | if (!buf) | ||
53 | return -1; | ||
54 | buf[size] = '\0'; | ||
55 | write(htmlfd, buf, size); | ||
56 | return 0; | ||
57 | } | ||
27 | 58 | ||
59 | void cgit_print_blob(const char *hex, char *path, const char *head) | ||
60 | { | ||
28 | unsigned char sha1[20]; | 61 | unsigned char sha1[20]; |
29 | enum object_type type; | 62 | enum object_type type; |
30 | char *buf; | 63 | char *buf; |
31 | unsigned long size; | 64 | unsigned long size; |
32 | struct commit *commit; | 65 | struct commit *commit; |
33 | const char *paths[] = {path, NULL}; | 66 | const char *paths[] = {path, NULL}; |
34 | 67 | ||
35 | if (hex) { | 68 | if (hex) { |
36 | if (get_sha1_hex(hex, sha1)){ | 69 | if (get_sha1_hex(hex, sha1)){ |
37 | cgit_print_error(fmt("Bad hex value: %s", hex)); | 70 | cgit_print_error(fmt("Bad hex value: %s", hex)); |
38 | return; | 71 | return; |
39 | } | 72 | } |
40 | } else { | 73 | } else { |
41 | if (get_sha1(head,sha1)) { | 74 | if (get_sha1(head,sha1)) { |
42 | cgit_print_error(fmt("Bad ref: %s", head)); | 75 | cgit_print_error(fmt("Bad ref: %s", head)); |
43 | return; | 76 | return; |
44 | } | 77 | } |
45 | } | 78 | } |
46 | 79 | ||
47 | type = sha1_object_info(sha1, &size); | 80 | type = sha1_object_info(sha1, &size); |
48 | 81 | ||
49 | if((!hex) && type == OBJ_COMMIT && path) { | 82 | if((!hex) && type == OBJ_COMMIT && path) { |
50 | commit = lookup_commit_reference(sha1); | 83 | commit = lookup_commit_reference(sha1); |
51 | match_path = path; | 84 | match_path = path; |
52 | matched_sha1 = sha1; | 85 | matched_sha1 = sha1; |
53 | read_tree_recursive(commit->tree, "", 0, 0, paths, walk_tree, NULL); | 86 | read_tree_recursive(commit->tree, "", 0, 0, paths, walk_tree, NULL); |
54 | type = sha1_object_info(sha1,&size); | 87 | type = sha1_object_info(sha1,&size); |
55 | } | 88 | } |
56 | 89 | ||
57 | if (type == OBJ_BAD) { | 90 | if (type == OBJ_BAD) { |
58 | cgit_print_error(fmt("Bad object name: %s", hex)); | 91 | cgit_print_error(fmt("Bad object name: %s", hex)); |
59 | return; | 92 | return; |
60 | } | 93 | } |
61 | 94 | ||
62 | buf = read_sha1_file(sha1, &type, &size); | 95 | buf = read_sha1_file(sha1, &type, &size); |
63 | if (!buf) { | 96 | if (!buf) { |
64 | cgit_print_error(fmt("Error reading object %s", hex)); | 97 | cgit_print_error(fmt("Error reading object %s", hex)); |
65 | return; | 98 | return; |
66 | } | 99 | } |
67 | 100 | ||
68 | buf[size] = '\0'; | 101 | buf[size] = '\0'; |
69 | ctx.page.mimetype = ctx.qry.mimetype; | 102 | ctx.page.mimetype = ctx.qry.mimetype; |
70 | if (!ctx.page.mimetype) { | 103 | if (!ctx.page.mimetype) { |
71 | if (buffer_is_binary(buf, size)) | 104 | if (buffer_is_binary(buf, size)) |
72 | ctx.page.mimetype = "application/octet-stream"; | 105 | ctx.page.mimetype = "application/octet-stream"; |
73 | else | 106 | else |
74 | ctx.page.mimetype = "text/plain"; | 107 | ctx.page.mimetype = "text/plain"; |
75 | } | 108 | } |
76 | ctx.page.filename = path; | 109 | ctx.page.filename = path; |
77 | cgit_print_http_headers(&ctx); | 110 | cgit_print_http_headers(&ctx); |
78 | write(htmlfd, buf, size); | 111 | write(htmlfd, buf, size); |
79 | } | 112 | } |
@@ -1,6 +1,7 @@ | |||
1 | #ifndef UI_BLOB_H | 1 | #ifndef UI_BLOB_H |
2 | #define UI_BLOB_H | 2 | #define UI_BLOB_H |
3 | 3 | ||
4 | extern int cgit_print_file(char *path, const char *head); | ||
4 | extern void cgit_print_blob(const char *hex, char *path, const char *head); | 5 | extern void cgit_print_blob(const char *hex, char *path, const char *head); |
5 | 6 | ||
6 | #endif /* UI_BLOB_H */ | 7 | #endif /* UI_BLOB_H */ |
diff --git a/ui-summary.c b/ui-summary.c index a2c018e..02f191e 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -1,92 +1,110 @@ | |||
1 | /* ui-summary.c: functions for generating repo summary page | 1 | /* ui-summary.c: functions for generating repo summary page |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * Copyright (C) 2010 Jason A. Donenfeld <Jason@zx2c4.com> | ||
4 | * | 5 | * |
5 | * Licensed under GNU General Public License v2 | 6 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 7 | * (see COPYING for full license text) |
7 | */ | 8 | */ |
8 | 9 | ||
9 | #include "cgit.h" | 10 | #include "cgit.h" |
10 | #include "html.h" | 11 | #include "html.h" |
11 | #include "ui-log.h" | 12 | #include "ui-log.h" |
12 | #include "ui-refs.h" | 13 | #include "ui-refs.h" |
14 | #include "ui-blob.h" | ||
13 | 15 | ||
14 | int urls = 0; | 16 | int urls = 0; |
15 | 17 | ||
16 | static void print_url(char *base, char *suffix) | 18 | static void print_url(char *base, char *suffix) |
17 | { | 19 | { |
18 | if (!base || !*base) | 20 | if (!base || !*base) |
19 | return; | 21 | return; |
20 | if (urls++ == 0) { | 22 | if (urls++ == 0) { |
21 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 23 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
22 | html("<tr><th class='left' colspan='4'>Clone</th></tr>\n"); | 24 | html("<tr><th class='left' colspan='4'>Clone</th></tr>\n"); |
23 | } | 25 | } |
24 | if (suffix && *suffix) | 26 | if (suffix && *suffix) |
25 | base = fmt("%s/%s", base, suffix); | 27 | base = fmt("%s/%s", base, suffix); |
26 | html("<tr><td colspan='4'><a href='"); | 28 | html("<tr><td colspan='4'><a href='"); |
27 | html_url_path(base); | 29 | html_url_path(base); |
28 | html("'>"); | 30 | html("'>"); |
29 | html_txt(base); | 31 | html_txt(base); |
30 | html("</a></td></tr>\n"); | 32 | html("</a></td></tr>\n"); |
31 | } | 33 | } |
32 | 34 | ||
33 | static void print_urls(char *txt, char *suffix) | 35 | static void print_urls(char *txt, char *suffix) |
34 | { | 36 | { |
35 | char *h = txt, *t, c; | 37 | char *h = txt, *t, c; |
36 | 38 | ||
37 | while (h && *h) { | 39 | while (h && *h) { |
38 | while (h && *h == ' ') | 40 | while (h && *h == ' ') |
39 | h++; | 41 | h++; |
40 | t = h; | 42 | t = h; |
41 | while (t && *t && *t != ' ') | 43 | while (t && *t && *t != ' ') |
42 | t++; | 44 | t++; |
43 | c = *t; | 45 | c = *t; |
44 | *t = 0; | 46 | *t = 0; |
45 | print_url(h, suffix); | 47 | print_url(h, suffix); |
46 | *t = c; | 48 | *t = c; |
47 | h = t; | 49 | h = t; |
48 | } | 50 | } |
49 | } | 51 | } |
50 | 52 | ||
51 | void cgit_print_summary() | 53 | void cgit_print_summary() |
52 | { | 54 | { |
53 | html("<table summary='repository info' class='list nowrap'>"); | 55 | html("<table summary='repository info' class='list nowrap'>"); |
54 | cgit_print_branches(ctx.cfg.summary_branches); | 56 | cgit_print_branches(ctx.cfg.summary_branches); |
55 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 57 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
56 | cgit_print_tags(ctx.cfg.summary_tags); | 58 | cgit_print_tags(ctx.cfg.summary_tags); |
57 | if (ctx.cfg.summary_log > 0) { | 59 | if (ctx.cfg.summary_log > 0) { |
58 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 60 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
59 | cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, | 61 | cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, |
60 | NULL, NULL, 0); | 62 | NULL, NULL, 0); |
61 | } | 63 | } |
62 | if (ctx.repo->clone_url) | 64 | if (ctx.repo->clone_url) |
63 | print_urls(ctx.repo->clone_url, NULL); | 65 | print_urls(ctx.repo->clone_url, NULL); |
64 | else if (ctx.cfg.clone_prefix) | 66 | else if (ctx.cfg.clone_prefix) |
65 | print_urls(ctx.cfg.clone_prefix, ctx.repo->url); | 67 | print_urls(ctx.cfg.clone_prefix, ctx.repo->url); |
66 | html("</table>"); | 68 | html("</table>"); |
67 | } | 69 | } |
68 | 70 | ||
69 | void cgit_print_repo_readme(char *path) | 71 | void cgit_print_repo_readme(char *path) |
70 | { | 72 | { |
71 | char *slash, *tmp; | 73 | char *slash, *tmp, *colon, *ref = 0; |
72 | 74 | ||
73 | if (!ctx.repo->readme) | 75 | if (!ctx.repo->readme) |
74 | return; | 76 | return; |
75 | 77 | ||
76 | if (path) { | 78 | if (path) { |
77 | slash = strrchr(ctx.repo->readme, '/'); | 79 | slash = strrchr(ctx.repo->readme, '/'); |
78 | if (!slash) | 80 | if (!slash) { |
79 | return; | 81 | slash = strchr(ctx.repo->readme, ':'); |
82 | if (!slash) | ||
83 | return; | ||
84 | } | ||
80 | tmp = xmalloc(slash - ctx.repo->readme + 1 + strlen(path) + 1); | 85 | tmp = xmalloc(slash - ctx.repo->readme + 1 + strlen(path) + 1); |
81 | strncpy(tmp, ctx.repo->readme, slash - ctx.repo->readme + 1); | 86 | strncpy(tmp, ctx.repo->readme, slash - ctx.repo->readme + 1); |
82 | strcpy(tmp + (slash - ctx.repo->readme + 1), path); | 87 | strcpy(tmp + (slash - ctx.repo->readme + 1), path); |
83 | } else | 88 | } else |
84 | tmp = ctx.repo->readme; | 89 | tmp = ctx.repo->readme; |
90 | colon = strchr(tmp, ':'); | ||
91 | if (colon && strlen(colon) > 1) { | ||
92 | *colon = '\0'; | ||
93 | ref = tmp; | ||
94 | tmp = colon + 1; | ||
95 | while ((*tmp == '/' || *tmp == ':') && *tmp != '\0') | ||
96 | ++tmp; | ||
97 | if (!(*tmp)) | ||
98 | return; | ||
99 | } | ||
85 | html("<div id='summary'>"); | 100 | html("<div id='summary'>"); |
86 | if (ctx.repo->about_filter) | 101 | if (ctx.repo->about_filter) |
87 | cgit_open_filter(ctx.repo->about_filter); | 102 | cgit_open_filter(ctx.repo->about_filter); |
88 | html_include(tmp); | 103 | if (ref) |
104 | cgit_print_file(tmp, ref); | ||
105 | else | ||
106 | html_include(tmp); | ||
89 | if (ctx.repo->about_filter) | 107 | if (ctx.repo->about_filter) |
90 | cgit_close_filter(ctx.repo->about_filter); | 108 | cgit_close_filter(ctx.repo->about_filter); |
91 | html("</div>"); | 109 | html("</div>"); |
92 | } | 110 | } |