summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c2
-rw-r--r--cgit.h3
-rw-r--r--shared.c5
-rw-r--r--ui-diff.c14
-rw-r--r--ui-log.c2
-rw-r--r--ui-patch.c2
-rw-r--r--ui-shared.c14
7 files changed, 34 insertions, 8 deletions
diff --git a/cgit.c b/cgit.c
index d4fcfa7..ab25b6a 100644
--- a/cgit.c
+++ b/cgit.c
@@ -1,747 +1,749 @@
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#include "cache.h" 10#include "cache.h"
11#include "cmd.h" 11#include "cmd.h"
12#include "configfile.h" 12#include "configfile.h"
13#include "html.h" 13#include "html.h"
14#include "ui-shared.h" 14#include "ui-shared.h"
15#include "ui-stats.h" 15#include "ui-stats.h"
16#include "scan-tree.h" 16#include "scan-tree.h"
17 17
18const char *cgit_version = CGIT_VERSION; 18const char *cgit_version = CGIT_VERSION;
19 19
20void add_mimetype(const char *name, const char *value) 20void add_mimetype(const char *name, const char *value)
21{ 21{
22 struct string_list_item *item; 22 struct string_list_item *item;
23 23
24 item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes); 24 item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes);
25 item->util = xstrdup(value); 25 item->util = xstrdup(value);
26} 26}
27 27
28struct cgit_filter *new_filter(const char *cmd, int extra_args) 28struct cgit_filter *new_filter(const char *cmd, int extra_args)
29{ 29{
30 struct cgit_filter *f; 30 struct cgit_filter *f;
31 31
32 if (!cmd || !cmd[0]) 32 if (!cmd || !cmd[0])
33 return NULL; 33 return NULL;
34 34
35 f = xmalloc(sizeof(struct cgit_filter)); 35 f = xmalloc(sizeof(struct cgit_filter));
36 f->cmd = xstrdup(cmd); 36 f->cmd = xstrdup(cmd);
37 f->argv = xmalloc((2 + extra_args) * sizeof(char *)); 37 f->argv = xmalloc((2 + extra_args) * sizeof(char *));
38 f->argv[0] = f->cmd; 38 f->argv[0] = f->cmd;
39 f->argv[1] = NULL; 39 f->argv[1] = NULL;
40 return f; 40 return f;
41} 41}
42 42
43static void process_cached_repolist(const char *path); 43static void process_cached_repolist(const char *path);
44 44
45void repo_config(struct cgit_repo *repo, const char *name, const char *value) 45void repo_config(struct cgit_repo *repo, const char *name, const char *value)
46{ 46{
47 if (!strcmp(name, "name")) 47 if (!strcmp(name, "name"))
48 repo->name = xstrdup(value); 48 repo->name = xstrdup(value);
49 else if (!strcmp(name, "clone-url")) 49 else if (!strcmp(name, "clone-url"))
50 repo->clone_url = xstrdup(value); 50 repo->clone_url = xstrdup(value);
51 else if (!strcmp(name, "desc")) 51 else if (!strcmp(name, "desc"))
52 repo->desc = xstrdup(value); 52 repo->desc = xstrdup(value);
53 else if (!strcmp(name, "owner")) 53 else if (!strcmp(name, "owner"))
54 repo->owner = xstrdup(value); 54 repo->owner = xstrdup(value);
55 else if (!strcmp(name, "defbranch")) 55 else if (!strcmp(name, "defbranch"))
56 repo->defbranch = xstrdup(value); 56 repo->defbranch = xstrdup(value);
57 else if (!strcmp(name, "snapshots")) 57 else if (!strcmp(name, "snapshots"))
58 repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); 58 repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value);
59 else if (!strcmp(name, "enable-log-filecount")) 59 else if (!strcmp(name, "enable-log-filecount"))
60 repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); 60 repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
61 else if (!strcmp(name, "enable-log-linecount")) 61 else if (!strcmp(name, "enable-log-linecount"))
62 repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); 62 repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
63 else if (!strcmp(name, "enable-remote-branches")) 63 else if (!strcmp(name, "enable-remote-branches"))
64 repo->enable_remote_branches = atoi(value); 64 repo->enable_remote_branches = atoi(value);
65 else if (!strcmp(name, "enable-subject-links")) 65 else if (!strcmp(name, "enable-subject-links"))
66 repo->enable_subject_links = atoi(value); 66 repo->enable_subject_links = atoi(value);
67 else if (!strcmp(name, "max-stats")) 67 else if (!strcmp(name, "max-stats"))
68 repo->max_stats = cgit_find_stats_period(value, NULL); 68 repo->max_stats = cgit_find_stats_period(value, NULL);
69 else if (!strcmp(name, "module-link")) 69 else if (!strcmp(name, "module-link"))
70 repo->module_link= xstrdup(value); 70 repo->module_link= xstrdup(value);
71 else if (!strcmp(name, "section")) 71 else if (!strcmp(name, "section"))
72 repo->section = xstrdup(value); 72 repo->section = xstrdup(value);
73 else if (!strcmp(name, "readme") && value != NULL) { 73 else if (!strcmp(name, "readme") && value != NULL) {
74 if (*value == '/') 74 if (*value == '/')
75 repo->readme = xstrdup(value); 75 repo->readme = xstrdup(value);
76 else 76 else
77 repo->readme = xstrdup(fmt("%s/%s", repo->path, value)); 77 repo->readme = xstrdup(fmt("%s/%s", repo->path, value));
78 } else if (ctx.cfg.enable_filter_overrides) { 78 } else if (ctx.cfg.enable_filter_overrides) {
79 if (!strcmp(name, "about-filter")) 79 if (!strcmp(name, "about-filter"))
80 repo->about_filter = new_filter(value, 0); 80 repo->about_filter = new_filter(value, 0);
81 else if (!strcmp(name, "commit-filter")) 81 else if (!strcmp(name, "commit-filter"))
82 repo->commit_filter = new_filter(value, 0); 82 repo->commit_filter = new_filter(value, 0);
83 else if (!strcmp(name, "source-filter")) 83 else if (!strcmp(name, "source-filter"))
84 repo->source_filter = new_filter(value, 1); 84 repo->source_filter = new_filter(value, 1);
85 } 85 }
86} 86}
87 87
88void config_cb(const char *name, const char *value) 88void config_cb(const char *name, const char *value)
89{ 89{
90 if (!strcmp(name, "section") || !strcmp(name, "repo.group")) 90 if (!strcmp(name, "section") || !strcmp(name, "repo.group"))
91 ctx.cfg.section = xstrdup(value); 91 ctx.cfg.section = xstrdup(value);
92 else if (!strcmp(name, "repo.url")) 92 else if (!strcmp(name, "repo.url"))
93 ctx.repo = cgit_add_repo(value); 93 ctx.repo = cgit_add_repo(value);
94 else if (ctx.repo && !strcmp(name, "repo.path")) 94 else if (ctx.repo && !strcmp(name, "repo.path"))
95 ctx.repo->path = trim_end(value, '/'); 95 ctx.repo->path = trim_end(value, '/');
96 else if (ctx.repo && !prefixcmp(name, "repo.")) 96 else if (ctx.repo && !prefixcmp(name, "repo."))
97 repo_config(ctx.repo, name + 5, value); 97 repo_config(ctx.repo, name + 5, value);
98 else if (!strcmp(name, "root-title")) 98 else if (!strcmp(name, "root-title"))
99 ctx.cfg.root_title = xstrdup(value); 99 ctx.cfg.root_title = xstrdup(value);
100 else if (!strcmp(name, "root-desc")) 100 else if (!strcmp(name, "root-desc"))
101 ctx.cfg.root_desc = xstrdup(value); 101 ctx.cfg.root_desc = xstrdup(value);
102 else if (!strcmp(name, "root-readme")) 102 else if (!strcmp(name, "root-readme"))
103 ctx.cfg.root_readme = xstrdup(value); 103 ctx.cfg.root_readme = xstrdup(value);
104 else if (!strcmp(name, "css")) 104 else if (!strcmp(name, "css"))
105 ctx.cfg.css = xstrdup(value); 105 ctx.cfg.css = xstrdup(value);
106 else if (!strcmp(name, "favicon")) 106 else if (!strcmp(name, "favicon"))
107 ctx.cfg.favicon = xstrdup(value); 107 ctx.cfg.favicon = xstrdup(value);
108 else if (!strcmp(name, "footer")) 108 else if (!strcmp(name, "footer"))
109 ctx.cfg.footer = xstrdup(value); 109 ctx.cfg.footer = xstrdup(value);
110 else if (!strcmp(name, "head-include")) 110 else if (!strcmp(name, "head-include"))
111 ctx.cfg.head_include = xstrdup(value); 111 ctx.cfg.head_include = xstrdup(value);
112 else if (!strcmp(name, "header")) 112 else if (!strcmp(name, "header"))
113 ctx.cfg.header = xstrdup(value); 113 ctx.cfg.header = xstrdup(value);
114 else if (!strcmp(name, "logo")) 114 else if (!strcmp(name, "logo"))
115 ctx.cfg.logo = xstrdup(value); 115 ctx.cfg.logo = xstrdup(value);
116 else if (!strcmp(name, "index-header")) 116 else if (!strcmp(name, "index-header"))
117 ctx.cfg.index_header = xstrdup(value); 117 ctx.cfg.index_header = xstrdup(value);
118 else if (!strcmp(name, "index-info")) 118 else if (!strcmp(name, "index-info"))
119 ctx.cfg.index_info = xstrdup(value); 119 ctx.cfg.index_info = xstrdup(value);
120 else if (!strcmp(name, "logo-link")) 120 else if (!strcmp(name, "logo-link"))
121 ctx.cfg.logo_link = xstrdup(value); 121 ctx.cfg.logo_link = xstrdup(value);
122 else if (!strcmp(name, "module-link")) 122 else if (!strcmp(name, "module-link"))
123 ctx.cfg.module_link = xstrdup(value); 123 ctx.cfg.module_link = xstrdup(value);
124 else if (!strcmp(name, "virtual-root")) { 124 else if (!strcmp(name, "virtual-root")) {
125 ctx.cfg.virtual_root = trim_end(value, '/'); 125 ctx.cfg.virtual_root = trim_end(value, '/');
126 if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) 126 if (!ctx.cfg.virtual_root && (!strcmp(value, "/")))
127 ctx.cfg.virtual_root = ""; 127 ctx.cfg.virtual_root = "";
128 } else if (!strcmp(name, "nocache")) 128 } else if (!strcmp(name, "nocache"))
129 ctx.cfg.nocache = atoi(value); 129 ctx.cfg.nocache = atoi(value);
130 else if (!strcmp(name, "noplainemail")) 130 else if (!strcmp(name, "noplainemail"))
131 ctx.cfg.noplainemail = atoi(value); 131 ctx.cfg.noplainemail = atoi(value);
132 else if (!strcmp(name, "noheader")) 132 else if (!strcmp(name, "noheader"))
133 ctx.cfg.noheader = atoi(value); 133 ctx.cfg.noheader = atoi(value);
134 else if (!strcmp(name, "snapshots")) 134 else if (!strcmp(name, "snapshots"))
135 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); 135 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
136 else if (!strcmp(name, "enable-filter-overrides")) 136 else if (!strcmp(name, "enable-filter-overrides"))
137 ctx.cfg.enable_filter_overrides = atoi(value); 137 ctx.cfg.enable_filter_overrides = atoi(value);
138 else if (!strcmp(name, "enable-index-links")) 138 else if (!strcmp(name, "enable-index-links"))
139 ctx.cfg.enable_index_links = atoi(value); 139 ctx.cfg.enable_index_links = atoi(value);
140 else if (!strcmp(name, "enable-log-filecount")) 140 else if (!strcmp(name, "enable-log-filecount"))
141 ctx.cfg.enable_log_filecount = atoi(value); 141 ctx.cfg.enable_log_filecount = atoi(value);
142 else if (!strcmp(name, "enable-log-linecount")) 142 else if (!strcmp(name, "enable-log-linecount"))
143 ctx.cfg.enable_log_linecount = atoi(value); 143 ctx.cfg.enable_log_linecount = atoi(value);
144 else if (!strcmp(name, "enable-remote-branches")) 144 else if (!strcmp(name, "enable-remote-branches"))
145 ctx.cfg.enable_remote_branches = atoi(value); 145 ctx.cfg.enable_remote_branches = atoi(value);
146 else if (!strcmp(name, "enable-subject-links")) 146 else if (!strcmp(name, "enable-subject-links"))
147 ctx.cfg.enable_subject_links = atoi(value); 147 ctx.cfg.enable_subject_links = atoi(value);
148 else if (!strcmp(name, "enable-tree-linenumbers")) 148 else if (!strcmp(name, "enable-tree-linenumbers"))
149 ctx.cfg.enable_tree_linenumbers = atoi(value); 149 ctx.cfg.enable_tree_linenumbers = atoi(value);
150 else if (!strcmp(name, "max-stats")) 150 else if (!strcmp(name, "max-stats"))
151 ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); 151 ctx.cfg.max_stats = cgit_find_stats_period(value, NULL);
152 else if (!strcmp(name, "cache-size")) 152 else if (!strcmp(name, "cache-size"))
153 ctx.cfg.cache_size = atoi(value); 153 ctx.cfg.cache_size = atoi(value);
154 else if (!strcmp(name, "cache-root")) 154 else if (!strcmp(name, "cache-root"))
155 ctx.cfg.cache_root = xstrdup(value); 155 ctx.cfg.cache_root = xstrdup(value);
156 else if (!strcmp(name, "cache-root-ttl")) 156 else if (!strcmp(name, "cache-root-ttl"))
157 ctx.cfg.cache_root_ttl = atoi(value); 157 ctx.cfg.cache_root_ttl = atoi(value);
158 else if (!strcmp(name, "cache-repo-ttl")) 158 else if (!strcmp(name, "cache-repo-ttl"))
159 ctx.cfg.cache_repo_ttl = atoi(value); 159 ctx.cfg.cache_repo_ttl = atoi(value);
160 else if (!strcmp(name, "cache-scanrc-ttl")) 160 else if (!strcmp(name, "cache-scanrc-ttl"))
161 ctx.cfg.cache_scanrc_ttl = atoi(value); 161 ctx.cfg.cache_scanrc_ttl = atoi(value);
162 else if (!strcmp(name, "cache-static-ttl")) 162 else if (!strcmp(name, "cache-static-ttl"))
163 ctx.cfg.cache_static_ttl = atoi(value); 163 ctx.cfg.cache_static_ttl = atoi(value);
164 else if (!strcmp(name, "cache-dynamic-ttl")) 164 else if (!strcmp(name, "cache-dynamic-ttl"))
165 ctx.cfg.cache_dynamic_ttl = atoi(value); 165 ctx.cfg.cache_dynamic_ttl = atoi(value);
166 else if (!strcmp(name, "about-filter")) 166 else if (!strcmp(name, "about-filter"))
167 ctx.cfg.about_filter = new_filter(value, 0); 167 ctx.cfg.about_filter = new_filter(value, 0);
168 else if (!strcmp(name, "commit-filter")) 168 else if (!strcmp(name, "commit-filter"))
169 ctx.cfg.commit_filter = new_filter(value, 0); 169 ctx.cfg.commit_filter = new_filter(value, 0);
170 else if (!strcmp(name, "embedded")) 170 else if (!strcmp(name, "embedded"))
171 ctx.cfg.embedded = atoi(value); 171 ctx.cfg.embedded = atoi(value);
172 else if (!strcmp(name, "max-atom-items")) 172 else if (!strcmp(name, "max-atom-items"))
173 ctx.cfg.max_atom_items = atoi(value); 173 ctx.cfg.max_atom_items = atoi(value);
174 else if (!strcmp(name, "max-message-length")) 174 else if (!strcmp(name, "max-message-length"))
175 ctx.cfg.max_msg_len = atoi(value); 175 ctx.cfg.max_msg_len = atoi(value);
176 else if (!strcmp(name, "max-repodesc-length")) 176 else if (!strcmp(name, "max-repodesc-length"))
177 ctx.cfg.max_repodesc_len = atoi(value); 177 ctx.cfg.max_repodesc_len = atoi(value);
178 else if (!strcmp(name, "max-blob-size")) 178 else if (!strcmp(name, "max-blob-size"))
179 ctx.cfg.max_blob_size = atoi(value); 179 ctx.cfg.max_blob_size = atoi(value);
180 else if (!strcmp(name, "max-repo-count")) 180 else if (!strcmp(name, "max-repo-count"))
181 ctx.cfg.max_repo_count = atoi(value); 181 ctx.cfg.max_repo_count = atoi(value);
182 else if (!strcmp(name, "max-commit-count")) 182 else if (!strcmp(name, "max-commit-count"))
183 ctx.cfg.max_commit_count = atoi(value); 183 ctx.cfg.max_commit_count = atoi(value);
184 else if (!strcmp(name, "scan-path")) 184 else if (!strcmp(name, "scan-path"))
185 if (!ctx.cfg.nocache && ctx.cfg.cache_size) 185 if (!ctx.cfg.nocache && ctx.cfg.cache_size)
186 process_cached_repolist(value); 186 process_cached_repolist(value);
187 else 187 else
188 scan_tree(value, repo_config); 188 scan_tree(value, repo_config);
189 else if (!strcmp(name, "source-filter")) 189 else if (!strcmp(name, "source-filter"))
190 ctx.cfg.source_filter = new_filter(value, 1); 190 ctx.cfg.source_filter = new_filter(value, 1);
191 else if (!strcmp(name, "summary-log")) 191 else if (!strcmp(name, "summary-log"))
192 ctx.cfg.summary_log = atoi(value); 192 ctx.cfg.summary_log = atoi(value);
193 else if (!strcmp(name, "summary-branches")) 193 else if (!strcmp(name, "summary-branches"))
194 ctx.cfg.summary_branches = atoi(value); 194 ctx.cfg.summary_branches = atoi(value);
195 else if (!strcmp(name, "summary-tags")) 195 else if (!strcmp(name, "summary-tags"))
196 ctx.cfg.summary_tags = atoi(value); 196 ctx.cfg.summary_tags = atoi(value);
197 else if (!strcmp(name, "side-by-side-diffs")) 197 else if (!strcmp(name, "side-by-side-diffs"))
198 ctx.cfg.ssdiff = atoi(value); 198 ctx.cfg.ssdiff = atoi(value);
199 else if (!strcmp(name, "agefile")) 199 else if (!strcmp(name, "agefile"))
200 ctx.cfg.agefile = xstrdup(value); 200 ctx.cfg.agefile = xstrdup(value);
201 else if (!strcmp(name, "renamelimit")) 201 else if (!strcmp(name, "renamelimit"))
202 ctx.cfg.renamelimit = atoi(value); 202 ctx.cfg.renamelimit = atoi(value);
203 else if (!strcmp(name, "robots")) 203 else if (!strcmp(name, "robots"))
204 ctx.cfg.robots = xstrdup(value); 204 ctx.cfg.robots = xstrdup(value);
205 else if (!strcmp(name, "clone-prefix")) 205 else if (!strcmp(name, "clone-prefix"))
206 ctx.cfg.clone_prefix = xstrdup(value); 206 ctx.cfg.clone_prefix = xstrdup(value);
207 else if (!strcmp(name, "local-time")) 207 else if (!strcmp(name, "local-time"))
208 ctx.cfg.local_time = atoi(value); 208 ctx.cfg.local_time = atoi(value);
209 else if (!prefixcmp(name, "mimetype.")) 209 else if (!prefixcmp(name, "mimetype."))
210 add_mimetype(name + 9, value); 210 add_mimetype(name + 9, value);
211 else if (!strcmp(name, "include")) 211 else if (!strcmp(name, "include"))
212 parse_configfile(value, config_cb); 212 parse_configfile(value, config_cb);
213} 213}
214 214
215static void querystring_cb(const char *name, const char *value) 215static void querystring_cb(const char *name, const char *value)
216{ 216{
217 if (!value) 217 if (!value)
218 value = ""; 218 value = "";
219 219
220 if (!strcmp(name,"r")) { 220 if (!strcmp(name,"r")) {
221 ctx.qry.repo = xstrdup(value); 221 ctx.qry.repo = xstrdup(value);
222 ctx.repo = cgit_get_repoinfo(value); 222 ctx.repo = cgit_get_repoinfo(value);
223 } else if (!strcmp(name, "p")) { 223 } else if (!strcmp(name, "p")) {
224 ctx.qry.page = xstrdup(value); 224 ctx.qry.page = xstrdup(value);
225 } else if (!strcmp(name, "url")) { 225 } else if (!strcmp(name, "url")) {
226 if (*value == '/') 226 if (*value == '/')
227 value++; 227 value++;
228 ctx.qry.url = xstrdup(value); 228 ctx.qry.url = xstrdup(value);
229 cgit_parse_url(value); 229 cgit_parse_url(value);
230 } else if (!strcmp(name, "qt")) { 230 } else if (!strcmp(name, "qt")) {
231 ctx.qry.grep = xstrdup(value); 231 ctx.qry.grep = xstrdup(value);
232 } else if (!strcmp(name, "q")) { 232 } else if (!strcmp(name, "q")) {
233 ctx.qry.search = xstrdup(value); 233 ctx.qry.search = xstrdup(value);
234 } else if (!strcmp(name, "h")) { 234 } else if (!strcmp(name, "h")) {
235 ctx.qry.head = xstrdup(value); 235 ctx.qry.head = xstrdup(value);
236 ctx.qry.has_symref = 1; 236 ctx.qry.has_symref = 1;
237 } else if (!strcmp(name, "id")) { 237 } else if (!strcmp(name, "id")) {
238 ctx.qry.sha1 = xstrdup(value); 238 ctx.qry.sha1 = xstrdup(value);
239 ctx.qry.has_sha1 = 1; 239 ctx.qry.has_sha1 = 1;
240 } else if (!strcmp(name, "id2")) { 240 } else if (!strcmp(name, "id2")) {
241 ctx.qry.sha2 = xstrdup(value); 241 ctx.qry.sha2 = xstrdup(value);
242 ctx.qry.has_sha1 = 1; 242 ctx.qry.has_sha1 = 1;
243 } else if (!strcmp(name, "ofs")) { 243 } else if (!strcmp(name, "ofs")) {
244 ctx.qry.ofs = atoi(value); 244 ctx.qry.ofs = atoi(value);
245 } else if (!strcmp(name, "path")) { 245 } else if (!strcmp(name, "path")) {
246 ctx.qry.path = trim_end(value, '/'); 246 ctx.qry.path = trim_end(value, '/');
247 } else if (!strcmp(name, "name")) { 247 } else if (!strcmp(name, "name")) {
248 ctx.qry.name = xstrdup(value); 248 ctx.qry.name = xstrdup(value);
249 } else if (!strcmp(name, "mimetype")) { 249 } else if (!strcmp(name, "mimetype")) {
250 ctx.qry.mimetype = xstrdup(value); 250 ctx.qry.mimetype = xstrdup(value);
251 } else if (!strcmp(name, "s")){ 251 } else if (!strcmp(name, "s")){
252 ctx.qry.sort = xstrdup(value); 252 ctx.qry.sort = xstrdup(value);
253 } else if (!strcmp(name, "showmsg")) { 253 } else if (!strcmp(name, "showmsg")) {
254 ctx.qry.showmsg = atoi(value); 254 ctx.qry.showmsg = atoi(value);
255 } else if (!strcmp(name, "period")) { 255 } else if (!strcmp(name, "period")) {
256 ctx.qry.period = xstrdup(value); 256 ctx.qry.period = xstrdup(value);
257 } else if (!strcmp(name, "ss")) { 257 } else if (!strcmp(name, "ss")) {
258 ctx.qry.ssdiff = atoi(value); 258 ctx.qry.ssdiff = atoi(value);
259 } else if (!strcmp(name, "all")) { 259 } else if (!strcmp(name, "all")) {
260 ctx.qry.show_all = atoi(value); 260 ctx.qry.show_all = atoi(value);
261 } else if (!strcmp(name, "context")) {
262 ctx.qry.context = atoi(value);
261 } 263 }
262} 264}
263 265
264char *xstrdupn(const char *str) 266char *xstrdupn(const char *str)
265{ 267{
266 return (str ? xstrdup(str) : NULL); 268 return (str ? xstrdup(str) : NULL);
267} 269}
268 270
269static void prepare_context(struct cgit_context *ctx) 271static void prepare_context(struct cgit_context *ctx)
270{ 272{
271 memset(ctx, 0, sizeof(*ctx)); 273 memset(ctx, 0, sizeof(*ctx));
272 ctx->cfg.agefile = "info/web/last-modified"; 274 ctx->cfg.agefile = "info/web/last-modified";
273 ctx->cfg.nocache = 0; 275 ctx->cfg.nocache = 0;
274 ctx->cfg.cache_size = 0; 276 ctx->cfg.cache_size = 0;
275 ctx->cfg.cache_dynamic_ttl = 5; 277 ctx->cfg.cache_dynamic_ttl = 5;
276 ctx->cfg.cache_max_create_time = 5; 278 ctx->cfg.cache_max_create_time = 5;
277 ctx->cfg.cache_repo_ttl = 5; 279 ctx->cfg.cache_repo_ttl = 5;
278 ctx->cfg.cache_root = CGIT_CACHE_ROOT; 280 ctx->cfg.cache_root = CGIT_CACHE_ROOT;
279 ctx->cfg.cache_root_ttl = 5; 281 ctx->cfg.cache_root_ttl = 5;
280 ctx->cfg.cache_scanrc_ttl = 15; 282 ctx->cfg.cache_scanrc_ttl = 15;
281 ctx->cfg.cache_static_ttl = -1; 283 ctx->cfg.cache_static_ttl = -1;
282 ctx->cfg.css = "/cgit.css"; 284 ctx->cfg.css = "/cgit.css";
283 ctx->cfg.logo = "/cgit.png"; 285 ctx->cfg.logo = "/cgit.png";
284 ctx->cfg.local_time = 0; 286 ctx->cfg.local_time = 0;
285 ctx->cfg.enable_tree_linenumbers = 1; 287 ctx->cfg.enable_tree_linenumbers = 1;
286 ctx->cfg.max_repo_count = 50; 288 ctx->cfg.max_repo_count = 50;
287 ctx->cfg.max_commit_count = 50; 289 ctx->cfg.max_commit_count = 50;
288 ctx->cfg.max_lock_attempts = 5; 290 ctx->cfg.max_lock_attempts = 5;
289 ctx->cfg.max_msg_len = 80; 291 ctx->cfg.max_msg_len = 80;
290 ctx->cfg.max_repodesc_len = 80; 292 ctx->cfg.max_repodesc_len = 80;
291 ctx->cfg.max_blob_size = 0; 293 ctx->cfg.max_blob_size = 0;
292 ctx->cfg.max_stats = 0; 294 ctx->cfg.max_stats = 0;
293 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; 295 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
294 ctx->cfg.renamelimit = -1; 296 ctx->cfg.renamelimit = -1;
295 ctx->cfg.robots = "index, nofollow"; 297 ctx->cfg.robots = "index, nofollow";
296 ctx->cfg.root_title = "Git repository browser"; 298 ctx->cfg.root_title = "Git repository browser";
297 ctx->cfg.root_desc = "a fast webinterface for the git dscm"; 299 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
298 ctx->cfg.script_name = CGIT_SCRIPT_NAME; 300 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
299 ctx->cfg.section = ""; 301 ctx->cfg.section = "";
300 ctx->cfg.summary_branches = 10; 302 ctx->cfg.summary_branches = 10;
301 ctx->cfg.summary_log = 10; 303 ctx->cfg.summary_log = 10;
302 ctx->cfg.summary_tags = 10; 304 ctx->cfg.summary_tags = 10;
303 ctx->cfg.max_atom_items = 10; 305 ctx->cfg.max_atom_items = 10;
304 ctx->cfg.ssdiff = 0; 306 ctx->cfg.ssdiff = 0;
305 ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); 307 ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG"));
306 ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); 308 ctx->env.http_host = xstrdupn(getenv("HTTP_HOST"));
307 ctx->env.https = xstrdupn(getenv("HTTPS")); 309 ctx->env.https = xstrdupn(getenv("HTTPS"));
308 ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); 310 ctx->env.no_http = xstrdupn(getenv("NO_HTTP"));
309 ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); 311 ctx->env.path_info = xstrdupn(getenv("PATH_INFO"));
310 ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); 312 ctx->env.query_string = xstrdupn(getenv("QUERY_STRING"));
311 ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); 313 ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD"));
312 ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); 314 ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME"));
313 ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); 315 ctx->env.server_name = xstrdupn(getenv("SERVER_NAME"));
314 ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); 316 ctx->env.server_port = xstrdupn(getenv("SERVER_PORT"));
315 ctx->page.mimetype = "text/html"; 317 ctx->page.mimetype = "text/html";
316 ctx->page.charset = PAGE_ENCODING; 318 ctx->page.charset = PAGE_ENCODING;
317 ctx->page.filename = NULL; 319 ctx->page.filename = NULL;
318 ctx->page.size = 0; 320 ctx->page.size = 0;
319 ctx->page.modified = time(NULL); 321 ctx->page.modified = time(NULL);
320 ctx->page.expires = ctx->page.modified; 322 ctx->page.expires = ctx->page.modified;
321 ctx->page.etag = NULL; 323 ctx->page.etag = NULL;
322 memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list)); 324 memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list));
323 if (ctx->env.script_name) 325 if (ctx->env.script_name)
324 ctx->cfg.script_name = ctx->env.script_name; 326 ctx->cfg.script_name = ctx->env.script_name;
325 if (ctx->env.query_string) 327 if (ctx->env.query_string)
326 ctx->qry.raw = ctx->env.query_string; 328 ctx->qry.raw = ctx->env.query_string;
327 if (!ctx->env.cgit_config) 329 if (!ctx->env.cgit_config)
328 ctx->env.cgit_config = CGIT_CONFIG; 330 ctx->env.cgit_config = CGIT_CONFIG;
329} 331}
330 332
331struct refmatch { 333struct refmatch {
332 char *req_ref; 334 char *req_ref;
333 char *first_ref; 335 char *first_ref;
334 int match; 336 int match;
335}; 337};
336 338
337int find_current_ref(const char *refname, const unsigned char *sha1, 339int find_current_ref(const char *refname, const unsigned char *sha1,
338 int flags, void *cb_data) 340 int flags, void *cb_data)
339{ 341{
340 struct refmatch *info; 342 struct refmatch *info;
341 343
342 info = (struct refmatch *)cb_data; 344 info = (struct refmatch *)cb_data;
343 if (!strcmp(refname, info->req_ref)) 345 if (!strcmp(refname, info->req_ref))
344 info->match = 1; 346 info->match = 1;
345 if (!info->first_ref) 347 if (!info->first_ref)
346 info->first_ref = xstrdup(refname); 348 info->first_ref = xstrdup(refname);
347 return info->match; 349 return info->match;
348} 350}
349 351
350char *find_default_branch(struct cgit_repo *repo) 352char *find_default_branch(struct cgit_repo *repo)
351{ 353{
352 struct refmatch info; 354 struct refmatch info;
353 char *ref; 355 char *ref;
354 356
355 info.req_ref = repo->defbranch; 357 info.req_ref = repo->defbranch;
356 info.first_ref = NULL; 358 info.first_ref = NULL;
357 info.match = 0; 359 info.match = 0;
358 for_each_branch_ref(find_current_ref, &info); 360 for_each_branch_ref(find_current_ref, &info);
359 if (info.match) 361 if (info.match)
360 ref = info.req_ref; 362 ref = info.req_ref;
361 else 363 else
362 ref = info.first_ref; 364 ref = info.first_ref;
363 if (ref) 365 if (ref)
364 ref = xstrdup(ref); 366 ref = xstrdup(ref);
365 return ref; 367 return ref;
366} 368}
367 369
368static int prepare_repo_cmd(struct cgit_context *ctx) 370static int prepare_repo_cmd(struct cgit_context *ctx)
369{ 371{
370 char *tmp; 372 char *tmp;
371 unsigned char sha1[20]; 373 unsigned char sha1[20];
372 int nongit = 0; 374 int nongit = 0;
373 375
374 setenv("GIT_DIR", ctx->repo->path, 1); 376 setenv("GIT_DIR", ctx->repo->path, 1);
375 setup_git_directory_gently(&nongit); 377 setup_git_directory_gently(&nongit);
376 if (nongit) { 378 if (nongit) {
377 ctx->page.title = fmt("%s - %s", ctx->cfg.root_title, 379 ctx->page.title = fmt("%s - %s", ctx->cfg.root_title,
378 "config error"); 380 "config error");
379 tmp = fmt("Not a git repository: '%s'", ctx->repo->path); 381 tmp = fmt("Not a git repository: '%s'", ctx->repo->path);
380 ctx->repo = NULL; 382 ctx->repo = NULL;
381 cgit_print_http_headers(ctx); 383 cgit_print_http_headers(ctx);
382 cgit_print_docstart(ctx); 384 cgit_print_docstart(ctx);
383 cgit_print_pageheader(ctx); 385 cgit_print_pageheader(ctx);
384 cgit_print_error(tmp); 386 cgit_print_error(tmp);
385 cgit_print_docend(); 387 cgit_print_docend();
386 return 1; 388 return 1;
387 } 389 }
388 ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc); 390 ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc);
389 391
390 if (!ctx->qry.head) { 392 if (!ctx->qry.head) {
391 ctx->qry.nohead = 1; 393 ctx->qry.nohead = 1;
392 ctx->qry.head = find_default_branch(ctx->repo); 394 ctx->qry.head = find_default_branch(ctx->repo);
393 ctx->repo->defbranch = ctx->qry.head; 395 ctx->repo->defbranch = ctx->qry.head;
394 } 396 }
395 397
396 if (!ctx->qry.head) { 398 if (!ctx->qry.head) {
397 cgit_print_http_headers(ctx); 399 cgit_print_http_headers(ctx);
398 cgit_print_docstart(ctx); 400 cgit_print_docstart(ctx);
399 cgit_print_pageheader(ctx); 401 cgit_print_pageheader(ctx);
400 cgit_print_error("Repository seems to be empty"); 402 cgit_print_error("Repository seems to be empty");
401 cgit_print_docend(); 403 cgit_print_docend();
402 return 1; 404 return 1;
403 } 405 }
404 406
405 if (get_sha1(ctx->qry.head, sha1)) { 407 if (get_sha1(ctx->qry.head, sha1)) {
406 tmp = xstrdup(ctx->qry.head); 408 tmp = xstrdup(ctx->qry.head);
407 ctx->qry.head = ctx->repo->defbranch; 409 ctx->qry.head = ctx->repo->defbranch;
408 ctx->page.status = 404; 410 ctx->page.status = 404;
409 ctx->page.statusmsg = "not found"; 411 ctx->page.statusmsg = "not found";
410 cgit_print_http_headers(ctx); 412 cgit_print_http_headers(ctx);
411 cgit_print_docstart(ctx); 413 cgit_print_docstart(ctx);
412 cgit_print_pageheader(ctx); 414 cgit_print_pageheader(ctx);
413 cgit_print_error(fmt("Invalid branch: %s", tmp)); 415 cgit_print_error(fmt("Invalid branch: %s", tmp));
414 cgit_print_docend(); 416 cgit_print_docend();
415 return 1; 417 return 1;
416 } 418 }
417 return 0; 419 return 0;
418} 420}
419 421
420static void process_request(void *cbdata) 422static void process_request(void *cbdata)
421{ 423{
422 struct cgit_context *ctx = cbdata; 424 struct cgit_context *ctx = cbdata;
423 struct cgit_cmd *cmd; 425 struct cgit_cmd *cmd;
424 426
425 cmd = cgit_get_cmd(ctx); 427 cmd = cgit_get_cmd(ctx);
426 if (!cmd) { 428 if (!cmd) {
427 ctx->page.title = "cgit error"; 429 ctx->page.title = "cgit error";
428 cgit_print_http_headers(ctx); 430 cgit_print_http_headers(ctx);
429 cgit_print_docstart(ctx); 431 cgit_print_docstart(ctx);
430 cgit_print_pageheader(ctx); 432 cgit_print_pageheader(ctx);
431 cgit_print_error("Invalid request"); 433 cgit_print_error("Invalid request");
432 cgit_print_docend(); 434 cgit_print_docend();
433 return; 435 return;
434 } 436 }
435 437
436 /* If cmd->want_vpath is set, assume ctx->qry.path contains a "virtual" 438 /* If cmd->want_vpath is set, assume ctx->qry.path contains a "virtual"
437 * in-project path limit to be made available at ctx->qry.vpath. 439 * in-project path limit to be made available at ctx->qry.vpath.
438 * Otherwise, no path limit is in effect (ctx->qry.vpath = NULL). 440 * Otherwise, no path limit is in effect (ctx->qry.vpath = NULL).
439 */ 441 */
440 ctx->qry.vpath = cmd->want_vpath ? ctx->qry.path : NULL; 442 ctx->qry.vpath = cmd->want_vpath ? ctx->qry.path : NULL;
441 443
442 if (cmd->want_repo && !ctx->repo) { 444 if (cmd->want_repo && !ctx->repo) {
443 cgit_print_http_headers(ctx); 445 cgit_print_http_headers(ctx);
444 cgit_print_docstart(ctx); 446 cgit_print_docstart(ctx);
445 cgit_print_pageheader(ctx); 447 cgit_print_pageheader(ctx);
446 cgit_print_error(fmt("No repository selected")); 448 cgit_print_error(fmt("No repository selected"));
447 cgit_print_docend(); 449 cgit_print_docend();
448 return; 450 return;
449 } 451 }
450 452
451 if (ctx->repo && prepare_repo_cmd(ctx)) 453 if (ctx->repo && prepare_repo_cmd(ctx))
452 return; 454 return;
453 455
454 if (cmd->want_layout) { 456 if (cmd->want_layout) {
455 cgit_print_http_headers(ctx); 457 cgit_print_http_headers(ctx);
456 cgit_print_docstart(ctx); 458 cgit_print_docstart(ctx);
457 cgit_print_pageheader(ctx); 459 cgit_print_pageheader(ctx);
458 } 460 }
459 461
460 cmd->fn(ctx); 462 cmd->fn(ctx);
461 463
462 if (cmd->want_layout) 464 if (cmd->want_layout)
463 cgit_print_docend(); 465 cgit_print_docend();
464} 466}
465 467
466int cmp_repos(const void *a, const void *b) 468int cmp_repos(const void *a, const void *b)
467{ 469{
468 const struct cgit_repo *ra = a, *rb = b; 470 const struct cgit_repo *ra = a, *rb = b;
469 return strcmp(ra->url, rb->url); 471 return strcmp(ra->url, rb->url);
470} 472}
471 473
472char *build_snapshot_setting(int bitmap) 474char *build_snapshot_setting(int bitmap)
473{ 475{
474 const struct cgit_snapshot_format *f; 476 const struct cgit_snapshot_format *f;
475 char *result = xstrdup(""); 477 char *result = xstrdup("");
476 char *tmp; 478 char *tmp;
477 int len; 479 int len;
478 480
479 for (f = cgit_snapshot_formats; f->suffix; f++) { 481 for (f = cgit_snapshot_formats; f->suffix; f++) {
480 if (f->bit & bitmap) { 482 if (f->bit & bitmap) {
481 tmp = result; 483 tmp = result;
482 result = xstrdup(fmt("%s%s ", tmp, f->suffix)); 484 result = xstrdup(fmt("%s%s ", tmp, f->suffix));
483 free(tmp); 485 free(tmp);
484 } 486 }
485 } 487 }
486 len = strlen(result); 488 len = strlen(result);
487 if (len) 489 if (len)
488 result[len - 1] = '\0'; 490 result[len - 1] = '\0';
489 return result; 491 return result;
490} 492}
491 493
492char *get_first_line(char *txt) 494char *get_first_line(char *txt)
493{ 495{
494 char *t = xstrdup(txt); 496 char *t = xstrdup(txt);
495 char *p = strchr(t, '\n'); 497 char *p = strchr(t, '\n');
496 if (p) 498 if (p)
497 *p = '\0'; 499 *p = '\0';
498 return t; 500 return t;
499} 501}
500 502
501void print_repo(FILE *f, struct cgit_repo *repo) 503void print_repo(FILE *f, struct cgit_repo *repo)
502{ 504{
503 fprintf(f, "repo.url=%s\n", repo->url); 505 fprintf(f, "repo.url=%s\n", repo->url);
504 fprintf(f, "repo.name=%s\n", repo->name); 506 fprintf(f, "repo.name=%s\n", repo->name);
505 fprintf(f, "repo.path=%s\n", repo->path); 507 fprintf(f, "repo.path=%s\n", repo->path);
506 if (repo->owner) 508 if (repo->owner)
507 fprintf(f, "repo.owner=%s\n", repo->owner); 509 fprintf(f, "repo.owner=%s\n", repo->owner);
508 if (repo->desc) { 510 if (repo->desc) {
509 char *tmp = get_first_line(repo->desc); 511 char *tmp = get_first_line(repo->desc);
510 fprintf(f, "repo.desc=%s\n", tmp); 512 fprintf(f, "repo.desc=%s\n", tmp);
511 free(tmp); 513 free(tmp);
512 } 514 }
513 if (repo->readme) 515 if (repo->readme)
514 fprintf(f, "repo.readme=%s\n", repo->readme); 516 fprintf(f, "repo.readme=%s\n", repo->readme);
515 if (repo->defbranch) 517 if (repo->defbranch)
516 fprintf(f, "repo.defbranch=%s\n", repo->defbranch); 518 fprintf(f, "repo.defbranch=%s\n", repo->defbranch);
517 if (repo->module_link) 519 if (repo->module_link)
518 fprintf(f, "repo.module-link=%s\n", repo->module_link); 520 fprintf(f, "repo.module-link=%s\n", repo->module_link);
519 if (repo->section) 521 if (repo->section)
520 fprintf(f, "repo.section=%s\n", repo->section); 522 fprintf(f, "repo.section=%s\n", repo->section);
521 if (repo->clone_url) 523 if (repo->clone_url)
522 fprintf(f, "repo.clone-url=%s\n", repo->clone_url); 524 fprintf(f, "repo.clone-url=%s\n", repo->clone_url);
523 fprintf(f, "repo.enable-log-filecount=%d\n", 525 fprintf(f, "repo.enable-log-filecount=%d\n",
524 repo->enable_log_filecount); 526 repo->enable_log_filecount);
525 fprintf(f, "repo.enable-log-linecount=%d\n", 527 fprintf(f, "repo.enable-log-linecount=%d\n",
526 repo->enable_log_linecount); 528 repo->enable_log_linecount);
527 if (repo->about_filter && repo->about_filter != ctx.cfg.about_filter) 529 if (repo->about_filter && repo->about_filter != ctx.cfg.about_filter)
528 fprintf(f, "repo.about-filter=%s\n", repo->about_filter->cmd); 530 fprintf(f, "repo.about-filter=%s\n", repo->about_filter->cmd);
529 if (repo->commit_filter && repo->commit_filter != ctx.cfg.commit_filter) 531 if (repo->commit_filter && repo->commit_filter != ctx.cfg.commit_filter)
530 fprintf(f, "repo.commit-filter=%s\n", repo->commit_filter->cmd); 532 fprintf(f, "repo.commit-filter=%s\n", repo->commit_filter->cmd);
531 if (repo->source_filter && repo->source_filter != ctx.cfg.source_filter) 533 if (repo->source_filter && repo->source_filter != ctx.cfg.source_filter)
532 fprintf(f, "repo.source-filter=%s\n", repo->source_filter->cmd); 534 fprintf(f, "repo.source-filter=%s\n", repo->source_filter->cmd);
533 if (repo->snapshots != ctx.cfg.snapshots) { 535 if (repo->snapshots != ctx.cfg.snapshots) {
534 char *tmp = build_snapshot_setting(repo->snapshots); 536 char *tmp = build_snapshot_setting(repo->snapshots);
535 fprintf(f, "repo.snapshots=%s\n", tmp); 537 fprintf(f, "repo.snapshots=%s\n", tmp);
536 free(tmp); 538 free(tmp);
537 } 539 }
538 if (repo->max_stats != ctx.cfg.max_stats) 540 if (repo->max_stats != ctx.cfg.max_stats)
539 fprintf(f, "repo.max-stats=%s\n", 541 fprintf(f, "repo.max-stats=%s\n",
540 cgit_find_stats_periodname(repo->max_stats)); 542 cgit_find_stats_periodname(repo->max_stats));
541 fprintf(f, "\n"); 543 fprintf(f, "\n");
542} 544}
543 545
544void print_repolist(FILE *f, struct cgit_repolist *list, int start) 546void print_repolist(FILE *f, struct cgit_repolist *list, int start)
545{ 547{
546 int i; 548 int i;
547 549
548 for(i = start; i < list->count; i++) 550 for(i = start; i < list->count; i++)
549 print_repo(f, &list->repos[i]); 551 print_repo(f, &list->repos[i]);
550} 552}
551 553
552/* Scan 'path' for git repositories, save the resulting repolist in 'cached_rc' 554/* Scan 'path' for git repositories, save the resulting repolist in 'cached_rc'
553 * and return 0 on success. 555 * and return 0 on success.
554 */ 556 */
555static int generate_cached_repolist(const char *path, const char *cached_rc) 557static int generate_cached_repolist(const char *path, const char *cached_rc)
556{ 558{
557 char *locked_rc; 559 char *locked_rc;
558 int idx; 560 int idx;
559 FILE *f; 561 FILE *f;
560 562
561 locked_rc = xstrdup(fmt("%s.lock", cached_rc)); 563 locked_rc = xstrdup(fmt("%s.lock", cached_rc));
562 f = fopen(locked_rc, "wx"); 564 f = fopen(locked_rc, "wx");
563 if (!f) { 565 if (!f) {
564 /* Inform about the error unless the lockfile already existed, 566 /* Inform about the error unless the lockfile already existed,
565 * since that only means we've got concurrent requests. 567 * since that only means we've got concurrent requests.
566 */ 568 */
567 if (errno != EEXIST) 569 if (errno != EEXIST)
568 fprintf(stderr, "[cgit] Error opening %s: %s (%d)\n", 570 fprintf(stderr, "[cgit] Error opening %s: %s (%d)\n",
569 locked_rc, strerror(errno), errno); 571 locked_rc, strerror(errno), errno);
570 return errno; 572 return errno;
571 } 573 }
572 idx = cgit_repolist.count; 574 idx = cgit_repolist.count;
573 scan_tree(path, repo_config); 575 scan_tree(path, repo_config);
574 print_repolist(f, &cgit_repolist, idx); 576 print_repolist(f, &cgit_repolist, idx);
575 if (rename(locked_rc, cached_rc)) 577 if (rename(locked_rc, cached_rc))
576 fprintf(stderr, "[cgit] Error renaming %s to %s: %s (%d)\n", 578 fprintf(stderr, "[cgit] Error renaming %s to %s: %s (%d)\n",
577 locked_rc, cached_rc, strerror(errno), errno); 579 locked_rc, cached_rc, strerror(errno), errno);
578 fclose(f); 580 fclose(f);
579 return 0; 581 return 0;
580} 582}
581 583
582static void process_cached_repolist(const char *path) 584static void process_cached_repolist(const char *path)
583{ 585{
584 struct stat st; 586 struct stat st;
585 char *cached_rc; 587 char *cached_rc;
586 time_t age; 588 time_t age;
587 589
588 cached_rc = xstrdup(fmt("%s/rc-%8x", ctx.cfg.cache_root, 590 cached_rc = xstrdup(fmt("%s/rc-%8x", ctx.cfg.cache_root,
589 hash_str(path))); 591 hash_str(path)));
590 592
591 if (stat(cached_rc, &st)) { 593 if (stat(cached_rc, &st)) {
592 /* Nothing is cached, we need to scan without forking. And 594 /* Nothing is cached, we need to scan without forking. And
593 * if we fail to generate a cached repolist, we need to 595 * if we fail to generate a cached repolist, we need to
594 * invoke scan_tree manually. 596 * invoke scan_tree manually.
595 */ 597 */
596 if (generate_cached_repolist(path, cached_rc)) 598 if (generate_cached_repolist(path, cached_rc))
597 scan_tree(path, repo_config); 599 scan_tree(path, repo_config);
598 return; 600 return;
599 } 601 }
600 602
601 parse_configfile(cached_rc, config_cb); 603 parse_configfile(cached_rc, config_cb);
602 604
603 /* If the cached configfile hasn't expired, lets exit now */ 605 /* If the cached configfile hasn't expired, lets exit now */
604 age = time(NULL) - st.st_mtime; 606 age = time(NULL) - st.st_mtime;
605 if (age <= (ctx.cfg.cache_scanrc_ttl * 60)) 607 if (age <= (ctx.cfg.cache_scanrc_ttl * 60))
606 return; 608 return;
607 609
608 /* The cached repolist has been parsed, but it was old. So lets 610 /* The cached repolist has been parsed, but it was old. So lets
609 * rescan the specified path and generate a new cached repolist 611 * rescan the specified path and generate a new cached repolist
610 * in a child-process to avoid latency for the current request. 612 * in a child-process to avoid latency for the current request.
611 */ 613 */
612 if (fork()) 614 if (fork())
613 return; 615 return;
614 616
615 exit(generate_cached_repolist(path, cached_rc)); 617 exit(generate_cached_repolist(path, cached_rc));
616} 618}
617 619
618static void cgit_parse_args(int argc, const char **argv) 620static void cgit_parse_args(int argc, const char **argv)
619{ 621{
620 int i; 622 int i;
621 int scan = 0; 623 int scan = 0;
622 624
623 for (i = 1; i < argc; i++) { 625 for (i = 1; i < argc; i++) {
624 if (!strncmp(argv[i], "--cache=", 8)) { 626 if (!strncmp(argv[i], "--cache=", 8)) {
625 ctx.cfg.cache_root = xstrdup(argv[i]+8); 627 ctx.cfg.cache_root = xstrdup(argv[i]+8);
626 } 628 }
627 if (!strcmp(argv[i], "--nocache")) { 629 if (!strcmp(argv[i], "--nocache")) {
628 ctx.cfg.nocache = 1; 630 ctx.cfg.nocache = 1;
629 } 631 }
630 if (!strcmp(argv[i], "--nohttp")) { 632 if (!strcmp(argv[i], "--nohttp")) {
631 ctx.env.no_http = "1"; 633 ctx.env.no_http = "1";
632 } 634 }
633 if (!strncmp(argv[i], "--query=", 8)) { 635 if (!strncmp(argv[i], "--query=", 8)) {
634 ctx.qry.raw = xstrdup(argv[i]+8); 636 ctx.qry.raw = xstrdup(argv[i]+8);
635 } 637 }
636 if (!strncmp(argv[i], "--repo=", 7)) { 638 if (!strncmp(argv[i], "--repo=", 7)) {
637 ctx.qry.repo = xstrdup(argv[i]+7); 639 ctx.qry.repo = xstrdup(argv[i]+7);
638 } 640 }
639 if (!strncmp(argv[i], "--page=", 7)) { 641 if (!strncmp(argv[i], "--page=", 7)) {
640 ctx.qry.page = xstrdup(argv[i]+7); 642 ctx.qry.page = xstrdup(argv[i]+7);
641 } 643 }
642 if (!strncmp(argv[i], "--head=", 7)) { 644 if (!strncmp(argv[i], "--head=", 7)) {
643 ctx.qry.head = xstrdup(argv[i]+7); 645 ctx.qry.head = xstrdup(argv[i]+7);
644 ctx.qry.has_symref = 1; 646 ctx.qry.has_symref = 1;
645 } 647 }
646 if (!strncmp(argv[i], "--sha1=", 7)) { 648 if (!strncmp(argv[i], "--sha1=", 7)) {
647 ctx.qry.sha1 = xstrdup(argv[i]+7); 649 ctx.qry.sha1 = xstrdup(argv[i]+7);
648 ctx.qry.has_sha1 = 1; 650 ctx.qry.has_sha1 = 1;
649 } 651 }
650 if (!strncmp(argv[i], "--ofs=", 6)) { 652 if (!strncmp(argv[i], "--ofs=", 6)) {
651 ctx.qry.ofs = atoi(argv[i]+6); 653 ctx.qry.ofs = atoi(argv[i]+6);
652 } 654 }
653 if (!strncmp(argv[i], "--scan-tree=", 12) || 655 if (!strncmp(argv[i], "--scan-tree=", 12) ||
654 !strncmp(argv[i], "--scan-path=", 12)) { 656 !strncmp(argv[i], "--scan-path=", 12)) {
655 /* HACK: the global snapshot bitmask defines the 657 /* HACK: the global snapshot bitmask defines the
656 * set of allowed snapshot formats, but the config 658 * set of allowed snapshot formats, but the config
657 * file hasn't been parsed yet so the mask is 659 * file hasn't been parsed yet so the mask is
658 * currently 0. By setting all bits high before 660 * currently 0. By setting all bits high before
659 * scanning we make sure that any in-repo cgitrc 661 * scanning we make sure that any in-repo cgitrc
660 * snapshot setting is respected by scan_tree(). 662 * snapshot setting is respected by scan_tree().
661 * BTW: we assume that there'll never be more than 663 * BTW: we assume that there'll never be more than
662 * 255 different snapshot formats supported by cgit... 664 * 255 different snapshot formats supported by cgit...
663 */ 665 */
664 ctx.cfg.snapshots = 0xFF; 666 ctx.cfg.snapshots = 0xFF;
665 scan++; 667 scan++;
666 scan_tree(argv[i] + 12, repo_config); 668 scan_tree(argv[i] + 12, repo_config);
667 } 669 }
668 } 670 }
669 if (scan) { 671 if (scan) {
670 qsort(cgit_repolist.repos, cgit_repolist.count, 672 qsort(cgit_repolist.repos, cgit_repolist.count,
671 sizeof(struct cgit_repo), cmp_repos); 673 sizeof(struct cgit_repo), cmp_repos);
672 print_repolist(stdout, &cgit_repolist, 0); 674 print_repolist(stdout, &cgit_repolist, 0);
673 exit(0); 675 exit(0);
674 } 676 }
675} 677}
676 678
677static int calc_ttl() 679static int calc_ttl()
678{ 680{
679 if (!ctx.repo) 681 if (!ctx.repo)
680 return ctx.cfg.cache_root_ttl; 682 return ctx.cfg.cache_root_ttl;
681 683
682 if (!ctx.qry.page) 684 if (!ctx.qry.page)
683 return ctx.cfg.cache_repo_ttl; 685 return ctx.cfg.cache_repo_ttl;
684 686
685 if (ctx.qry.has_symref) 687 if (ctx.qry.has_symref)
686 return ctx.cfg.cache_dynamic_ttl; 688 return ctx.cfg.cache_dynamic_ttl;
687 689
688 if (ctx.qry.has_sha1) 690 if (ctx.qry.has_sha1)
689 return ctx.cfg.cache_static_ttl; 691 return ctx.cfg.cache_static_ttl;
690 692
691 return ctx.cfg.cache_repo_ttl; 693 return ctx.cfg.cache_repo_ttl;
692} 694}
693 695
694int main(int argc, const char **argv) 696int main(int argc, const char **argv)
695{ 697{
696 const char *path; 698 const char *path;
697 char *qry; 699 char *qry;
698 int err, ttl; 700 int err, ttl;
699 701
700 prepare_context(&ctx); 702 prepare_context(&ctx);
701 cgit_repolist.length = 0; 703 cgit_repolist.length = 0;
702 cgit_repolist.count = 0; 704 cgit_repolist.count = 0;
703 cgit_repolist.repos = NULL; 705 cgit_repolist.repos = NULL;
704 706
705 cgit_parse_args(argc, argv); 707 cgit_parse_args(argc, argv);
706 parse_configfile(ctx.env.cgit_config, config_cb); 708 parse_configfile(ctx.env.cgit_config, config_cb);
707 ctx.repo = NULL; 709 ctx.repo = NULL;
708 http_parse_querystring(ctx.qry.raw, querystring_cb); 710 http_parse_querystring(ctx.qry.raw, querystring_cb);
709 711
710 /* If virtual-root isn't specified in cgitrc, lets pretend 712 /* If virtual-root isn't specified in cgitrc, lets pretend
711 * that virtual-root equals SCRIPT_NAME. 713 * that virtual-root equals SCRIPT_NAME.
712 */ 714 */
713 if (!ctx.cfg.virtual_root) 715 if (!ctx.cfg.virtual_root)
714 ctx.cfg.virtual_root = ctx.cfg.script_name; 716 ctx.cfg.virtual_root = ctx.cfg.script_name;
715 717
716 /* If no url parameter is specified on the querystring, lets 718 /* If no url parameter is specified on the querystring, lets
717 * use PATH_INFO as url. This allows cgit to work with virtual 719 * use PATH_INFO as url. This allows cgit to work with virtual
718 * urls without the need for rewriterules in the webserver (as 720 * urls without the need for rewriterules in the webserver (as
719 * long as PATH_INFO is included in the cache lookup key). 721 * long as PATH_INFO is included in the cache lookup key).
720 */ 722 */
721 path = ctx.env.path_info; 723 path = ctx.env.path_info;
722 if (!ctx.qry.url && path) { 724 if (!ctx.qry.url && path) {
723 if (path[0] == '/') 725 if (path[0] == '/')
724 path++; 726 path++;
725 ctx.qry.url = xstrdup(path); 727 ctx.qry.url = xstrdup(path);
726 if (ctx.qry.raw) { 728 if (ctx.qry.raw) {
727 qry = ctx.qry.raw; 729 qry = ctx.qry.raw;
728 ctx.qry.raw = xstrdup(fmt("%s?%s", path, qry)); 730 ctx.qry.raw = xstrdup(fmt("%s?%s", path, qry));
729 free(qry); 731 free(qry);
730 } else 732 } else
731 ctx.qry.raw = xstrdup(ctx.qry.url); 733 ctx.qry.raw = xstrdup(ctx.qry.url);
732 cgit_parse_url(ctx.qry.url); 734 cgit_parse_url(ctx.qry.url);
733 } 735 }
734 736
735 ttl = calc_ttl(); 737 ttl = calc_ttl();
736 ctx.page.expires += ttl*60; 738 ctx.page.expires += ttl*60;
737 if (ctx.env.request_method && !strcmp(ctx.env.request_method, "HEAD")) 739 if (ctx.env.request_method && !strcmp(ctx.env.request_method, "HEAD"))
738 ctx.cfg.nocache = 1; 740 ctx.cfg.nocache = 1;
739 if (ctx.cfg.nocache) 741 if (ctx.cfg.nocache)
740 ctx.cfg.cache_size = 0; 742 ctx.cfg.cache_size = 0;
741 err = cache_process(ctx.cfg.cache_size, ctx.cfg.cache_root, 743 err = cache_process(ctx.cfg.cache_size, ctx.cfg.cache_root,
742 ctx.qry.raw, ttl, process_request, &ctx); 744 ctx.qry.raw, ttl, process_request, &ctx);
743 if (err) 745 if (err)
744 cgit_print_error(fmt("Error processing page: %s (%d)", 746 cgit_print_error(fmt("Error processing page: %s (%d)",
745 strerror(err), err)); 747 strerror(err), err));
746 return err; 748 return err;
747} 749}
diff --git a/cgit.h b/cgit.h
index 80c3902..2b28d63 100644
--- a/cgit.h
+++ b/cgit.h
@@ -1,304 +1,305 @@
1#ifndef CGIT_H 1#ifndef CGIT_H
2#define CGIT_H 2#define CGIT_H
3 3
4 4
5#include <git-compat-util.h> 5#include <git-compat-util.h>
6#include <cache.h> 6#include <cache.h>
7#include <grep.h> 7#include <grep.h>
8#include <object.h> 8#include <object.h>
9#include <tree.h> 9#include <tree.h>
10#include <commit.h> 10#include <commit.h>
11#include <tag.h> 11#include <tag.h>
12#include <diff.h> 12#include <diff.h>
13#include <diffcore.h> 13#include <diffcore.h>
14#include <refs.h> 14#include <refs.h>
15#include <revision.h> 15#include <revision.h>
16#include <log-tree.h> 16#include <log-tree.h>
17#include <archive.h> 17#include <archive.h>
18#include <string-list.h> 18#include <string-list.h>
19#include <xdiff-interface.h> 19#include <xdiff-interface.h>
20#include <xdiff/xdiff.h> 20#include <xdiff/xdiff.h>
21#include <utf8.h> 21#include <utf8.h>
22 22
23 23
24/* 24/*
25 * Dateformats used on misc. pages 25 * Dateformats used on misc. pages
26 */ 26 */
27#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" 27#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)"
28#define FMT_SHORTDATE "%Y-%m-%d" 28#define FMT_SHORTDATE "%Y-%m-%d"
29#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" 29#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ"
30 30
31 31
32/* 32/*
33 * Limits used for relative dates 33 * Limits used for relative dates
34 */ 34 */
35#define TM_MIN 60 35#define TM_MIN 60
36#define TM_HOUR (TM_MIN * 60) 36#define TM_HOUR (TM_MIN * 60)
37#define TM_DAY (TM_HOUR * 24) 37#define TM_DAY (TM_HOUR * 24)
38#define TM_WEEK (TM_DAY * 7) 38#define TM_WEEK (TM_DAY * 7)
39#define TM_YEAR (TM_DAY * 365) 39#define TM_YEAR (TM_DAY * 365)
40#define TM_MONTH (TM_YEAR / 12.0) 40#define TM_MONTH (TM_YEAR / 12.0)
41 41
42 42
43/* 43/*
44 * Default encoding 44 * Default encoding
45 */ 45 */
46#define PAGE_ENCODING "UTF-8" 46#define PAGE_ENCODING "UTF-8"
47 47
48typedef void (*configfn)(const char *name, const char *value); 48typedef void (*configfn)(const char *name, const char *value);
49typedef void (*filepair_fn)(struct diff_filepair *pair); 49typedef void (*filepair_fn)(struct diff_filepair *pair);
50typedef void (*linediff_fn)(char *line, int len); 50typedef void (*linediff_fn)(char *line, int len);
51 51
52struct cgit_filter { 52struct cgit_filter {
53 char *cmd; 53 char *cmd;
54 char **argv; 54 char **argv;
55 int old_stdout; 55 int old_stdout;
56 int pipe_fh[2]; 56 int pipe_fh[2];
57 int pid; 57 int pid;
58 int exitstatus; 58 int exitstatus;
59}; 59};
60 60
61struct cgit_repo { 61struct cgit_repo {
62 char *url; 62 char *url;
63 char *name; 63 char *name;
64 char *path; 64 char *path;
65 char *desc; 65 char *desc;
66 char *owner; 66 char *owner;
67 char *defbranch; 67 char *defbranch;
68 char *module_link; 68 char *module_link;
69 char *readme; 69 char *readme;
70 char *section; 70 char *section;
71 char *clone_url; 71 char *clone_url;
72 int snapshots; 72 int snapshots;
73 int enable_log_filecount; 73 int enable_log_filecount;
74 int enable_log_linecount; 74 int enable_log_linecount;
75 int enable_remote_branches; 75 int enable_remote_branches;
76 int enable_subject_links; 76 int enable_subject_links;
77 int max_stats; 77 int max_stats;
78 time_t mtime; 78 time_t mtime;
79 struct cgit_filter *about_filter; 79 struct cgit_filter *about_filter;
80 struct cgit_filter *commit_filter; 80 struct cgit_filter *commit_filter;
81 struct cgit_filter *source_filter; 81 struct cgit_filter *source_filter;
82}; 82};
83 83
84typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, 84typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name,
85 const char *value); 85 const char *value);
86 86
87struct cgit_repolist { 87struct cgit_repolist {
88 int length; 88 int length;
89 int count; 89 int count;
90 struct cgit_repo *repos; 90 struct cgit_repo *repos;
91}; 91};
92 92
93struct commitinfo { 93struct commitinfo {
94 struct commit *commit; 94 struct commit *commit;
95 char *author; 95 char *author;
96 char *author_email; 96 char *author_email;
97 unsigned long author_date; 97 unsigned long author_date;
98 char *committer; 98 char *committer;
99 char *committer_email; 99 char *committer_email;
100 unsigned long committer_date; 100 unsigned long committer_date;
101 char *subject; 101 char *subject;
102 char *msg; 102 char *msg;
103 char *msg_encoding; 103 char *msg_encoding;
104}; 104};
105 105
106struct taginfo { 106struct taginfo {
107 char *tagger; 107 char *tagger;
108 char *tagger_email; 108 char *tagger_email;
109 unsigned long tagger_date; 109 unsigned long tagger_date;
110 char *msg; 110 char *msg;
111}; 111};
112 112
113struct refinfo { 113struct refinfo {
114 const char *refname; 114 const char *refname;
115 struct object *object; 115 struct object *object;
116 union { 116 union {
117 struct taginfo *tag; 117 struct taginfo *tag;
118 struct commitinfo *commit; 118 struct commitinfo *commit;
119 }; 119 };
120}; 120};
121 121
122struct reflist { 122struct reflist {
123 struct refinfo **refs; 123 struct refinfo **refs;
124 int alloc; 124 int alloc;
125 int count; 125 int count;
126}; 126};
127 127
128struct cgit_query { 128struct cgit_query {
129 int has_symref; 129 int has_symref;
130 int has_sha1; 130 int has_sha1;
131 char *raw; 131 char *raw;
132 char *repo; 132 char *repo;
133 char *page; 133 char *page;
134 char *search; 134 char *search;
135 char *grep; 135 char *grep;
136 char *head; 136 char *head;
137 char *sha1; 137 char *sha1;
138 char *sha2; 138 char *sha2;
139 char *path; 139 char *path;
140 char *name; 140 char *name;
141 char *mimetype; 141 char *mimetype;
142 char *url; 142 char *url;
143 char *period; 143 char *period;
144 int ofs; 144 int ofs;
145 int nohead; 145 int nohead;
146 char *sort; 146 char *sort;
147 int showmsg; 147 int showmsg;
148 int ssdiff; 148 int ssdiff;
149 int show_all; 149 int show_all;
150 int context;
150 char *vpath; 151 char *vpath;
151}; 152};
152 153
153struct cgit_config { 154struct cgit_config {
154 char *agefile; 155 char *agefile;
155 char *cache_root; 156 char *cache_root;
156 char *clone_prefix; 157 char *clone_prefix;
157 char *css; 158 char *css;
158 char *favicon; 159 char *favicon;
159 char *footer; 160 char *footer;
160 char *head_include; 161 char *head_include;
161 char *header; 162 char *header;
162 char *index_header; 163 char *index_header;
163 char *index_info; 164 char *index_info;
164 char *logo; 165 char *logo;
165 char *logo_link; 166 char *logo_link;
166 char *module_link; 167 char *module_link;
167 char *robots; 168 char *robots;
168 char *root_title; 169 char *root_title;
169 char *root_desc; 170 char *root_desc;
170 char *root_readme; 171 char *root_readme;
171 char *script_name; 172 char *script_name;
172 char *section; 173 char *section;
173 char *virtual_root; 174 char *virtual_root;
174 int cache_size; 175 int cache_size;
175 int cache_dynamic_ttl; 176 int cache_dynamic_ttl;
176 int cache_max_create_time; 177 int cache_max_create_time;
177 int cache_repo_ttl; 178 int cache_repo_ttl;
178 int cache_root_ttl; 179 int cache_root_ttl;
179 int cache_scanrc_ttl; 180 int cache_scanrc_ttl;
180 int cache_static_ttl; 181 int cache_static_ttl;
181 int embedded; 182 int embedded;
182 int enable_filter_overrides; 183 int enable_filter_overrides;
183 int enable_index_links; 184 int enable_index_links;
184 int enable_log_filecount; 185 int enable_log_filecount;
185 int enable_log_linecount; 186 int enable_log_linecount;
186 int enable_remote_branches; 187 int enable_remote_branches;
187 int enable_subject_links; 188 int enable_subject_links;
188 int enable_tree_linenumbers; 189 int enable_tree_linenumbers;
189 int local_time; 190 int local_time;
190 int max_atom_items; 191 int max_atom_items;
191 int max_repo_count; 192 int max_repo_count;
192 int max_commit_count; 193 int max_commit_count;
193 int max_lock_attempts; 194 int max_lock_attempts;
194 int max_msg_len; 195 int max_msg_len;
195 int max_repodesc_len; 196 int max_repodesc_len;
196 int max_blob_size; 197 int max_blob_size;
197 int max_stats; 198 int max_stats;
198 int nocache; 199 int nocache;
199 int noplainemail; 200 int noplainemail;
200 int noheader; 201 int noheader;
201 int renamelimit; 202 int renamelimit;
202 int snapshots; 203 int snapshots;
203 int summary_branches; 204 int summary_branches;
204 int summary_log; 205 int summary_log;
205 int summary_tags; 206 int summary_tags;
206 int ssdiff; 207 int ssdiff;
207 struct string_list mimetypes; 208 struct string_list mimetypes;
208 struct cgit_filter *about_filter; 209 struct cgit_filter *about_filter;
209 struct cgit_filter *commit_filter; 210 struct cgit_filter *commit_filter;
210 struct cgit_filter *source_filter; 211 struct cgit_filter *source_filter;
211}; 212};
212 213
213struct cgit_page { 214struct cgit_page {
214 time_t modified; 215 time_t modified;
215 time_t expires; 216 time_t expires;
216 size_t size; 217 size_t size;
217 char *mimetype; 218 char *mimetype;
218 char *charset; 219 char *charset;
219 char *filename; 220 char *filename;
220 char *etag; 221 char *etag;
221 char *title; 222 char *title;
222 int status; 223 int status;
223 char *statusmsg; 224 char *statusmsg;
224}; 225};
225 226
226struct cgit_environment { 227struct cgit_environment {
227 char *cgit_config; 228 char *cgit_config;
228 char *http_host; 229 char *http_host;
229 char *https; 230 char *https;
230 char *no_http; 231 char *no_http;
231 char *path_info; 232 char *path_info;
232 char *query_string; 233 char *query_string;
233 char *request_method; 234 char *request_method;
234 char *script_name; 235 char *script_name;
235 char *server_name; 236 char *server_name;
236 char *server_port; 237 char *server_port;
237}; 238};
238 239
239struct cgit_context { 240struct cgit_context {
240 struct cgit_environment env; 241 struct cgit_environment env;
241 struct cgit_query qry; 242 struct cgit_query qry;
242 struct cgit_config cfg; 243 struct cgit_config cfg;
243 struct cgit_repo *repo; 244 struct cgit_repo *repo;
244 struct cgit_page page; 245 struct cgit_page page;
245}; 246};
246 247
247struct cgit_snapshot_format { 248struct cgit_snapshot_format {
248 const char *suffix; 249 const char *suffix;
249 const char *mimetype; 250 const char *mimetype;
250 write_archive_fn_t write_func; 251 write_archive_fn_t write_func;
251 int bit; 252 int bit;
252}; 253};
253 254
254extern const char *cgit_version; 255extern const char *cgit_version;
255 256
256extern struct cgit_repolist cgit_repolist; 257extern struct cgit_repolist cgit_repolist;
257extern struct cgit_context ctx; 258extern struct cgit_context ctx;
258extern const struct cgit_snapshot_format cgit_snapshot_formats[]; 259extern const struct cgit_snapshot_format cgit_snapshot_formats[];
259 260
260extern struct cgit_repo *cgit_add_repo(const char *url); 261extern struct cgit_repo *cgit_add_repo(const char *url);
261extern struct cgit_repo *cgit_get_repoinfo(const char *url); 262extern struct cgit_repo *cgit_get_repoinfo(const char *url);
262extern void cgit_repo_config_cb(const char *name, const char *value); 263extern void cgit_repo_config_cb(const char *name, const char *value);
263 264
264extern int chk_zero(int result, char *msg); 265extern int chk_zero(int result, char *msg);
265extern int chk_positive(int result, char *msg); 266extern int chk_positive(int result, char *msg);
266extern int chk_non_negative(int result, char *msg); 267extern int chk_non_negative(int result, char *msg);
267 268
268extern char *trim_end(const char *str, char c); 269extern char *trim_end(const char *str, char c);
269extern char *strlpart(char *txt, int maxlen); 270extern char *strlpart(char *txt, int maxlen);
270extern char *strrpart(char *txt, int maxlen); 271extern char *strrpart(char *txt, int maxlen);
271 272
272extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); 273extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
273extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, 274extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
274 int flags, void *cb_data); 275 int flags, void *cb_data);
275 276
276extern void *cgit_free_commitinfo(struct commitinfo *info); 277extern void *cgit_free_commitinfo(struct commitinfo *info);
277 278
278extern int cgit_diff_files(const unsigned char *old_sha1, 279extern int cgit_diff_files(const unsigned char *old_sha1,
279 const unsigned char *new_sha1, 280 const unsigned char *new_sha1,
280 unsigned long *old_size, unsigned long *new_size, 281 unsigned long *old_size, unsigned long *new_size,
281 int *binary, linediff_fn fn); 282 int *binary, int context, linediff_fn fn);
282 283
283extern void cgit_diff_tree(const unsigned char *old_sha1, 284extern void cgit_diff_tree(const unsigned char *old_sha1,
284 const unsigned char *new_sha1, 285 const unsigned char *new_sha1,
285 filepair_fn fn, const char *prefix); 286 filepair_fn fn, const char *prefix);
286 287
287extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); 288extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
288 289
289extern char *fmt(const char *format,...); 290extern char *fmt(const char *format,...);
290 291
291extern struct commitinfo *cgit_parse_commit(struct commit *commit); 292extern struct commitinfo *cgit_parse_commit(struct commit *commit);
292extern struct taginfo *cgit_parse_tag(struct tag *tag); 293extern struct taginfo *cgit_parse_tag(struct tag *tag);
293extern void cgit_parse_url(const char *url); 294extern void cgit_parse_url(const char *url);
294 295
295extern const char *cgit_repobasename(const char *reponame); 296extern const char *cgit_repobasename(const char *reponame);
296 297
297extern int cgit_parse_snapshots_mask(const char *str); 298extern int cgit_parse_snapshots_mask(const char *str);
298 299
299extern int cgit_open_filter(struct cgit_filter *filter); 300extern int cgit_open_filter(struct cgit_filter *filter);
300extern int cgit_close_filter(struct cgit_filter *filter); 301extern int cgit_close_filter(struct cgit_filter *filter);
301 302
302extern int readfile(const char *path, char **buf, size_t *size); 303extern int readfile(const char *path, char **buf, size_t *size);
303 304
304#endif /* CGIT_H */ 305#endif /* CGIT_H */
diff --git a/shared.c b/shared.c
index 58837dc..06f70bb 100644
--- a/shared.c
+++ b/shared.c
@@ -1,433 +1,434 @@
1/* shared.c: global vars + some callback functions 1/* shared.c: global vars + some callback functions
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
11struct cgit_repolist cgit_repolist; 11struct cgit_repolist cgit_repolist;
12struct cgit_context ctx; 12struct cgit_context ctx;
13 13
14int chk_zero(int result, char *msg) 14int chk_zero(int result, char *msg)
15{ 15{
16 if (result != 0) 16 if (result != 0)
17 die("%s: %s", msg, strerror(errno)); 17 die("%s: %s", msg, strerror(errno));
18 return result; 18 return result;
19} 19}
20 20
21int chk_positive(int result, char *msg) 21int chk_positive(int result, char *msg)
22{ 22{
23 if (result <= 0) 23 if (result <= 0)
24 die("%s: %s", msg, strerror(errno)); 24 die("%s: %s", msg, strerror(errno));
25 return result; 25 return result;
26} 26}
27 27
28int chk_non_negative(int result, char *msg) 28int chk_non_negative(int result, char *msg)
29{ 29{
30 if (result < 0) 30 if (result < 0)
31 die("%s: %s",msg, strerror(errno)); 31 die("%s: %s",msg, strerror(errno));
32 return result; 32 return result;
33} 33}
34 34
35struct cgit_repo *cgit_add_repo(const char *url) 35struct cgit_repo *cgit_add_repo(const char *url)
36{ 36{
37 struct cgit_repo *ret; 37 struct cgit_repo *ret;
38 38
39 if (++cgit_repolist.count > cgit_repolist.length) { 39 if (++cgit_repolist.count > cgit_repolist.length) {
40 if (cgit_repolist.length == 0) 40 if (cgit_repolist.length == 0)
41 cgit_repolist.length = 8; 41 cgit_repolist.length = 8;
42 else 42 else
43 cgit_repolist.length *= 2; 43 cgit_repolist.length *= 2;
44 cgit_repolist.repos = xrealloc(cgit_repolist.repos, 44 cgit_repolist.repos = xrealloc(cgit_repolist.repos,
45 cgit_repolist.length * 45 cgit_repolist.length *
46 sizeof(struct cgit_repo)); 46 sizeof(struct cgit_repo));
47 } 47 }
48 48
49 ret = &cgit_repolist.repos[cgit_repolist.count-1]; 49 ret = &cgit_repolist.repos[cgit_repolist.count-1];
50 memset(ret, 0, sizeof(struct cgit_repo)); 50 memset(ret, 0, sizeof(struct cgit_repo));
51 ret->url = trim_end(url, '/'); 51 ret->url = trim_end(url, '/');
52 ret->name = ret->url; 52 ret->name = ret->url;
53 ret->path = NULL; 53 ret->path = NULL;
54 ret->desc = "[no description]"; 54 ret->desc = "[no description]";
55 ret->owner = NULL; 55 ret->owner = NULL;
56 ret->section = ctx.cfg.section; 56 ret->section = ctx.cfg.section;
57 ret->defbranch = "master"; 57 ret->defbranch = "master";
58 ret->snapshots = ctx.cfg.snapshots; 58 ret->snapshots = ctx.cfg.snapshots;
59 ret->enable_log_filecount = ctx.cfg.enable_log_filecount; 59 ret->enable_log_filecount = ctx.cfg.enable_log_filecount;
60 ret->enable_log_linecount = ctx.cfg.enable_log_linecount; 60 ret->enable_log_linecount = ctx.cfg.enable_log_linecount;
61 ret->enable_remote_branches = ctx.cfg.enable_remote_branches; 61 ret->enable_remote_branches = ctx.cfg.enable_remote_branches;
62 ret->enable_subject_links = ctx.cfg.enable_subject_links; 62 ret->enable_subject_links = ctx.cfg.enable_subject_links;
63 ret->max_stats = ctx.cfg.max_stats; 63 ret->max_stats = ctx.cfg.max_stats;
64 ret->module_link = ctx.cfg.module_link; 64 ret->module_link = ctx.cfg.module_link;
65 ret->readme = NULL; 65 ret->readme = NULL;
66 ret->mtime = -1; 66 ret->mtime = -1;
67 ret->about_filter = ctx.cfg.about_filter; 67 ret->about_filter = ctx.cfg.about_filter;
68 ret->commit_filter = ctx.cfg.commit_filter; 68 ret->commit_filter = ctx.cfg.commit_filter;
69 ret->source_filter = ctx.cfg.source_filter; 69 ret->source_filter = ctx.cfg.source_filter;
70 return ret; 70 return ret;
71} 71}
72 72
73struct cgit_repo *cgit_get_repoinfo(const char *url) 73struct cgit_repo *cgit_get_repoinfo(const char *url)
74{ 74{
75 int i; 75 int i;
76 struct cgit_repo *repo; 76 struct cgit_repo *repo;
77 77
78 for (i=0; i<cgit_repolist.count; i++) { 78 for (i=0; i<cgit_repolist.count; i++) {
79 repo = &cgit_repolist.repos[i]; 79 repo = &cgit_repolist.repos[i];
80 if (!strcmp(repo->url, url)) 80 if (!strcmp(repo->url, url))
81 return repo; 81 return repo;
82 } 82 }
83 return NULL; 83 return NULL;
84} 84}
85 85
86void *cgit_free_commitinfo(struct commitinfo *info) 86void *cgit_free_commitinfo(struct commitinfo *info)
87{ 87{
88 free(info->author); 88 free(info->author);
89 free(info->author_email); 89 free(info->author_email);
90 free(info->committer); 90 free(info->committer);
91 free(info->committer_email); 91 free(info->committer_email);
92 free(info->subject); 92 free(info->subject);
93 free(info->msg); 93 free(info->msg);
94 free(info->msg_encoding); 94 free(info->msg_encoding);
95 free(info); 95 free(info);
96 return NULL; 96 return NULL;
97} 97}
98 98
99char *trim_end(const char *str, char c) 99char *trim_end(const char *str, char c)
100{ 100{
101 int len; 101 int len;
102 char *s, *t; 102 char *s, *t;
103 103
104 if (str == NULL) 104 if (str == NULL)
105 return NULL; 105 return NULL;
106 t = (char *)str; 106 t = (char *)str;
107 len = strlen(t); 107 len = strlen(t);
108 while(len > 0 && t[len - 1] == c) 108 while(len > 0 && t[len - 1] == c)
109 len--; 109 len--;
110 110
111 if (len == 0) 111 if (len == 0)
112 return NULL; 112 return NULL;
113 113
114 c = t[len]; 114 c = t[len];
115 t[len] = '\0'; 115 t[len] = '\0';
116 s = xstrdup(t); 116 s = xstrdup(t);
117 t[len] = c; 117 t[len] = c;
118 return s; 118 return s;
119} 119}
120 120
121char *strlpart(char *txt, int maxlen) 121char *strlpart(char *txt, int maxlen)
122{ 122{
123 char *result; 123 char *result;
124 124
125 if (!txt) 125 if (!txt)
126 return txt; 126 return txt;
127 127
128 if (strlen(txt) <= maxlen) 128 if (strlen(txt) <= maxlen)
129 return txt; 129 return txt;
130 result = xmalloc(maxlen + 1); 130 result = xmalloc(maxlen + 1);
131 memcpy(result, txt, maxlen - 3); 131 memcpy(result, txt, maxlen - 3);
132 result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.'; 132 result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.';
133 result[maxlen] = '\0'; 133 result[maxlen] = '\0';
134 return result; 134 return result;
135} 135}
136 136
137char *strrpart(char *txt, int maxlen) 137char *strrpart(char *txt, int maxlen)
138{ 138{
139 char *result; 139 char *result;
140 140
141 if (!txt) 141 if (!txt)
142 return txt; 142 return txt;
143 143
144 if (strlen(txt) <= maxlen) 144 if (strlen(txt) <= maxlen)
145 return txt; 145 return txt;
146 result = xmalloc(maxlen + 1); 146 result = xmalloc(maxlen + 1);
147 memcpy(result + 3, txt + strlen(txt) - maxlen + 4, maxlen - 3); 147 memcpy(result + 3, txt + strlen(txt) - maxlen + 4, maxlen - 3);
148 result[0] = result[1] = result[2] = '.'; 148 result[0] = result[1] = result[2] = '.';
149 return result; 149 return result;
150} 150}
151 151
152void cgit_add_ref(struct reflist *list, struct refinfo *ref) 152void cgit_add_ref(struct reflist *list, struct refinfo *ref)
153{ 153{
154 size_t size; 154 size_t size;
155 155
156 if (list->count >= list->alloc) { 156 if (list->count >= list->alloc) {
157 list->alloc += (list->alloc ? list->alloc : 4); 157 list->alloc += (list->alloc ? list->alloc : 4);
158 size = list->alloc * sizeof(struct refinfo *); 158 size = list->alloc * sizeof(struct refinfo *);
159 list->refs = xrealloc(list->refs, size); 159 list->refs = xrealloc(list->refs, size);
160 } 160 }
161 list->refs[list->count++] = ref; 161 list->refs[list->count++] = ref;
162} 162}
163 163
164struct refinfo *cgit_mk_refinfo(const char *refname, const unsigned char *sha1) 164struct refinfo *cgit_mk_refinfo(const char *refname, const unsigned char *sha1)
165{ 165{
166 struct refinfo *ref; 166 struct refinfo *ref;
167 167
168 ref = xmalloc(sizeof (struct refinfo)); 168 ref = xmalloc(sizeof (struct refinfo));
169 ref->refname = xstrdup(refname); 169 ref->refname = xstrdup(refname);
170 ref->object = parse_object(sha1); 170 ref->object = parse_object(sha1);
171 switch (ref->object->type) { 171 switch (ref->object->type) {
172 case OBJ_TAG: 172 case OBJ_TAG:
173 ref->tag = cgit_parse_tag((struct tag *)ref->object); 173 ref->tag = cgit_parse_tag((struct tag *)ref->object);
174 break; 174 break;
175 case OBJ_COMMIT: 175 case OBJ_COMMIT:
176 ref->commit = cgit_parse_commit((struct commit *)ref->object); 176 ref->commit = cgit_parse_commit((struct commit *)ref->object);
177 break; 177 break;
178 } 178 }
179 return ref; 179 return ref;
180} 180}
181 181
182int cgit_refs_cb(const char *refname, const unsigned char *sha1, int flags, 182int cgit_refs_cb(const char *refname, const unsigned char *sha1, int flags,
183 void *cb_data) 183 void *cb_data)
184{ 184{
185 struct reflist *list = (struct reflist *)cb_data; 185 struct reflist *list = (struct reflist *)cb_data;
186 struct refinfo *info = cgit_mk_refinfo(refname, sha1); 186 struct refinfo *info = cgit_mk_refinfo(refname, sha1);
187 187
188 if (info) 188 if (info)
189 cgit_add_ref(list, info); 189 cgit_add_ref(list, info);
190 return 0; 190 return 0;
191} 191}
192 192
193void cgit_diff_tree_cb(struct diff_queue_struct *q, 193void cgit_diff_tree_cb(struct diff_queue_struct *q,
194 struct diff_options *options, void *data) 194 struct diff_options *options, void *data)
195{ 195{
196 int i; 196 int i;
197 197
198 for (i = 0; i < q->nr; i++) { 198 for (i = 0; i < q->nr; i++) {
199 if (q->queue[i]->status == 'U') 199 if (q->queue[i]->status == 'U')
200 continue; 200 continue;
201 ((filepair_fn)data)(q->queue[i]); 201 ((filepair_fn)data)(q->queue[i]);
202 } 202 }
203} 203}
204 204
205static int load_mmfile(mmfile_t *file, const unsigned char *sha1) 205static int load_mmfile(mmfile_t *file, const unsigned char *sha1)
206{ 206{
207 enum object_type type; 207 enum object_type type;
208 208
209 if (is_null_sha1(sha1)) { 209 if (is_null_sha1(sha1)) {
210 file->ptr = (char *)""; 210 file->ptr = (char *)"";
211 file->size = 0; 211 file->size = 0;
212 } else { 212 } else {
213 file->ptr = read_sha1_file(sha1, &type, 213 file->ptr = read_sha1_file(sha1, &type,
214 (unsigned long *)&file->size); 214 (unsigned long *)&file->size);
215 } 215 }
216 return 1; 216 return 1;
217} 217}
218 218
219/* 219/*
220 * Receive diff-buffers from xdiff and concatenate them as 220 * Receive diff-buffers from xdiff and concatenate them as
221 * needed across multiple callbacks. 221 * needed across multiple callbacks.
222 * 222 *
223 * This is basically a copy of xdiff-interface.c/xdiff_outf(), 223 * This is basically a copy of xdiff-interface.c/xdiff_outf(),
224 * ripped from git and modified to use globals instead of 224 * ripped from git and modified to use globals instead of
225 * a special callback-struct. 225 * a special callback-struct.
226 */ 226 */
227char *diffbuf = NULL; 227char *diffbuf = NULL;
228int buflen = 0; 228int buflen = 0;
229 229
230int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf) 230int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf)
231{ 231{
232 int i; 232 int i;
233 233
234 for (i = 0; i < nbuf; i++) { 234 for (i = 0; i < nbuf; i++) {
235 if (mb[i].ptr[mb[i].size-1] != '\n') { 235 if (mb[i].ptr[mb[i].size-1] != '\n') {
236 /* Incomplete line */ 236 /* Incomplete line */
237 diffbuf = xrealloc(diffbuf, buflen + mb[i].size); 237 diffbuf = xrealloc(diffbuf, buflen + mb[i].size);
238 memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); 238 memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size);
239 buflen += mb[i].size; 239 buflen += mb[i].size;
240 continue; 240 continue;
241 } 241 }
242 242
243 /* we have a complete line */ 243 /* we have a complete line */
244 if (!diffbuf) { 244 if (!diffbuf) {
245 ((linediff_fn)priv)(mb[i].ptr, mb[i].size); 245 ((linediff_fn)priv)(mb[i].ptr, mb[i].size);
246 continue; 246 continue;
247 } 247 }
248 diffbuf = xrealloc(diffbuf, buflen + mb[i].size); 248 diffbuf = xrealloc(diffbuf, buflen + mb[i].size);
249 memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); 249 memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size);
250 ((linediff_fn)priv)(diffbuf, buflen + mb[i].size); 250 ((linediff_fn)priv)(diffbuf, buflen + mb[i].size);
251 free(diffbuf); 251 free(diffbuf);
252 diffbuf = NULL; 252 diffbuf = NULL;
253 buflen = 0; 253 buflen = 0;
254 } 254 }
255 if (diffbuf) { 255 if (diffbuf) {
256 ((linediff_fn)priv)(diffbuf, buflen); 256 ((linediff_fn)priv)(diffbuf, buflen);
257 free(diffbuf); 257 free(diffbuf);
258 diffbuf = NULL; 258 diffbuf = NULL;
259 buflen = 0; 259 buflen = 0;
260 } 260 }
261 return 0; 261 return 0;
262} 262}
263 263
264int cgit_diff_files(const unsigned char *old_sha1, 264int cgit_diff_files(const unsigned char *old_sha1,
265 const unsigned char *new_sha1, unsigned long *old_size, 265 const unsigned char *new_sha1, unsigned long *old_size,
266 unsigned long *new_size, int *binary, linediff_fn fn) 266 unsigned long *new_size, int *binary, int context,
267 linediff_fn fn)
267{ 268{
268 mmfile_t file1, file2; 269 mmfile_t file1, file2;
269 xpparam_t diff_params; 270 xpparam_t diff_params;
270 xdemitconf_t emit_params; 271 xdemitconf_t emit_params;
271 xdemitcb_t emit_cb; 272 xdemitcb_t emit_cb;
272 273
273 if (!load_mmfile(&file1, old_sha1) || !load_mmfile(&file2, new_sha1)) 274 if (!load_mmfile(&file1, old_sha1) || !load_mmfile(&file2, new_sha1))
274 return 1; 275 return 1;
275 276
276 *old_size = file1.size; 277 *old_size = file1.size;
277 *new_size = file2.size; 278 *new_size = file2.size;
278 279
279 if ((file1.ptr && buffer_is_binary(file1.ptr, file1.size)) || 280 if ((file1.ptr && buffer_is_binary(file1.ptr, file1.size)) ||
280 (file2.ptr && buffer_is_binary(file2.ptr, file2.size))) { 281 (file2.ptr && buffer_is_binary(file2.ptr, file2.size))) {
281 *binary = 1; 282 *binary = 1;
282 if (file1.size) 283 if (file1.size)
283 free(file1.ptr); 284 free(file1.ptr);
284 if (file2.size) 285 if (file2.size)
285 free(file2.ptr); 286 free(file2.ptr);
286 return 0; 287 return 0;
287 } 288 }
288 289
289 memset(&diff_params, 0, sizeof(diff_params)); 290 memset(&diff_params, 0, sizeof(diff_params));
290 memset(&emit_params, 0, sizeof(emit_params)); 291 memset(&emit_params, 0, sizeof(emit_params));
291 memset(&emit_cb, 0, sizeof(emit_cb)); 292 memset(&emit_cb, 0, sizeof(emit_cb));
292 diff_params.flags = XDF_NEED_MINIMAL; 293 diff_params.flags = XDF_NEED_MINIMAL;
293 emit_params.ctxlen = 3; 294 emit_params.ctxlen = context > 0 ? context : 3;
294 emit_params.flags = XDL_EMIT_FUNCNAMES; 295 emit_params.flags = XDL_EMIT_FUNCNAMES;
295 emit_cb.outf = filediff_cb; 296 emit_cb.outf = filediff_cb;
296 emit_cb.priv = fn; 297 emit_cb.priv = fn;
297 xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); 298 xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb);
298 if (file1.size) 299 if (file1.size)
299 free(file1.ptr); 300 free(file1.ptr);
300 if (file2.size) 301 if (file2.size)
301 free(file2.ptr); 302 free(file2.ptr);
302 return 0; 303 return 0;
303} 304}
304 305
305void cgit_diff_tree(const unsigned char *old_sha1, 306void cgit_diff_tree(const unsigned char *old_sha1,
306 const unsigned char *new_sha1, 307 const unsigned char *new_sha1,
307 filepair_fn fn, const char *prefix) 308 filepair_fn fn, const char *prefix)
308{ 309{
309 struct diff_options opt; 310 struct diff_options opt;
310 int ret; 311 int ret;
311 int prefixlen; 312 int prefixlen;
312 313
313 diff_setup(&opt); 314 diff_setup(&opt);
314 opt.output_format = DIFF_FORMAT_CALLBACK; 315 opt.output_format = DIFF_FORMAT_CALLBACK;
315 opt.detect_rename = 1; 316 opt.detect_rename = 1;
316 opt.rename_limit = ctx.cfg.renamelimit; 317 opt.rename_limit = ctx.cfg.renamelimit;
317 DIFF_OPT_SET(&opt, RECURSIVE); 318 DIFF_OPT_SET(&opt, RECURSIVE);
318 opt.format_callback = cgit_diff_tree_cb; 319 opt.format_callback = cgit_diff_tree_cb;
319 opt.format_callback_data = fn; 320 opt.format_callback_data = fn;
320 if (prefix) { 321 if (prefix) {
321 opt.nr_paths = 1; 322 opt.nr_paths = 1;
322 opt.paths = &prefix; 323 opt.paths = &prefix;
323 prefixlen = strlen(prefix); 324 prefixlen = strlen(prefix);
324 opt.pathlens = &prefixlen; 325 opt.pathlens = &prefixlen;
325 } 326 }
326 diff_setup_done(&opt); 327 diff_setup_done(&opt);
327 328
328 if (old_sha1 && !is_null_sha1(old_sha1)) 329 if (old_sha1 && !is_null_sha1(old_sha1))
329 ret = diff_tree_sha1(old_sha1, new_sha1, "", &opt); 330 ret = diff_tree_sha1(old_sha1, new_sha1, "", &opt);
330 else 331 else
331 ret = diff_root_tree_sha1(new_sha1, "", &opt); 332 ret = diff_root_tree_sha1(new_sha1, "", &opt);
332 diffcore_std(&opt); 333 diffcore_std(&opt);
333 diff_flush(&opt); 334 diff_flush(&opt);
334} 335}
335 336
336void cgit_diff_commit(struct commit *commit, filepair_fn fn) 337void cgit_diff_commit(struct commit *commit, filepair_fn fn)
337{ 338{
338 unsigned char *old_sha1 = NULL; 339 unsigned char *old_sha1 = NULL;
339 340
340 if (commit->parents) 341 if (commit->parents)
341 old_sha1 = commit->parents->item->object.sha1; 342 old_sha1 = commit->parents->item->object.sha1;
342 cgit_diff_tree(old_sha1, commit->object.sha1, fn, NULL); 343 cgit_diff_tree(old_sha1, commit->object.sha1, fn, NULL);
343} 344}
344 345
345int cgit_parse_snapshots_mask(const char *str) 346int cgit_parse_snapshots_mask(const char *str)
346{ 347{
347 const struct cgit_snapshot_format *f; 348 const struct cgit_snapshot_format *f;
348 static const char *delim = " \t,:/|;"; 349 static const char *delim = " \t,:/|;";
349 int tl, sl, rv = 0; 350 int tl, sl, rv = 0;
350 351
351 /* favor legacy setting */ 352 /* favor legacy setting */
352 if(atoi(str)) 353 if(atoi(str))
353 return 1; 354 return 1;
354 for(;;) { 355 for(;;) {
355 str += strspn(str,delim); 356 str += strspn(str,delim);
356 tl = strcspn(str,delim); 357 tl = strcspn(str,delim);
357 if (!tl) 358 if (!tl)
358 break; 359 break;
359 for (f = cgit_snapshot_formats; f->suffix; f++) { 360 for (f = cgit_snapshot_formats; f->suffix; f++) {
360 sl = strlen(f->suffix); 361 sl = strlen(f->suffix);
361 if((tl == sl && !strncmp(f->suffix, str, tl)) || 362 if((tl == sl && !strncmp(f->suffix, str, tl)) ||
362 (tl == sl-1 && !strncmp(f->suffix+1, str, tl-1))) { 363 (tl == sl-1 && !strncmp(f->suffix+1, str, tl-1))) {
363 rv |= f->bit; 364 rv |= f->bit;
364 break; 365 break;
365 } 366 }
366 } 367 }
367 str += tl; 368 str += tl;
368 } 369 }
369 return rv; 370 return rv;
370} 371}
371 372
372int cgit_open_filter(struct cgit_filter *filter) 373int cgit_open_filter(struct cgit_filter *filter)
373{ 374{
374 375
375 filter->old_stdout = chk_positive(dup(STDOUT_FILENO), 376 filter->old_stdout = chk_positive(dup(STDOUT_FILENO),
376 "Unable to duplicate STDOUT"); 377 "Unable to duplicate STDOUT");
377 chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess"); 378 chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess");
378 filter->pid = chk_non_negative(fork(), "Unable to create subprocess"); 379 filter->pid = chk_non_negative(fork(), "Unable to create subprocess");
379 if (filter->pid == 0) { 380 if (filter->pid == 0) {
380 close(filter->pipe_fh[1]); 381 close(filter->pipe_fh[1]);
381 chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO), 382 chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO),
382 "Unable to use pipe as STDIN"); 383 "Unable to use pipe as STDIN");
383 execvp(filter->cmd, filter->argv); 384 execvp(filter->cmd, filter->argv);
384 die("Unable to exec subprocess %s: %s (%d)", filter->cmd, 385 die("Unable to exec subprocess %s: %s (%d)", filter->cmd,
385 strerror(errno), errno); 386 strerror(errno), errno);
386 } 387 }
387 close(filter->pipe_fh[0]); 388 close(filter->pipe_fh[0]);
388 chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO), 389 chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO),
389 "Unable to use pipe as STDOUT"); 390 "Unable to use pipe as STDOUT");
390 close(filter->pipe_fh[1]); 391 close(filter->pipe_fh[1]);
391 return 0; 392 return 0;
392} 393}
393 394
394int cgit_close_filter(struct cgit_filter *filter) 395int cgit_close_filter(struct cgit_filter *filter)
395{ 396{
396 chk_non_negative(dup2(filter->old_stdout, STDOUT_FILENO), 397 chk_non_negative(dup2(filter->old_stdout, STDOUT_FILENO),
397 "Unable to restore STDOUT"); 398 "Unable to restore STDOUT");
398 close(filter->old_stdout); 399 close(filter->old_stdout);
399 if (filter->pid < 0) 400 if (filter->pid < 0)
400 return 0; 401 return 0;
401 waitpid(filter->pid, &filter->exitstatus, 0); 402 waitpid(filter->pid, &filter->exitstatus, 0);
402 if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) 403 if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus))
403 return 0; 404 return 0;
404 die("Subprocess %s exited abnormally", filter->cmd); 405 die("Subprocess %s exited abnormally", filter->cmd);
405} 406}
406 407
407/* Read the content of the specified file into a newly allocated buffer, 408/* Read the content of the specified file into a newly allocated buffer,
408 * zeroterminate the buffer and return 0 on success, errno otherwise. 409 * zeroterminate the buffer and return 0 on success, errno otherwise.
409 */ 410 */
410int readfile(const char *path, char **buf, size_t *size) 411int readfile(const char *path, char **buf, size_t *size)
411{ 412{
412 int fd, e; 413 int fd, e;
413 struct stat st; 414 struct stat st;
414 415
415 fd = open(path, O_RDONLY); 416 fd = open(path, O_RDONLY);
416 if (fd == -1) 417 if (fd == -1)
417 return errno; 418 return errno;
418 if (fstat(fd, &st)) { 419 if (fstat(fd, &st)) {
419 e = errno; 420 e = errno;
420 close(fd); 421 close(fd);
421 return e; 422 return e;
422 } 423 }
423 if (!S_ISREG(st.st_mode)) { 424 if (!S_ISREG(st.st_mode)) {
424 close(fd); 425 close(fd);
425 return EISDIR; 426 return EISDIR;
426 } 427 }
427 *buf = xmalloc(st.st_size + 1); 428 *buf = xmalloc(st.st_size + 1);
428 *size = read_in_full(fd, *buf, st.st_size); 429 *size = read_in_full(fd, *buf, st.st_size);
429 e = errno; 430 e = errno;
430 (*buf)[*size] = '\0'; 431 (*buf)[*size] = '\0';
431 close(fd); 432 close(fd);
432 return (*size == st.st_size ? 0 : e); 433 return (*size == st.st_size ? 0 : e);
433} 434}
diff --git a/ui-diff.c b/ui-diff.c
index fb836df..e0a72f7 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -1,355 +1,363 @@
1/* ui-diff.c: show diff between two blobs 1/* ui-diff.c: show diff between two blobs
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#include "html.h" 10#include "html.h"
11#include "ui-shared.h" 11#include "ui-shared.h"
12#include "ui-ssdiff.h" 12#include "ui-ssdiff.h"
13 13
14unsigned char old_rev_sha1[20]; 14unsigned char old_rev_sha1[20];
15unsigned char new_rev_sha1[20]; 15unsigned char new_rev_sha1[20];
16 16
17static int files, slots; 17static int files, slots;
18static int total_adds, total_rems, max_changes; 18static int total_adds, total_rems, max_changes;
19static int lines_added, lines_removed; 19static int lines_added, lines_removed;
20 20
21static struct fileinfo { 21static struct fileinfo {
22 char status; 22 char status;
23 unsigned char old_sha1[20]; 23 unsigned char old_sha1[20];
24 unsigned char new_sha1[20]; 24 unsigned char new_sha1[20];
25 unsigned short old_mode; 25 unsigned short old_mode;
26 unsigned short new_mode; 26 unsigned short new_mode;
27 char *old_path; 27 char *old_path;
28 char *new_path; 28 char *new_path;
29 unsigned int added; 29 unsigned int added;
30 unsigned int removed; 30 unsigned int removed;
31 unsigned long old_size; 31 unsigned long old_size;
32 unsigned long new_size; 32 unsigned long new_size;
33 int binary:1; 33 int binary:1;
34} *items; 34} *items;
35 35
36static int use_ssdiff = 0; 36static int use_ssdiff = 0;
37 37
38static void print_fileinfo(struct fileinfo *info) 38static void print_fileinfo(struct fileinfo *info)
39{ 39{
40 char *class; 40 char *class;
41 41
42 switch (info->status) { 42 switch (info->status) {
43 case DIFF_STATUS_ADDED: 43 case DIFF_STATUS_ADDED:
44 class = "add"; 44 class = "add";
45 break; 45 break;
46 case DIFF_STATUS_COPIED: 46 case DIFF_STATUS_COPIED:
47 class = "cpy"; 47 class = "cpy";
48 break; 48 break;
49 case DIFF_STATUS_DELETED: 49 case DIFF_STATUS_DELETED:
50 class = "del"; 50 class = "del";
51 break; 51 break;
52 case DIFF_STATUS_MODIFIED: 52 case DIFF_STATUS_MODIFIED:
53 class = "upd"; 53 class = "upd";
54 break; 54 break;
55 case DIFF_STATUS_RENAMED: 55 case DIFF_STATUS_RENAMED:
56 class = "mov"; 56 class = "mov";
57 break; 57 break;
58 case DIFF_STATUS_TYPE_CHANGED: 58 case DIFF_STATUS_TYPE_CHANGED:
59 class = "typ"; 59 class = "typ";
60 break; 60 break;
61 case DIFF_STATUS_UNKNOWN: 61 case DIFF_STATUS_UNKNOWN:
62 class = "unk"; 62 class = "unk";
63 break; 63 break;
64 case DIFF_STATUS_UNMERGED: 64 case DIFF_STATUS_UNMERGED:
65 class = "stg"; 65 class = "stg";
66 break; 66 break;
67 default: 67 default:
68 die("bug: unhandled diff status %c", info->status); 68 die("bug: unhandled diff status %c", info->status);
69 } 69 }
70 70
71 html("<tr>"); 71 html("<tr>");
72 htmlf("<td class='mode'>"); 72 htmlf("<td class='mode'>");
73 if (is_null_sha1(info->new_sha1)) { 73 if (is_null_sha1(info->new_sha1)) {
74 cgit_print_filemode(info->old_mode); 74 cgit_print_filemode(info->old_mode);
75 } else { 75 } else {
76 cgit_print_filemode(info->new_mode); 76 cgit_print_filemode(info->new_mode);
77 } 77 }
78 78
79 if (info->old_mode != info->new_mode && 79 if (info->old_mode != info->new_mode &&
80 !is_null_sha1(info->old_sha1) && 80 !is_null_sha1(info->old_sha1) &&
81 !is_null_sha1(info->new_sha1)) { 81 !is_null_sha1(info->new_sha1)) {
82 html("<span class='modechange'>["); 82 html("<span class='modechange'>[");
83 cgit_print_filemode(info->old_mode); 83 cgit_print_filemode(info->old_mode);
84 html("]</span>"); 84 html("]</span>");
85 } 85 }
86 htmlf("</td><td class='%s'>", class); 86 htmlf("</td><td class='%s'>", class);
87 cgit_diff_link(info->new_path, NULL, NULL, ctx.qry.head, ctx.qry.sha1, 87 cgit_diff_link(info->new_path, NULL, NULL, ctx.qry.head, ctx.qry.sha1,
88 ctx.qry.sha2, info->new_path, 0); 88 ctx.qry.sha2, info->new_path, 0);
89 if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED) 89 if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED)
90 htmlf(" (%s from %s)", 90 htmlf(" (%s from %s)",
91 info->status == DIFF_STATUS_COPIED ? "copied" : "renamed", 91 info->status == DIFF_STATUS_COPIED ? "copied" : "renamed",
92 info->old_path); 92 info->old_path);
93 html("</td><td class='right'>"); 93 html("</td><td class='right'>");
94 if (info->binary) { 94 if (info->binary) {
95 htmlf("bin</td><td class='graph'>%d -> %d bytes", 95 htmlf("bin</td><td class='graph'>%d -> %d bytes",
96 info->old_size, info->new_size); 96 info->old_size, info->new_size);
97 return; 97 return;
98 } 98 }
99 htmlf("%d", info->added + info->removed); 99 htmlf("%d", info->added + info->removed);
100 html("</td><td class='graph'>"); 100 html("</td><td class='graph'>");
101 htmlf("<table summary='file diffstat' width='%d%%'><tr>", (max_changes > 100 ? 100 : max_changes)); 101 htmlf("<table summary='file diffstat' width='%d%%'><tr>", (max_changes > 100 ? 100 : max_changes));
102 htmlf("<td class='add' style='width: %.1f%%;'/>", 102 htmlf("<td class='add' style='width: %.1f%%;'/>",
103 info->added * 100.0 / max_changes); 103 info->added * 100.0 / max_changes);
104 htmlf("<td class='rem' style='width: %.1f%%;'/>", 104 htmlf("<td class='rem' style='width: %.1f%%;'/>",
105 info->removed * 100.0 / max_changes); 105 info->removed * 100.0 / max_changes);
106 htmlf("<td class='none' style='width: %.1f%%;'/>", 106 htmlf("<td class='none' style='width: %.1f%%;'/>",
107 (max_changes - info->removed - info->added) * 100.0 / max_changes); 107 (max_changes - info->removed - info->added) * 100.0 / max_changes);
108 html("</tr></table></td></tr>\n"); 108 html("</tr></table></td></tr>\n");
109} 109}
110 110
111static void count_diff_lines(char *line, int len) 111static void count_diff_lines(char *line, int len)
112{ 112{
113 if (line && (len > 0)) { 113 if (line && (len > 0)) {
114 if (line[0] == '+') 114 if (line[0] == '+')
115 lines_added++; 115 lines_added++;
116 else if (line[0] == '-') 116 else if (line[0] == '-')
117 lines_removed++; 117 lines_removed++;
118 } 118 }
119} 119}
120 120
121static void inspect_filepair(struct diff_filepair *pair) 121static void inspect_filepair(struct diff_filepair *pair)
122{ 122{
123 int binary = 0; 123 int binary = 0;
124 unsigned long old_size = 0; 124 unsigned long old_size = 0;
125 unsigned long new_size = 0; 125 unsigned long new_size = 0;
126 files++; 126 files++;
127 lines_added = 0; 127 lines_added = 0;
128 lines_removed = 0; 128 lines_removed = 0;
129 cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size, &new_size, 129 cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size, &new_size,
130 &binary, count_diff_lines); 130 &binary, 0, count_diff_lines);
131 if (files >= slots) { 131 if (files >= slots) {
132 if (slots == 0) 132 if (slots == 0)
133 slots = 4; 133 slots = 4;
134 else 134 else
135 slots = slots * 2; 135 slots = slots * 2;
136 items = xrealloc(items, slots * sizeof(struct fileinfo)); 136 items = xrealloc(items, slots * sizeof(struct fileinfo));
137 } 137 }
138 items[files-1].status = pair->status; 138 items[files-1].status = pair->status;
139 hashcpy(items[files-1].old_sha1, pair->one->sha1); 139 hashcpy(items[files-1].old_sha1, pair->one->sha1);
140 hashcpy(items[files-1].new_sha1, pair->two->sha1); 140 hashcpy(items[files-1].new_sha1, pair->two->sha1);
141 items[files-1].old_mode = pair->one->mode; 141 items[files-1].old_mode = pair->one->mode;
142 items[files-1].new_mode = pair->two->mode; 142 items[files-1].new_mode = pair->two->mode;
143 items[files-1].old_path = xstrdup(pair->one->path); 143 items[files-1].old_path = xstrdup(pair->one->path);
144 items[files-1].new_path = xstrdup(pair->two->path); 144 items[files-1].new_path = xstrdup(pair->two->path);
145 items[files-1].added = lines_added; 145 items[files-1].added = lines_added;
146 items[files-1].removed = lines_removed; 146 items[files-1].removed = lines_removed;
147 items[files-1].old_size = old_size; 147 items[files-1].old_size = old_size;
148 items[files-1].new_size = new_size; 148 items[files-1].new_size = new_size;
149 items[files-1].binary = binary; 149 items[files-1].binary = binary;
150 if (lines_added + lines_removed > max_changes) 150 if (lines_added + lines_removed > max_changes)
151 max_changes = lines_added + lines_removed; 151 max_changes = lines_added + lines_removed;
152 total_adds += lines_added; 152 total_adds += lines_added;
153 total_rems += lines_removed; 153 total_rems += lines_removed;
154} 154}
155 155
156void cgit_print_diffstat(const unsigned char *old_sha1, 156void cgit_print_diffstat(const unsigned char *old_sha1,
157 const unsigned char *new_sha1, const char *prefix) 157 const unsigned char *new_sha1, const char *prefix)
158{ 158{
159 int i; 159 int i, save_context = ctx.qry.context;
160 160
161 html("<div class='diffstat-header'>"); 161 html("<div class='diffstat-header'>");
162 cgit_diff_link("Diffstat", NULL, NULL, ctx.qry.head, ctx.qry.sha1, 162 cgit_diff_link("Diffstat", NULL, NULL, ctx.qry.head, ctx.qry.sha1,
163 ctx.qry.sha2, NULL, 0); 163 ctx.qry.sha2, NULL, 0);
164 if (prefix) 164 if (prefix)
165 htmlf(" (limited to '%s')", prefix); 165 htmlf(" (limited to '%s')", prefix);
166 html(" (");
167 ctx.qry.context = (save_context > 0 ? save_context : 3) << 1;
168 cgit_self_link("more", NULL, NULL, &ctx);
169 html("/");
170 ctx.qry.context = (save_context > 3 ? save_context : 3) >> 1;
171 cgit_self_link("less", NULL, NULL, &ctx);
172 ctx.qry.context = save_context;
173 html(" context)");
166 html("</div>"); 174 html("</div>");
167 html("<table summary='diffstat' class='diffstat'>"); 175 html("<table summary='diffstat' class='diffstat'>");
168 max_changes = 0; 176 max_changes = 0;
169 cgit_diff_tree(old_sha1, new_sha1, inspect_filepair, prefix); 177 cgit_diff_tree(old_sha1, new_sha1, inspect_filepair, prefix);
170 for(i = 0; i<files; i++) 178 for(i = 0; i<files; i++)
171 print_fileinfo(&items[i]); 179 print_fileinfo(&items[i]);
172 html("</table>"); 180 html("</table>");
173 html("<div class='diffstat-summary'>"); 181 html("<div class='diffstat-summary'>");
174 htmlf("%d files changed, %d insertions, %d deletions", 182 htmlf("%d files changed, %d insertions, %d deletions",
175 files, total_adds, total_rems); 183 files, total_adds, total_rems);
176 html("</div>"); 184 html("</div>");
177} 185}
178 186
179 187
180/* 188/*
181 * print a single line returned from xdiff 189 * print a single line returned from xdiff
182 */ 190 */
183static void print_line(char *line, int len) 191static void print_line(char *line, int len)
184{ 192{
185 char *class = "ctx"; 193 char *class = "ctx";
186 char c = line[len-1]; 194 char c = line[len-1];
187 195
188 if (line[0] == '+') 196 if (line[0] == '+')
189 class = "add"; 197 class = "add";
190 else if (line[0] == '-') 198 else if (line[0] == '-')
191 class = "del"; 199 class = "del";
192 else if (line[0] == '@') 200 else if (line[0] == '@')
193 class = "hunk"; 201 class = "hunk";
194 202
195 htmlf("<div class='%s'>", class); 203 htmlf("<div class='%s'>", class);
196 line[len-1] = '\0'; 204 line[len-1] = '\0';
197 html_txt(line); 205 html_txt(line);
198 html("</div>"); 206 html("</div>");
199 line[len-1] = c; 207 line[len-1] = c;
200} 208}
201 209
202static void header(unsigned char *sha1, char *path1, int mode1, 210static void header(unsigned char *sha1, char *path1, int mode1,
203 unsigned char *sha2, char *path2, int mode2) 211 unsigned char *sha2, char *path2, int mode2)
204{ 212{
205 char *abbrev1, *abbrev2; 213 char *abbrev1, *abbrev2;
206 int subproject; 214 int subproject;
207 215
208 subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); 216 subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2));
209 html("<div class='head'>"); 217 html("<div class='head'>");
210 html("diff --git a/"); 218 html("diff --git a/");
211 html_txt(path1); 219 html_txt(path1);
212 html(" b/"); 220 html(" b/");
213 html_txt(path2); 221 html_txt(path2);
214 222
215 if (is_null_sha1(sha1)) 223 if (is_null_sha1(sha1))
216 path1 = "dev/null"; 224 path1 = "dev/null";
217 if (is_null_sha1(sha2)) 225 if (is_null_sha1(sha2))
218 path2 = "dev/null"; 226 path2 = "dev/null";
219 227
220 if (mode1 == 0) 228 if (mode1 == 0)
221 htmlf("<br/>new file mode %.6o", mode2); 229 htmlf("<br/>new file mode %.6o", mode2);
222 230
223 if (mode2 == 0) 231 if (mode2 == 0)
224 htmlf("<br/>deleted file mode %.6o", mode1); 232 htmlf("<br/>deleted file mode %.6o", mode1);
225 233
226 if (!subproject) { 234 if (!subproject) {
227 abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV)); 235 abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV));
228 abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV)); 236 abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV));
229 htmlf("<br/>index %s..%s", abbrev1, abbrev2); 237 htmlf("<br/>index %s..%s", abbrev1, abbrev2);
230 free(abbrev1); 238 free(abbrev1);
231 free(abbrev2); 239 free(abbrev2);
232 if (mode1 != 0 && mode2 != 0) { 240 if (mode1 != 0 && mode2 != 0) {
233 htmlf(" %.6o", mode1); 241 htmlf(" %.6o", mode1);
234 if (mode2 != mode1) 242 if (mode2 != mode1)
235 htmlf("..%.6o", mode2); 243 htmlf("..%.6o", mode2);
236 } 244 }
237 html("<br/>--- a/"); 245 html("<br/>--- a/");
238 if (mode1 != 0) 246 if (mode1 != 0)
239 cgit_tree_link(path1, NULL, NULL, ctx.qry.head, 247 cgit_tree_link(path1, NULL, NULL, ctx.qry.head,
240 sha1_to_hex(old_rev_sha1), path1); 248 sha1_to_hex(old_rev_sha1), path1);
241 else 249 else
242 html_txt(path1); 250 html_txt(path1);
243 html("<br/>+++ b/"); 251 html("<br/>+++ b/");
244 if (mode2 != 0) 252 if (mode2 != 0)
245 cgit_tree_link(path2, NULL, NULL, ctx.qry.head, 253 cgit_tree_link(path2, NULL, NULL, ctx.qry.head,
246 sha1_to_hex(new_rev_sha1), path2); 254 sha1_to_hex(new_rev_sha1), path2);
247 else 255 else
248 html_txt(path2); 256 html_txt(path2);
249 } 257 }
250 html("</div>"); 258 html("</div>");
251} 259}
252 260
253static void print_ssdiff_link() 261static void print_ssdiff_link()
254{ 262{
255 if (!strcmp(ctx.qry.page, "diff")) { 263 if (!strcmp(ctx.qry.page, "diff")) {
256 if (use_ssdiff) 264 if (use_ssdiff)
257 cgit_diff_link("Unidiff", NULL, NULL, ctx.qry.head, 265 cgit_diff_link("Unidiff", NULL, NULL, ctx.qry.head,
258 ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path, 1); 266 ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path, 1);
259 else 267 else
260 cgit_diff_link("Side-by-side diff", NULL, NULL, 268 cgit_diff_link("Side-by-side diff", NULL, NULL,
261 ctx.qry.head, ctx.qry.sha1, 269 ctx.qry.head, ctx.qry.sha1,
262 ctx.qry.sha2, ctx.qry.path, 1); 270 ctx.qry.sha2, ctx.qry.path, 1);
263 } 271 }
264} 272}
265 273
266static void filepair_cb(struct diff_filepair *pair) 274static void filepair_cb(struct diff_filepair *pair)
267{ 275{
268 unsigned long old_size = 0; 276 unsigned long old_size = 0;
269 unsigned long new_size = 0; 277 unsigned long new_size = 0;
270 int binary = 0; 278 int binary = 0;
271 linediff_fn print_line_fn = print_line; 279 linediff_fn print_line_fn = print_line;
272 280
273 if (use_ssdiff) { 281 if (use_ssdiff) {
274 cgit_ssdiff_header_begin(); 282 cgit_ssdiff_header_begin();
275 print_line_fn = cgit_ssdiff_line_cb; 283 print_line_fn = cgit_ssdiff_line_cb;
276 } 284 }
277 header(pair->one->sha1, pair->one->path, pair->one->mode, 285 header(pair->one->sha1, pair->one->path, pair->one->mode,
278 pair->two->sha1, pair->two->path, pair->two->mode); 286 pair->two->sha1, pair->two->path, pair->two->mode);
279 if (use_ssdiff) 287 if (use_ssdiff)
280 cgit_ssdiff_header_end(); 288 cgit_ssdiff_header_end();
281 if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) { 289 if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) {
282 if (S_ISGITLINK(pair->one->mode)) 290 if (S_ISGITLINK(pair->one->mode))
283 print_line_fn(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); 291 print_line_fn(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52);
284 if (S_ISGITLINK(pair->two->mode)) 292 if (S_ISGITLINK(pair->two->mode))
285 print_line_fn(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); 293 print_line_fn(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52);
286 if (use_ssdiff) 294 if (use_ssdiff)
287 cgit_ssdiff_footer(); 295 cgit_ssdiff_footer();
288 return; 296 return;
289 } 297 }
290 if (cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size, 298 if (cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size,
291 &new_size, &binary, print_line_fn)) 299 &new_size, &binary, ctx.qry.context, print_line_fn))
292 cgit_print_error("Error running diff"); 300 cgit_print_error("Error running diff");
293 if (binary) { 301 if (binary) {
294 if (use_ssdiff) 302 if (use_ssdiff)
295 html("<tr><td colspan='4'>Binary files differ</td></tr>"); 303 html("<tr><td colspan='4'>Binary files differ</td></tr>");
296 else 304 else
297 html("Binary files differ"); 305 html("Binary files differ");
298 } 306 }
299 if (use_ssdiff) 307 if (use_ssdiff)
300 cgit_ssdiff_footer(); 308 cgit_ssdiff_footer();
301} 309}
302 310
303void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefix) 311void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefix)
304{ 312{
305 enum object_type type; 313 enum object_type type;
306 unsigned long size; 314 unsigned long size;
307 struct commit *commit, *commit2; 315 struct commit *commit, *commit2;
308 316
309 if (!new_rev) 317 if (!new_rev)
310 new_rev = ctx.qry.head; 318 new_rev = ctx.qry.head;
311 get_sha1(new_rev, new_rev_sha1); 319 get_sha1(new_rev, new_rev_sha1);
312 type = sha1_object_info(new_rev_sha1, &size); 320 type = sha1_object_info(new_rev_sha1, &size);
313 if (type == OBJ_BAD) { 321 if (type == OBJ_BAD) {
314 cgit_print_error(fmt("Bad object name: %s", new_rev)); 322 cgit_print_error(fmt("Bad object name: %s", new_rev));
315 return; 323 return;
316 } 324 }
317 commit = lookup_commit_reference(new_rev_sha1); 325 commit = lookup_commit_reference(new_rev_sha1);
318 if (!commit || parse_commit(commit)) 326 if (!commit || parse_commit(commit))
319 cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(new_rev_sha1))); 327 cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(new_rev_sha1)));
320 328
321 if (old_rev) 329 if (old_rev)
322 get_sha1(old_rev, old_rev_sha1); 330 get_sha1(old_rev, old_rev_sha1);
323 else if (commit->parents && commit->parents->item) 331 else if (commit->parents && commit->parents->item)
324 hashcpy(old_rev_sha1, commit->parents->item->object.sha1); 332 hashcpy(old_rev_sha1, commit->parents->item->object.sha1);
325 else 333 else
326 hashclr(old_rev_sha1); 334 hashclr(old_rev_sha1);
327 335
328 if (!is_null_sha1(old_rev_sha1)) { 336 if (!is_null_sha1(old_rev_sha1)) {
329 type = sha1_object_info(old_rev_sha1, &size); 337 type = sha1_object_info(old_rev_sha1, &size);
330 if (type == OBJ_BAD) { 338 if (type == OBJ_BAD) {
331 cgit_print_error(fmt("Bad object name: %s", sha1_to_hex(old_rev_sha1))); 339 cgit_print_error(fmt("Bad object name: %s", sha1_to_hex(old_rev_sha1)));
332 return; 340 return;
333 } 341 }
334 commit2 = lookup_commit_reference(old_rev_sha1); 342 commit2 = lookup_commit_reference(old_rev_sha1);
335 if (!commit2 || parse_commit(commit2)) 343 if (!commit2 || parse_commit(commit2))
336 cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(old_rev_sha1))); 344 cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(old_rev_sha1)));
337 } 345 }
338 346
339 if ((ctx.qry.ssdiff && !ctx.cfg.ssdiff) || (!ctx.qry.ssdiff && ctx.cfg.ssdiff)) 347 if ((ctx.qry.ssdiff && !ctx.cfg.ssdiff) || (!ctx.qry.ssdiff && ctx.cfg.ssdiff))
340 use_ssdiff = 1; 348 use_ssdiff = 1;
341 349
342 print_ssdiff_link(); 350 print_ssdiff_link();
343 cgit_print_diffstat(old_rev_sha1, new_rev_sha1, prefix); 351 cgit_print_diffstat(old_rev_sha1, new_rev_sha1, prefix);
344 352
345 if (use_ssdiff) { 353 if (use_ssdiff) {
346 html("<table summary='ssdiff' class='ssdiff'>"); 354 html("<table summary='ssdiff' class='ssdiff'>");
347 } else { 355 } else {
348 html("<table summary='diff' class='diff'>"); 356 html("<table summary='diff' class='diff'>");
349 html("<tr><td>"); 357 html("<tr><td>");
350 } 358 }
351 cgit_diff_tree(old_rev_sha1, new_rev_sha1, filepair_cb, prefix); 359 cgit_diff_tree(old_rev_sha1, new_rev_sha1, filepair_cb, prefix);
352 if (!use_ssdiff) 360 if (!use_ssdiff)
353 html("</td></tr>"); 361 html("</td></tr>");
354 html("</table>"); 362 html("</table>");
355} 363}
diff --git a/ui-log.c b/ui-log.c
index bfbe436..5eb5c81 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -1,237 +1,237 @@
1/* ui-log.c: functions for log output 1/* ui-log.c: functions for log output
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#include "html.h" 10#include "html.h"
11#include "ui-shared.h" 11#include "ui-shared.h"
12 12
13int files, add_lines, rem_lines; 13int files, add_lines, rem_lines;
14 14
15void count_lines(char *line, int size) 15void count_lines(char *line, int size)
16{ 16{
17 if (size <= 0) 17 if (size <= 0)
18 return; 18 return;
19 19
20 if (line[0] == '+') 20 if (line[0] == '+')
21 add_lines++; 21 add_lines++;
22 22
23 else if (line[0] == '-') 23 else if (line[0] == '-')
24 rem_lines++; 24 rem_lines++;
25} 25}
26 26
27void inspect_files(struct diff_filepair *pair) 27void inspect_files(struct diff_filepair *pair)
28{ 28{
29 unsigned long old_size = 0; 29 unsigned long old_size = 0;
30 unsigned long new_size = 0; 30 unsigned long new_size = 0;
31 int binary = 0; 31 int binary = 0;
32 32
33 files++; 33 files++;
34 if (ctx.repo->enable_log_linecount) 34 if (ctx.repo->enable_log_linecount)
35 cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size, 35 cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size,
36 &new_size, &binary, count_lines); 36 &new_size, &binary, 0, count_lines);
37} 37}
38 38
39void show_commit_decorations(struct commit *commit) 39void show_commit_decorations(struct commit *commit)
40{ 40{
41 struct name_decoration *deco; 41 struct name_decoration *deco;
42 static char buf[1024]; 42 static char buf[1024];
43 43
44 buf[sizeof(buf) - 1] = 0; 44 buf[sizeof(buf) - 1] = 0;
45 deco = lookup_decoration(&name_decoration, &commit->object); 45 deco = lookup_decoration(&name_decoration, &commit->object);
46 while (deco) { 46 while (deco) {
47 if (!prefixcmp(deco->name, "refs/heads/")) { 47 if (!prefixcmp(deco->name, "refs/heads/")) {
48 strncpy(buf, deco->name + 11, sizeof(buf) - 1); 48 strncpy(buf, deco->name + 11, sizeof(buf) - 1);
49 cgit_log_link(buf, NULL, "branch-deco", buf, NULL, 49 cgit_log_link(buf, NULL, "branch-deco", buf, NULL,
50 ctx.qry.vpath, 0, NULL, NULL, 50 ctx.qry.vpath, 0, NULL, NULL,
51 ctx.qry.showmsg); 51 ctx.qry.showmsg);
52 } 52 }
53 else if (!prefixcmp(deco->name, "tag: refs/tags/")) { 53 else if (!prefixcmp(deco->name, "tag: refs/tags/")) {
54 strncpy(buf, deco->name + 15, sizeof(buf) - 1); 54 strncpy(buf, deco->name + 15, sizeof(buf) - 1);
55 cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); 55 cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf);
56 } 56 }
57 else if (!prefixcmp(deco->name, "refs/tags/")) { 57 else if (!prefixcmp(deco->name, "refs/tags/")) {
58 strncpy(buf, deco->name + 10, sizeof(buf) - 1); 58 strncpy(buf, deco->name + 10, sizeof(buf) - 1);
59 cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); 59 cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf);
60 } 60 }
61 else if (!prefixcmp(deco->name, "refs/remotes/")) { 61 else if (!prefixcmp(deco->name, "refs/remotes/")) {
62 strncpy(buf, deco->name + 13, sizeof(buf) - 1); 62 strncpy(buf, deco->name + 13, sizeof(buf) - 1);
63 cgit_log_link(buf, NULL, "remote-deco", NULL, 63 cgit_log_link(buf, NULL, "remote-deco", NULL,
64 sha1_to_hex(commit->object.sha1), 64 sha1_to_hex(commit->object.sha1),
65 ctx.qry.vpath, 0, NULL, NULL, 65 ctx.qry.vpath, 0, NULL, NULL,
66 ctx.qry.showmsg); 66 ctx.qry.showmsg);
67 } 67 }
68 else { 68 else {
69 strncpy(buf, deco->name, sizeof(buf) - 1); 69 strncpy(buf, deco->name, sizeof(buf) - 1);
70 cgit_commit_link(buf, NULL, "deco", ctx.qry.head, 70 cgit_commit_link(buf, NULL, "deco", ctx.qry.head,
71 sha1_to_hex(commit->object.sha1), 71 sha1_to_hex(commit->object.sha1),
72 ctx.qry.vpath, 0); 72 ctx.qry.vpath, 0);
73 } 73 }
74 deco = deco->next; 74 deco = deco->next;
75 } 75 }
76} 76}
77 77
78void print_commit(struct commit *commit) 78void print_commit(struct commit *commit)
79{ 79{
80 struct commitinfo *info; 80 struct commitinfo *info;
81 char *tmp; 81 char *tmp;
82 int cols = 2; 82 int cols = 2;
83 83
84 info = cgit_parse_commit(commit); 84 info = cgit_parse_commit(commit);
85 htmlf("<tr%s><td>", 85 htmlf("<tr%s><td>",
86 ctx.qry.showmsg ? " class='logheader'" : ""); 86 ctx.qry.showmsg ? " class='logheader'" : "");
87 tmp = fmt("id=%s", sha1_to_hex(commit->object.sha1)); 87 tmp = fmt("id=%s", sha1_to_hex(commit->object.sha1));
88 tmp = cgit_fileurl(ctx.repo->url, "commit", ctx.qry.vpath, tmp); 88 tmp = cgit_fileurl(ctx.repo->url, "commit", ctx.qry.vpath, tmp);
89 html_link_open(tmp, NULL, NULL); 89 html_link_open(tmp, NULL, NULL);
90 cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); 90 cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE);
91 html_link_close(); 91 html_link_close();
92 htmlf("</td><td%s>", 92 htmlf("</td><td%s>",
93 ctx.qry.showmsg ? " class='logsubject'" : ""); 93 ctx.qry.showmsg ? " class='logsubject'" : "");
94 cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, 94 cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
95 sha1_to_hex(commit->object.sha1), ctx.qry.vpath, 0); 95 sha1_to_hex(commit->object.sha1), ctx.qry.vpath, 0);
96 show_commit_decorations(commit); 96 show_commit_decorations(commit);
97 html("</td><td>"); 97 html("</td><td>");
98 html_txt(info->author); 98 html_txt(info->author);
99 if (ctx.repo->enable_log_filecount) { 99 if (ctx.repo->enable_log_filecount) {
100 files = 0; 100 files = 0;
101 add_lines = 0; 101 add_lines = 0;
102 rem_lines = 0; 102 rem_lines = 0;
103 cgit_diff_commit(commit, inspect_files); 103 cgit_diff_commit(commit, inspect_files);
104 html("</td><td>"); 104 html("</td><td>");
105 htmlf("%d", files); 105 htmlf("%d", files);
106 if (ctx.repo->enable_log_linecount) { 106 if (ctx.repo->enable_log_linecount) {
107 html("</td><td>"); 107 html("</td><td>");
108 htmlf("-%d/+%d", rem_lines, add_lines); 108 htmlf("-%d/+%d", rem_lines, add_lines);
109 } 109 }
110 } 110 }
111 html("</td></tr>\n"); 111 html("</td></tr>\n");
112 if (ctx.qry.showmsg) { 112 if (ctx.qry.showmsg) {
113 if (ctx.repo->enable_log_filecount) { 113 if (ctx.repo->enable_log_filecount) {
114 cols++; 114 cols++;
115 if (ctx.repo->enable_log_linecount) 115 if (ctx.repo->enable_log_linecount)
116 cols++; 116 cols++;
117 } 117 }
118 htmlf("<tr class='nohover'><td/><td colspan='%d' class='logmsg'>", 118 htmlf("<tr class='nohover'><td/><td colspan='%d' class='logmsg'>",
119 cols); 119 cols);
120 html_txt(info->msg); 120 html_txt(info->msg);
121 html("</td></tr>\n"); 121 html("</td></tr>\n");
122 } 122 }
123 cgit_free_commitinfo(info); 123 cgit_free_commitinfo(info);
124} 124}
125 125
126static const char *disambiguate_ref(const char *ref) 126static const char *disambiguate_ref(const char *ref)
127{ 127{
128 unsigned char sha1[20]; 128 unsigned char sha1[20];
129 const char *longref; 129 const char *longref;
130 130
131 longref = fmt("refs/heads/%s", ref); 131 longref = fmt("refs/heads/%s", ref);
132 if (get_sha1(longref, sha1) == 0) 132 if (get_sha1(longref, sha1) == 0)
133 return longref; 133 return longref;
134 134
135 return ref; 135 return ref;
136} 136}
137 137
138void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern, 138void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern,
139 char *path, int pager) 139 char *path, int pager)
140{ 140{
141 struct rev_info rev; 141 struct rev_info rev;
142 struct commit *commit; 142 struct commit *commit;
143 const char *argv[] = {NULL, NULL, NULL, NULL, NULL}; 143 const char *argv[] = {NULL, NULL, NULL, NULL, NULL};
144 int argc = 2; 144 int argc = 2;
145 int i, columns = 3; 145 int i, columns = 3;
146 146
147 if (!tip) 147 if (!tip)
148 tip = ctx.qry.head; 148 tip = ctx.qry.head;
149 149
150 argv[1] = disambiguate_ref(tip); 150 argv[1] = disambiguate_ref(tip);
151 151
152 if (grep && pattern && (!strcmp(grep, "grep") || 152 if (grep && pattern && (!strcmp(grep, "grep") ||
153 !strcmp(grep, "author") || 153 !strcmp(grep, "author") ||
154 !strcmp(grep, "committer"))) 154 !strcmp(grep, "committer")))
155 argv[argc++] = fmt("--%s=%s", grep, pattern); 155 argv[argc++] = fmt("--%s=%s", grep, pattern);
156 156
157 if (path) { 157 if (path) {
158 argv[argc++] = "--"; 158 argv[argc++] = "--";
159 argv[argc++] = path; 159 argv[argc++] = path;
160 } 160 }
161 init_revisions(&rev, NULL); 161 init_revisions(&rev, NULL);
162 rev.abbrev = DEFAULT_ABBREV; 162 rev.abbrev = DEFAULT_ABBREV;
163 rev.commit_format = CMIT_FMT_DEFAULT; 163 rev.commit_format = CMIT_FMT_DEFAULT;
164 rev.verbose_header = 1; 164 rev.verbose_header = 1;
165 rev.show_root_diff = 0; 165 rev.show_root_diff = 0;
166 setup_revisions(argc, argv, &rev, NULL); 166 setup_revisions(argc, argv, &rev, NULL);
167 load_ref_decorations(DECORATE_FULL_REFS); 167 load_ref_decorations(DECORATE_FULL_REFS);
168 rev.show_decorations = 1; 168 rev.show_decorations = 1;
169 rev.grep_filter.regflags |= REG_ICASE; 169 rev.grep_filter.regflags |= REG_ICASE;
170 compile_grep_patterns(&rev.grep_filter); 170 compile_grep_patterns(&rev.grep_filter);
171 prepare_revision_walk(&rev); 171 prepare_revision_walk(&rev);
172 172
173 if (pager) 173 if (pager)
174 html("<table class='list nowrap'>"); 174 html("<table class='list nowrap'>");
175 175
176 html("<tr class='nohover'><th class='left'>Age</th>" 176 html("<tr class='nohover'><th class='left'>Age</th>"
177 "<th class='left'>Commit message"); 177 "<th class='left'>Commit message");
178 if (pager) { 178 if (pager) {
179 html(" ("); 179 html(" (");
180 cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL, 180 cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL,
181 NULL, ctx.qry.head, ctx.qry.sha1, 181 NULL, ctx.qry.head, ctx.qry.sha1,
182 ctx.qry.vpath, ctx.qry.ofs, ctx.qry.grep, 182 ctx.qry.vpath, ctx.qry.ofs, ctx.qry.grep,
183 ctx.qry.search, ctx.qry.showmsg ? 0 : 1); 183 ctx.qry.search, ctx.qry.showmsg ? 0 : 1);
184 html(")"); 184 html(")");
185 } 185 }
186 html("</th><th class='left'>Author</th>"); 186 html("</th><th class='left'>Author</th>");
187 if (ctx.repo->enable_log_filecount) { 187 if (ctx.repo->enable_log_filecount) {
188 html("<th class='left'>Files</th>"); 188 html("<th class='left'>Files</th>");
189 columns++; 189 columns++;
190 if (ctx.repo->enable_log_linecount) { 190 if (ctx.repo->enable_log_linecount) {
191 html("<th class='left'>Lines</th>"); 191 html("<th class='left'>Lines</th>");
192 columns++; 192 columns++;
193 } 193 }
194 } 194 }
195 html("</tr>\n"); 195 html("</tr>\n");
196 196
197 if (ofs<0) 197 if (ofs<0)
198 ofs = 0; 198 ofs = 0;
199 199
200 for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { 200 for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) {
201 free(commit->buffer); 201 free(commit->buffer);
202 commit->buffer = NULL; 202 commit->buffer = NULL;
203 free_commit_list(commit->parents); 203 free_commit_list(commit->parents);
204 commit->parents = NULL; 204 commit->parents = NULL;
205 } 205 }
206 206
207 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { 207 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) {
208 print_commit(commit); 208 print_commit(commit);
209 free(commit->buffer); 209 free(commit->buffer);
210 commit->buffer = NULL; 210 commit->buffer = NULL;
211 free_commit_list(commit->parents); 211 free_commit_list(commit->parents);
212 commit->parents = NULL; 212 commit->parents = NULL;
213 } 213 }
214 if (pager) { 214 if (pager) {
215 htmlf("</table><div class='pager'>", 215 htmlf("</table><div class='pager'>",
216 columns); 216 columns);
217 if (ofs > 0) { 217 if (ofs > 0) {
218 cgit_log_link("[prev]", NULL, NULL, ctx.qry.head, 218 cgit_log_link("[prev]", NULL, NULL, ctx.qry.head,
219 ctx.qry.sha1, ctx.qry.vpath, 219 ctx.qry.sha1, ctx.qry.vpath,
220 ofs - cnt, ctx.qry.grep, 220 ofs - cnt, ctx.qry.grep,
221 ctx.qry.search, ctx.qry.showmsg); 221 ctx.qry.search, ctx.qry.showmsg);
222 html("&nbsp;"); 222 html("&nbsp;");
223 } 223 }
224 if ((commit = get_revision(&rev)) != NULL) { 224 if ((commit = get_revision(&rev)) != NULL) {
225 cgit_log_link("[next]", NULL, NULL, ctx.qry.head, 225 cgit_log_link("[next]", NULL, NULL, ctx.qry.head,
226 ctx.qry.sha1, ctx.qry.vpath, 226 ctx.qry.sha1, ctx.qry.vpath,
227 ofs + cnt, ctx.qry.grep, 227 ofs + cnt, ctx.qry.grep,
228 ctx.qry.search, ctx.qry.showmsg); 228 ctx.qry.search, ctx.qry.showmsg);
229 } 229 }
230 html("</div>"); 230 html("</div>");
231 } else if ((commit = get_revision(&rev)) != NULL) { 231 } else if ((commit = get_revision(&rev)) != NULL) {
232 html("<tr class='nohover'><td colspan='3'>"); 232 html("<tr class='nohover'><td colspan='3'>");
233 cgit_log_link("[...]", NULL, NULL, ctx.qry.head, NULL, 233 cgit_log_link("[...]", NULL, NULL, ctx.qry.head, NULL,
234 ctx.qry.vpath, 0, NULL, NULL, ctx.qry.showmsg); 234 ctx.qry.vpath, 0, NULL, NULL, ctx.qry.showmsg);
235 html("</td></tr>\n"); 235 html("</td></tr>\n");
236 } 236 }
237} 237}
diff --git a/ui-patch.c b/ui-patch.c
index 25dc9fe..d13104c 100644
--- a/ui-patch.c
+++ b/ui-patch.c
@@ -1,131 +1,131 @@
1/* ui-patch.c: generate patch view 1/* ui-patch.c: generate patch view
2 * 2 *
3 * Copyright (C) 2007 Lars Hjemli 3 * Copyright (C) 2007 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#include "html.h" 10#include "html.h"
11#include "ui-shared.h" 11#include "ui-shared.h"
12 12
13static void print_line(char *line, int len) 13static void print_line(char *line, int len)
14{ 14{
15 char c = line[len-1]; 15 char c = line[len-1];
16 16
17 line[len-1] = '\0'; 17 line[len-1] = '\0';
18 htmlf("%s\n", line); 18 htmlf("%s\n", line);
19 line[len-1] = c; 19 line[len-1] = c;
20} 20}
21 21
22static void header(unsigned char *sha1, char *path1, int mode1, 22static void header(unsigned char *sha1, char *path1, int mode1,
23 unsigned char *sha2, char *path2, int mode2) 23 unsigned char *sha2, char *path2, int mode2)
24{ 24{
25 char *abbrev1, *abbrev2; 25 char *abbrev1, *abbrev2;
26 int subproject; 26 int subproject;
27 27
28 subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); 28 subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2));
29 htmlf("diff --git a/%s b/%s\n", path1, path2); 29 htmlf("diff --git a/%s b/%s\n", path1, path2);
30 30
31 if (is_null_sha1(sha1)) 31 if (is_null_sha1(sha1))
32 path1 = "dev/null"; 32 path1 = "dev/null";
33 if (is_null_sha1(sha2)) 33 if (is_null_sha1(sha2))
34 path2 = "dev/null"; 34 path2 = "dev/null";
35 35
36 if (mode1 == 0) 36 if (mode1 == 0)
37 htmlf("new file mode %.6o\n", mode2); 37 htmlf("new file mode %.6o\n", mode2);
38 38
39 if (mode2 == 0) 39 if (mode2 == 0)
40 htmlf("deleted file mode %.6o\n", mode1); 40 htmlf("deleted file mode %.6o\n", mode1);
41 41
42 if (!subproject) { 42 if (!subproject) {
43 abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV)); 43 abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV));
44 abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV)); 44 abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV));
45 htmlf("index %s..%s", abbrev1, abbrev2); 45 htmlf("index %s..%s", abbrev1, abbrev2);
46 free(abbrev1); 46 free(abbrev1);
47 free(abbrev2); 47 free(abbrev2);
48 if (mode1 != 0 && mode2 != 0) { 48 if (mode1 != 0 && mode2 != 0) {
49 htmlf(" %.6o", mode1); 49 htmlf(" %.6o", mode1);
50 if (mode2 != mode1) 50 if (mode2 != mode1)
51 htmlf("..%.6o", mode2); 51 htmlf("..%.6o", mode2);
52 } 52 }
53 htmlf("\n--- a/%s\n", path1); 53 htmlf("\n--- a/%s\n", path1);
54 htmlf("+++ b/%s\n", path2); 54 htmlf("+++ b/%s\n", path2);
55 } 55 }
56} 56}
57 57
58static void filepair_cb(struct diff_filepair *pair) 58static void filepair_cb(struct diff_filepair *pair)
59{ 59{
60 unsigned long old_size = 0; 60 unsigned long old_size = 0;
61 unsigned long new_size = 0; 61 unsigned long new_size = 0;
62 int binary = 0; 62 int binary = 0;
63 63
64 header(pair->one->sha1, pair->one->path, pair->one->mode, 64 header(pair->one->sha1, pair->one->path, pair->one->mode,
65 pair->two->sha1, pair->two->path, pair->two->mode); 65 pair->two->sha1, pair->two->path, pair->two->mode);
66 if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) { 66 if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) {
67 if (S_ISGITLINK(pair->one->mode)) 67 if (S_ISGITLINK(pair->one->mode))
68 print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); 68 print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52);
69 if (S_ISGITLINK(pair->two->mode)) 69 if (S_ISGITLINK(pair->two->mode))
70 print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); 70 print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52);
71 return; 71 return;
72 } 72 }
73 if (cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size, 73 if (cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size,
74 &new_size, &binary, print_line)) 74 &new_size, &binary, 0, print_line))
75 html("Error running diff"); 75 html("Error running diff");
76 if (binary) 76 if (binary)
77 html("Binary files differ\n"); 77 html("Binary files differ\n");
78} 78}
79 79
80void cgit_print_patch(char *hex, const char *prefix) 80void cgit_print_patch(char *hex, const char *prefix)
81{ 81{
82 struct commit *commit; 82 struct commit *commit;
83 struct commitinfo *info; 83 struct commitinfo *info;
84 unsigned char sha1[20], old_sha1[20]; 84 unsigned char sha1[20], old_sha1[20];
85 char *patchname; 85 char *patchname;
86 86
87 if (!hex) 87 if (!hex)
88 hex = ctx.qry.head; 88 hex = ctx.qry.head;
89 89
90 if (get_sha1(hex, sha1)) { 90 if (get_sha1(hex, sha1)) {
91 cgit_print_error(fmt("Bad object id: %s", hex)); 91 cgit_print_error(fmt("Bad object id: %s", hex));
92 return; 92 return;
93 } 93 }
94 commit = lookup_commit_reference(sha1); 94 commit = lookup_commit_reference(sha1);
95 if (!commit) { 95 if (!commit) {
96 cgit_print_error(fmt("Bad commit reference: %s", hex)); 96 cgit_print_error(fmt("Bad commit reference: %s", hex));
97 return; 97 return;
98 } 98 }
99 info = cgit_parse_commit(commit); 99 info = cgit_parse_commit(commit);
100 100
101 if (commit->parents && commit->parents->item) 101 if (commit->parents && commit->parents->item)
102 hashcpy(old_sha1, commit->parents->item->object.sha1); 102 hashcpy(old_sha1, commit->parents->item->object.sha1);
103 else 103 else
104 hashclr(old_sha1); 104 hashclr(old_sha1);
105 105
106 patchname = fmt("%s.patch", sha1_to_hex(sha1)); 106 patchname = fmt("%s.patch", sha1_to_hex(sha1));
107 ctx.page.mimetype = "text/plain"; 107 ctx.page.mimetype = "text/plain";
108 ctx.page.filename = patchname; 108 ctx.page.filename = patchname;
109 cgit_print_http_headers(&ctx); 109 cgit_print_http_headers(&ctx);
110 htmlf("From %s Mon Sep 17 00:00:00 2001\n", sha1_to_hex(sha1)); 110 htmlf("From %s Mon Sep 17 00:00:00 2001\n", sha1_to_hex(sha1));
111 htmlf("From: %s", info->author); 111 htmlf("From: %s", info->author);
112 if (!ctx.cfg.noplainemail) { 112 if (!ctx.cfg.noplainemail) {
113 htmlf(" %s", info->author_email); 113 htmlf(" %s", info->author_email);
114 } 114 }
115 html("\n"); 115 html("\n");
116 html("Date: "); 116 html("Date: ");
117 cgit_print_date(info->author_date, "%a, %d %b %Y %H:%M:%S %z%n", ctx.cfg.local_time); 117 cgit_print_date(info->author_date, "%a, %d %b %Y %H:%M:%S %z%n", ctx.cfg.local_time);
118 htmlf("Subject: %s\n\n", info->subject); 118 htmlf("Subject: %s\n\n", info->subject);
119 if (info->msg && *info->msg) { 119 if (info->msg && *info->msg) {
120 htmlf("%s", info->msg); 120 htmlf("%s", info->msg);
121 if (info->msg[strlen(info->msg) - 1] != '\n') 121 if (info->msg[strlen(info->msg) - 1] != '\n')
122 html("\n"); 122 html("\n");
123 } 123 }
124 html("---\n"); 124 html("---\n");
125 if (prefix) 125 if (prefix)
126 htmlf("(limited to '%s')\n\n", prefix); 126 htmlf("(limited to '%s')\n\n", prefix);
127 cgit_diff_tree(old_sha1, sha1, filepair_cb, prefix); 127 cgit_diff_tree(old_sha1, sha1, filepair_cb, prefix);
128 html("--\n"); 128 html("--\n");
129 htmlf("cgit %s\n", CGIT_VERSION); 129 htmlf("cgit %s\n", CGIT_VERSION);
130 cgit_free_commitinfo(info); 130 cgit_free_commitinfo(info);
131} 131}
diff --git a/ui-shared.c b/ui-shared.c
index e991799..c99bcec 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -1,884 +1,898 @@
1/* ui-shared.c: common web output functions 1/* ui-shared.c: common web output functions
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#include "cmd.h" 10#include "cmd.h"
11#include "html.h" 11#include "html.h"
12 12
13const char cgit_doctype[] = 13const char cgit_doctype[] =
14"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" 14"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
15" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; 15" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
16 16
17static char *http_date(time_t t) 17static char *http_date(time_t t)
18{ 18{
19 static char day[][4] = 19 static char day[][4] =
20 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; 20 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
21 static char month[][4] = 21 static char month[][4] =
22 {"Jan", "Feb", "Mar", "Apr", "May", "Jun", 22 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
23 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; 23 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
24 struct tm *tm = gmtime(&t); 24 struct tm *tm = gmtime(&t);
25 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], 25 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday],
26 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, 26 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year,
27 tm->tm_hour, tm->tm_min, tm->tm_sec); 27 tm->tm_hour, tm->tm_min, tm->tm_sec);
28} 28}
29 29
30void cgit_print_error(const char *msg) 30void cgit_print_error(const char *msg)
31{ 31{
32 html("<div class='error'>"); 32 html("<div class='error'>");
33 html_txt(msg); 33 html_txt(msg);
34 html("</div>\n"); 34 html("</div>\n");
35} 35}
36 36
37char *cgit_httpscheme() 37char *cgit_httpscheme()
38{ 38{
39 if (ctx.env.https && !strcmp(ctx.env.https, "on")) 39 if (ctx.env.https && !strcmp(ctx.env.https, "on"))
40 return "https://"; 40 return "https://";
41 else 41 else
42 return "http://"; 42 return "http://";
43} 43}
44 44
45char *cgit_hosturl() 45char *cgit_hosturl()
46{ 46{
47 if (ctx.env.http_host) 47 if (ctx.env.http_host)
48 return ctx.env.http_host; 48 return ctx.env.http_host;
49 if (!ctx.env.server_name) 49 if (!ctx.env.server_name)
50 return NULL; 50 return NULL;
51 if (!ctx.env.server_port || atoi(ctx.env.server_port) == 80) 51 if (!ctx.env.server_port || atoi(ctx.env.server_port) == 80)
52 return ctx.env.server_name; 52 return ctx.env.server_name;
53 return xstrdup(fmt("%s:%s", ctx.env.server_name, ctx.env.server_port)); 53 return xstrdup(fmt("%s:%s", ctx.env.server_name, ctx.env.server_port));
54} 54}
55 55
56char *cgit_rooturl() 56char *cgit_rooturl()
57{ 57{
58 if (ctx.cfg.virtual_root) 58 if (ctx.cfg.virtual_root)
59 return fmt("%s/", ctx.cfg.virtual_root); 59 return fmt("%s/", ctx.cfg.virtual_root);
60 else 60 else
61 return ctx.cfg.script_name; 61 return ctx.cfg.script_name;
62} 62}
63 63
64char *cgit_repourl(const char *reponame) 64char *cgit_repourl(const char *reponame)
65{ 65{
66 if (ctx.cfg.virtual_root) { 66 if (ctx.cfg.virtual_root) {
67 return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); 67 return fmt("%s/%s/", ctx.cfg.virtual_root, reponame);
68 } else { 68 } else {
69 return fmt("?r=%s", reponame); 69 return fmt("?r=%s", reponame);
70 } 70 }
71} 71}
72 72
73char *cgit_fileurl(const char *reponame, const char *pagename, 73char *cgit_fileurl(const char *reponame, const char *pagename,
74 const char *filename, const char *query) 74 const char *filename, const char *query)
75{ 75{
76 char *tmp; 76 char *tmp;
77 char *delim; 77 char *delim;
78 78
79 if (ctx.cfg.virtual_root) { 79 if (ctx.cfg.virtual_root) {
80 tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, 80 tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame,
81 pagename, (filename ? filename:"")); 81 pagename, (filename ? filename:""));
82 delim = "?"; 82 delim = "?";
83 } else { 83 } else {
84 tmp = fmt("?url=%s/%s/%s", reponame, pagename, 84 tmp = fmt("?url=%s/%s/%s", reponame, pagename,
85 (filename ? filename : "")); 85 (filename ? filename : ""));
86 delim = "&"; 86 delim = "&";
87 } 87 }
88 if (query) 88 if (query)
89 tmp = fmt("%s%s%s", tmp, delim, query); 89 tmp = fmt("%s%s%s", tmp, delim, query);
90 return tmp; 90 return tmp;
91} 91}
92 92
93char *cgit_pageurl(const char *reponame, const char *pagename, 93char *cgit_pageurl(const char *reponame, const char *pagename,
94 const char *query) 94 const char *query)
95{ 95{
96 return cgit_fileurl(reponame,pagename,0,query); 96 return cgit_fileurl(reponame,pagename,0,query);
97} 97}
98 98
99const char *cgit_repobasename(const char *reponame) 99const char *cgit_repobasename(const char *reponame)
100{ 100{
101 /* I assume we don't need to store more than one repo basename */ 101 /* I assume we don't need to store more than one repo basename */
102 static char rvbuf[1024]; 102 static char rvbuf[1024];
103 int p; 103 int p;
104 const char *rv; 104 const char *rv;
105 strncpy(rvbuf,reponame,sizeof(rvbuf)); 105 strncpy(rvbuf,reponame,sizeof(rvbuf));
106 if(rvbuf[sizeof(rvbuf)-1]) 106 if(rvbuf[sizeof(rvbuf)-1])
107 die("cgit_repobasename: truncated repository name '%s'", reponame); 107 die("cgit_repobasename: truncated repository name '%s'", reponame);
108 p = strlen(rvbuf)-1; 108 p = strlen(rvbuf)-1;
109 /* strip trailing slashes */ 109 /* strip trailing slashes */
110 while(p && rvbuf[p]=='/') rvbuf[p--]=0; 110 while(p && rvbuf[p]=='/') rvbuf[p--]=0;
111 /* strip trailing .git */ 111 /* strip trailing .git */
112 if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { 112 if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) {
113 p -= 3; rvbuf[p--] = 0; 113 p -= 3; rvbuf[p--] = 0;
114 } 114 }
115 /* strip more trailing slashes if any */ 115 /* strip more trailing slashes if any */
116 while( p && rvbuf[p]=='/') rvbuf[p--]=0; 116 while( p && rvbuf[p]=='/') rvbuf[p--]=0;
117 /* find last slash in the remaining string */ 117 /* find last slash in the remaining string */
118 rv = strrchr(rvbuf,'/'); 118 rv = strrchr(rvbuf,'/');
119 if(rv) 119 if(rv)
120 return ++rv; 120 return ++rv;
121 return rvbuf; 121 return rvbuf;
122} 122}
123 123
124char *cgit_currurl() 124char *cgit_currurl()
125{ 125{
126 if (!ctx.cfg.virtual_root) 126 if (!ctx.cfg.virtual_root)
127 return ctx.cfg.script_name; 127 return ctx.cfg.script_name;
128 else if (ctx.qry.page) 128 else if (ctx.qry.page)
129 return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); 129 return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page);
130 else if (ctx.qry.repo) 130 else if (ctx.qry.repo)
131 return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); 131 return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo);
132 else 132 else
133 return fmt("%s/", ctx.cfg.virtual_root); 133 return fmt("%s/", ctx.cfg.virtual_root);
134} 134}
135 135
136static void site_url(const char *page, const char *search, int ofs) 136static void site_url(const char *page, const char *search, int ofs)
137{ 137{
138 char *delim = "?"; 138 char *delim = "?";
139 139
140 if (ctx.cfg.virtual_root) { 140 if (ctx.cfg.virtual_root) {
141 html_attr(ctx.cfg.virtual_root); 141 html_attr(ctx.cfg.virtual_root);
142 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') 142 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
143 html("/"); 143 html("/");
144 } else 144 } else
145 html(ctx.cfg.script_name); 145 html(ctx.cfg.script_name);
146 146
147 if (page) { 147 if (page) {
148 htmlf("?p=%s", page); 148 htmlf("?p=%s", page);
149 delim = "&"; 149 delim = "&";
150 } 150 }
151 if (search) { 151 if (search) {
152 html(delim); 152 html(delim);
153 html("q="); 153 html("q=");
154 html_attr(search); 154 html_attr(search);
155 delim = "&"; 155 delim = "&";
156 } 156 }
157 if (ofs) { 157 if (ofs) {
158 html(delim); 158 html(delim);
159 htmlf("ofs=%d", ofs); 159 htmlf("ofs=%d", ofs);
160 } 160 }
161} 161}
162 162
163static void site_link(const char *page, const char *name, const char *title, 163static void site_link(const char *page, const char *name, const char *title,
164 const char *class, const char *search, int ofs) 164 const char *class, const char *search, int ofs)
165{ 165{
166 html("<a"); 166 html("<a");
167 if (title) { 167 if (title) {
168 html(" title='"); 168 html(" title='");
169 html_attr(title); 169 html_attr(title);
170 html("'"); 170 html("'");
171 } 171 }
172 if (class) { 172 if (class) {
173 html(" class='"); 173 html(" class='");
174 html_attr(class); 174 html_attr(class);
175 html("'"); 175 html("'");
176 } 176 }
177 html(" href='"); 177 html(" href='");
178 site_url(page, search, ofs); 178 site_url(page, search, ofs);
179 html("'>"); 179 html("'>");
180 html_txt(name); 180 html_txt(name);
181 html("</a>"); 181 html("</a>");
182} 182}
183 183
184void cgit_index_link(const char *name, const char *title, const char *class, 184void cgit_index_link(const char *name, const char *title, const char *class,
185 const char *pattern, int ofs) 185 const char *pattern, int ofs)
186{ 186{
187 site_link(NULL, name, title, class, pattern, ofs); 187 site_link(NULL, name, title, class, pattern, ofs);
188} 188}
189 189
190static char *repolink(const char *title, const char *class, const char *page, 190static char *repolink(const char *title, const char *class, const char *page,
191 const char *head, const char *path) 191 const char *head, const char *path)
192{ 192{
193 char *delim = "?"; 193 char *delim = "?";
194 194
195 html("<a"); 195 html("<a");
196 if (title) { 196 if (title) {
197 html(" title='"); 197 html(" title='");
198 html_attr(title); 198 html_attr(title);
199 html("'"); 199 html("'");
200 } 200 }
201 if (class) { 201 if (class) {
202 html(" class='"); 202 html(" class='");
203 html_attr(class); 203 html_attr(class);
204 html("'"); 204 html("'");
205 } 205 }
206 html(" href='"); 206 html(" href='");
207 if (ctx.cfg.virtual_root) { 207 if (ctx.cfg.virtual_root) {
208 html_url_path(ctx.cfg.virtual_root); 208 html_url_path(ctx.cfg.virtual_root);
209 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') 209 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
210 html("/"); 210 html("/");
211 html_url_path(ctx.repo->url); 211 html_url_path(ctx.repo->url);
212 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') 212 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
213 html("/"); 213 html("/");
214 if (page) { 214 if (page) {
215 html_url_path(page); 215 html_url_path(page);
216 html("/"); 216 html("/");
217 if (path) 217 if (path)
218 html_url_path(path); 218 html_url_path(path);
219 } 219 }
220 } else { 220 } else {
221 html(ctx.cfg.script_name); 221 html(ctx.cfg.script_name);
222 html("?url="); 222 html("?url=");
223 html_url_arg(ctx.repo->url); 223 html_url_arg(ctx.repo->url);
224 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') 224 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
225 html("/"); 225 html("/");
226 if (page) { 226 if (page) {
227 html_url_arg(page); 227 html_url_arg(page);
228 html("/"); 228 html("/");
229 if (path) 229 if (path)
230 html_url_arg(path); 230 html_url_arg(path);
231 } 231 }
232 delim = "&amp;"; 232 delim = "&amp;";
233 } 233 }
234 if (head && strcmp(head, ctx.repo->defbranch)) { 234 if (head && strcmp(head, ctx.repo->defbranch)) {
235 html(delim); 235 html(delim);
236 html("h="); 236 html("h=");
237 html_url_arg(head); 237 html_url_arg(head);
238 delim = "&amp;"; 238 delim = "&amp;";
239 } 239 }
240 return fmt("%s", delim); 240 return fmt("%s", delim);
241} 241}
242 242
243static void reporevlink(const char *page, const char *name, const char *title, 243static void reporevlink(const char *page, const char *name, const char *title,
244 const char *class, const char *head, const char *rev, 244 const char *class, const char *head, const char *rev,
245 const char *path) 245 const char *path)
246{ 246{
247 char *delim; 247 char *delim;
248 248
249 delim = repolink(title, class, page, head, path); 249 delim = repolink(title, class, page, head, path);
250 if (rev && ctx.qry.head != NULL && strcmp(rev, ctx.qry.head)) { 250 if (rev && ctx.qry.head != NULL && strcmp(rev, ctx.qry.head)) {
251 html(delim); 251 html(delim);
252 html("id="); 252 html("id=");
253 html_url_arg(rev); 253 html_url_arg(rev);
254 } 254 }
255 html("'>"); 255 html("'>");
256 html_txt(name); 256 html_txt(name);
257 html("</a>"); 257 html("</a>");
258} 258}
259 259
260void cgit_summary_link(const char *name, const char *title, const char *class, 260void cgit_summary_link(const char *name, const char *title, const char *class,
261 const char *head) 261 const char *head)
262{ 262{
263 reporevlink(NULL, name, title, class, head, NULL, NULL); 263 reporevlink(NULL, name, title, class, head, NULL, NULL);
264} 264}
265 265
266void cgit_tag_link(const char *name, const char *title, const char *class, 266void cgit_tag_link(const char *name, const char *title, const char *class,
267 const char *head, const char *rev) 267 const char *head, const char *rev)
268{ 268{
269 reporevlink("tag", name, title, class, head, rev, NULL); 269 reporevlink("tag", name, title, class, head, rev, NULL);
270} 270}
271 271
272void cgit_tree_link(const char *name, const char *title, const char *class, 272void cgit_tree_link(const char *name, const char *title, const char *class,
273 const char *head, const char *rev, const char *path) 273 const char *head, const char *rev, const char *path)
274{ 274{
275 reporevlink("tree", name, title, class, head, rev, path); 275 reporevlink("tree", name, title, class, head, rev, path);
276} 276}
277 277
278void cgit_plain_link(const char *name, const char *title, const char *class, 278void cgit_plain_link(const char *name, const char *title, const char *class,
279 const char *head, const char *rev, const char *path) 279 const char *head, const char *rev, const char *path)
280{ 280{
281 reporevlink("plain", name, title, class, head, rev, path); 281 reporevlink("plain", name, title, class, head, rev, path);
282} 282}
283 283
284void cgit_log_link(const char *name, const char *title, const char *class, 284void cgit_log_link(const char *name, const char *title, const char *class,
285 const char *head, const char *rev, const char *path, 285 const char *head, const char *rev, const char *path,
286 int ofs, const char *grep, const char *pattern, int showmsg) 286 int ofs, const char *grep, const char *pattern, int showmsg)
287{ 287{
288 char *delim; 288 char *delim;
289 289
290 delim = repolink(title, class, "log", head, path); 290 delim = repolink(title, class, "log", head, path);
291 if (rev && strcmp(rev, ctx.qry.head)) { 291 if (rev && strcmp(rev, ctx.qry.head)) {
292 html(delim); 292 html(delim);
293 html("id="); 293 html("id=");
294 html_url_arg(rev); 294 html_url_arg(rev);
295 delim = "&"; 295 delim = "&";
296 } 296 }
297 if (grep && pattern) { 297 if (grep && pattern) {
298 html(delim); 298 html(delim);
299 html("qt="); 299 html("qt=");
300 html_url_arg(grep); 300 html_url_arg(grep);
301 delim = "&"; 301 delim = "&";
302 html(delim); 302 html(delim);
303 html("q="); 303 html("q=");
304 html_url_arg(pattern); 304 html_url_arg(pattern);
305 } 305 }
306 if (ofs > 0) { 306 if (ofs > 0) {
307 html(delim); 307 html(delim);
308 html("ofs="); 308 html("ofs=");
309 htmlf("%d", ofs); 309 htmlf("%d", ofs);
310 delim = "&"; 310 delim = "&";
311 } 311 }
312 if (showmsg) { 312 if (showmsg) {
313 html(delim); 313 html(delim);
314 html("showmsg=1"); 314 html("showmsg=1");
315 } 315 }
316 html("'>"); 316 html("'>");
317 html_txt(name); 317 html_txt(name);
318 html("</a>"); 318 html("</a>");
319} 319}
320 320
321void cgit_commit_link(char *name, const char *title, const char *class, 321void cgit_commit_link(char *name, const char *title, const char *class,
322 const char *head, const char *rev, const char *path, 322 const char *head, const char *rev, const char *path,
323 int toggle_ssdiff) 323 int toggle_ssdiff)
324{ 324{
325 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { 325 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) {
326 name[ctx.cfg.max_msg_len] = '\0'; 326 name[ctx.cfg.max_msg_len] = '\0';
327 name[ctx.cfg.max_msg_len - 1] = '.'; 327 name[ctx.cfg.max_msg_len - 1] = '.';
328 name[ctx.cfg.max_msg_len - 2] = '.'; 328 name[ctx.cfg.max_msg_len - 2] = '.';
329 name[ctx.cfg.max_msg_len - 3] = '.'; 329 name[ctx.cfg.max_msg_len - 3] = '.';
330 } 330 }
331 331
332 char *delim; 332 char *delim;
333 333
334 delim = repolink(title, class, "commit", head, path); 334 delim = repolink(title, class, "commit", head, path);
335 if (rev && strcmp(rev, ctx.qry.head)) { 335 if (rev && strcmp(rev, ctx.qry.head)) {
336 html(delim); 336 html(delim);
337 html("id="); 337 html("id=");
338 html_url_arg(rev); 338 html_url_arg(rev);
339 delim = "&amp;"; 339 delim = "&amp;";
340 } 340 }
341 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) { 341 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) {
342 html(delim); 342 html(delim);
343 html("ss=1"); 343 html("ss=1");
344 delim = "&amp;";
345 }
346 if (ctx.qry.context > 0 && ctx.qry.context != 3) {
347 html(delim);
348 html("context=");
349 htmlf("%d", ctx.qry.context);
350 delim = "&amp;";
344 } 351 }
345 html("'>"); 352 html("'>");
346 html_txt(name); 353 html_txt(name);
347 html("</a>"); 354 html("</a>");
348} 355}
349 356
350void cgit_refs_link(const char *name, const char *title, const char *class, 357void cgit_refs_link(const char *name, const char *title, const char *class,
351 const char *head, const char *rev, const char *path) 358 const char *head, const char *rev, const char *path)
352{ 359{
353 reporevlink("refs", name, title, class, head, rev, path); 360 reporevlink("refs", name, title, class, head, rev, path);
354} 361}
355 362
356void cgit_snapshot_link(const char *name, const char *title, const char *class, 363void cgit_snapshot_link(const char *name, const char *title, const char *class,
357 const char *head, const char *rev, 364 const char *head, const char *rev,
358 const char *archivename) 365 const char *archivename)
359{ 366{
360 reporevlink("snapshot", name, title, class, head, rev, archivename); 367 reporevlink("snapshot", name, title, class, head, rev, archivename);
361} 368}
362 369
363void cgit_diff_link(const char *name, const char *title, const char *class, 370void cgit_diff_link(const char *name, const char *title, const char *class,
364 const char *head, const char *new_rev, const char *old_rev, 371 const char *head, const char *new_rev, const char *old_rev,
365 const char *path, int toggle_ssdiff) 372 const char *path, int toggle_ssdiff)
366{ 373{
367 char *delim; 374 char *delim;
368 375
369 delim = repolink(title, class, "diff", head, path); 376 delim = repolink(title, class, "diff", head, path);
370 if (new_rev && ctx.qry.head != NULL && strcmp(new_rev, ctx.qry.head)) { 377 if (new_rev && ctx.qry.head != NULL && strcmp(new_rev, ctx.qry.head)) {
371 html(delim); 378 html(delim);
372 html("id="); 379 html("id=");
373 html_url_arg(new_rev); 380 html_url_arg(new_rev);
374 delim = "&amp;"; 381 delim = "&amp;";
375 } 382 }
376 if (old_rev) { 383 if (old_rev) {
377 html(delim); 384 html(delim);
378 html("id2="); 385 html("id2=");
379 html_url_arg(old_rev); 386 html_url_arg(old_rev);
380 delim = "&amp;"; 387 delim = "&amp;";
381 } 388 }
382 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) { 389 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) {
383 html(delim); 390 html(delim);
384 html("ss=1"); 391 html("ss=1");
392 delim = "&amp;";
393 }
394 if (ctx.qry.context > 0 && ctx.qry.context != 3) {
395 html(delim);
396 html("context=");
397 htmlf("%d", ctx.qry.context);
398 delim = "&amp;";
385 } 399 }
386 html("'>"); 400 html("'>");
387 html_txt(name); 401 html_txt(name);
388 html("</a>"); 402 html("</a>");
389} 403}
390 404
391void cgit_patch_link(const char *name, const char *title, const char *class, 405void cgit_patch_link(const char *name, const char *title, const char *class,
392 const char *head, const char *rev, const char *path) 406 const char *head, const char *rev, const char *path)
393{ 407{
394 reporevlink("patch", name, title, class, head, rev, path); 408 reporevlink("patch", name, title, class, head, rev, path);
395} 409}
396 410
397void cgit_stats_link(const char *name, const char *title, const char *class, 411void cgit_stats_link(const char *name, const char *title, const char *class,
398 const char *head, const char *path) 412 const char *head, const char *path)
399{ 413{
400 reporevlink("stats", name, title, class, head, NULL, path); 414 reporevlink("stats", name, title, class, head, NULL, path);
401} 415}
402 416
403void cgit_self_link(char *name, const char *title, const char *class, 417void cgit_self_link(char *name, const char *title, const char *class,
404 struct cgit_context *ctx) 418 struct cgit_context *ctx)
405{ 419{
406 if (!strcmp(ctx->qry.page, "repolist")) 420 if (!strcmp(ctx->qry.page, "repolist"))
407 return cgit_index_link(name, title, class, ctx->qry.search, 421 return cgit_index_link(name, title, class, ctx->qry.search,
408 ctx->qry.ofs); 422 ctx->qry.ofs);
409 else if (!strcmp(ctx->qry.page, "summary")) 423 else if (!strcmp(ctx->qry.page, "summary"))
410 return cgit_summary_link(name, title, class, ctx->qry.head); 424 return cgit_summary_link(name, title, class, ctx->qry.head);
411 else if (!strcmp(ctx->qry.page, "tag")) 425 else if (!strcmp(ctx->qry.page, "tag"))
412 return cgit_tag_link(name, title, class, ctx->qry.head, 426 return cgit_tag_link(name, title, class, ctx->qry.head,
413 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL); 427 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL);
414 else if (!strcmp(ctx->qry.page, "tree")) 428 else if (!strcmp(ctx->qry.page, "tree"))
415 return cgit_tree_link(name, title, class, ctx->qry.head, 429 return cgit_tree_link(name, title, class, ctx->qry.head,
416 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 430 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
417 ctx->qry.path); 431 ctx->qry.path);
418 else if (!strcmp(ctx->qry.page, "plain")) 432 else if (!strcmp(ctx->qry.page, "plain"))
419 return cgit_plain_link(name, title, class, ctx->qry.head, 433 return cgit_plain_link(name, title, class, ctx->qry.head,
420 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 434 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
421 ctx->qry.path); 435 ctx->qry.path);
422 else if (!strcmp(ctx->qry.page, "log")) 436 else if (!strcmp(ctx->qry.page, "log"))
423 return cgit_log_link(name, title, class, ctx->qry.head, 437 return cgit_log_link(name, title, class, ctx->qry.head,
424 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 438 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
425 ctx->qry.path, ctx->qry.ofs, 439 ctx->qry.path, ctx->qry.ofs,
426 ctx->qry.grep, ctx->qry.search, 440 ctx->qry.grep, ctx->qry.search,
427 ctx->qry.showmsg); 441 ctx->qry.showmsg);
428 else if (!strcmp(ctx->qry.page, "commit")) 442 else if (!strcmp(ctx->qry.page, "commit"))
429 return cgit_commit_link(name, title, class, ctx->qry.head, 443 return cgit_commit_link(name, title, class, ctx->qry.head,
430 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 444 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
431 ctx->qry.path, 0); 445 ctx->qry.path, 0);
432 else if (!strcmp(ctx->qry.page, "patch")) 446 else if (!strcmp(ctx->qry.page, "patch"))
433 return cgit_patch_link(name, title, class, ctx->qry.head, 447 return cgit_patch_link(name, title, class, ctx->qry.head,
434 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 448 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
435 ctx->qry.path); 449 ctx->qry.path);
436 else if (!strcmp(ctx->qry.page, "refs")) 450 else if (!strcmp(ctx->qry.page, "refs"))
437 return cgit_refs_link(name, title, class, ctx->qry.head, 451 return cgit_refs_link(name, title, class, ctx->qry.head,
438 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 452 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
439 ctx->qry.path); 453 ctx->qry.path);
440 else if (!strcmp(ctx->qry.page, "snapshot")) 454 else if (!strcmp(ctx->qry.page, "snapshot"))
441 return cgit_snapshot_link(name, title, class, ctx->qry.head, 455 return cgit_snapshot_link(name, title, class, ctx->qry.head,
442 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL, 456 ctx->qry.has_sha1 ? ctx->qry.sha1 : NULL,
443 ctx->qry.path); 457 ctx->qry.path);
444 else if (!strcmp(ctx->qry.page, "diff")) 458 else if (!strcmp(ctx->qry.page, "diff"))
445 return cgit_diff_link(name, title, class, ctx->qry.head, 459 return cgit_diff_link(name, title, class, ctx->qry.head,
446 ctx->qry.sha1, ctx->qry.sha2, 460 ctx->qry.sha1, ctx->qry.sha2,
447 ctx->qry.path, 0); 461 ctx->qry.path, 0);
448 else if (!strcmp(ctx->qry.page, "stats")) 462 else if (!strcmp(ctx->qry.page, "stats"))
449 return cgit_stats_link(name, title, class, ctx->qry.head, 463 return cgit_stats_link(name, title, class, ctx->qry.head,
450 ctx->qry.path); 464 ctx->qry.path);
451 465
452 /* Don't known how to make link for this page */ 466 /* Don't known how to make link for this page */
453 repolink(title, class, ctx->qry.page, ctx->qry.head, ctx->qry.path); 467 repolink(title, class, ctx->qry.page, ctx->qry.head, ctx->qry.path);
454 html("><!-- cgit_self_link() doesn't know how to make link for page '"); 468 html("><!-- cgit_self_link() doesn't know how to make link for page '");
455 html_txt(ctx->qry.page); 469 html_txt(ctx->qry.page);
456 html("' -->"); 470 html("' -->");
457 html_txt(name); 471 html_txt(name);
458 html("</a>"); 472 html("</a>");
459} 473}
460 474
461void cgit_object_link(struct object *obj) 475void cgit_object_link(struct object *obj)
462{ 476{
463 char *page, *shortrev, *fullrev, *name; 477 char *page, *shortrev, *fullrev, *name;
464 478
465 fullrev = sha1_to_hex(obj->sha1); 479 fullrev = sha1_to_hex(obj->sha1);
466 shortrev = xstrdup(fullrev); 480 shortrev = xstrdup(fullrev);
467 shortrev[10] = '\0'; 481 shortrev[10] = '\0';
468 if (obj->type == OBJ_COMMIT) { 482 if (obj->type == OBJ_COMMIT) {
469 cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL, 483 cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL,
470 ctx.qry.head, fullrev, NULL, 0); 484 ctx.qry.head, fullrev, NULL, 0);
471 return; 485 return;
472 } else if (obj->type == OBJ_TREE) 486 } else if (obj->type == OBJ_TREE)
473 page = "tree"; 487 page = "tree";
474 else if (obj->type == OBJ_TAG) 488 else if (obj->type == OBJ_TAG)
475 page = "tag"; 489 page = "tag";
476 else 490 else
477 page = "blob"; 491 page = "blob";
478 name = fmt("%s %s...", typename(obj->type), shortrev); 492 name = fmt("%s %s...", typename(obj->type), shortrev);
479 reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL); 493 reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL);
480} 494}
481 495
482void cgit_print_date(time_t secs, const char *format, int local_time) 496void cgit_print_date(time_t secs, const char *format, int local_time)
483{ 497{
484 char buf[64]; 498 char buf[64];
485 struct tm *time; 499 struct tm *time;
486 500
487 if (!secs) 501 if (!secs)
488 return; 502 return;
489 if(local_time) 503 if(local_time)
490 time = localtime(&secs); 504 time = localtime(&secs);
491 else 505 else
492 time = gmtime(&secs); 506 time = gmtime(&secs);
493 strftime(buf, sizeof(buf)-1, format, time); 507 strftime(buf, sizeof(buf)-1, format, time);
494 html_txt(buf); 508 html_txt(buf);
495} 509}
496 510
497void cgit_print_age(time_t t, time_t max_relative, const char *format) 511void cgit_print_age(time_t t, time_t max_relative, const char *format)
498{ 512{
499 time_t now, secs; 513 time_t now, secs;
500 514
501 if (!t) 515 if (!t)
502 return; 516 return;
503 time(&now); 517 time(&now);
504 secs = now - t; 518 secs = now - t;
505 519
506 if (secs > max_relative && max_relative >= 0) { 520 if (secs > max_relative && max_relative >= 0) {
507 cgit_print_date(t, format, ctx.cfg.local_time); 521 cgit_print_date(t, format, ctx.cfg.local_time);
508 return; 522 return;
509 } 523 }
510 524
511 if (secs < TM_HOUR * 2) { 525 if (secs < TM_HOUR * 2) {
512 htmlf("<span class='age-mins'>%.0f min.</span>", 526 htmlf("<span class='age-mins'>%.0f min.</span>",
513 secs * 1.0 / TM_MIN); 527 secs * 1.0 / TM_MIN);
514 return; 528 return;
515 } 529 }
516 if (secs < TM_DAY * 2) { 530 if (secs < TM_DAY * 2) {
517 htmlf("<span class='age-hours'>%.0f hours</span>", 531 htmlf("<span class='age-hours'>%.0f hours</span>",
518 secs * 1.0 / TM_HOUR); 532 secs * 1.0 / TM_HOUR);
519 return; 533 return;
520 } 534 }
521 if (secs < TM_WEEK * 2) { 535 if (secs < TM_WEEK * 2) {
522 htmlf("<span class='age-days'>%.0f days</span>", 536 htmlf("<span class='age-days'>%.0f days</span>",
523 secs * 1.0 / TM_DAY); 537 secs * 1.0 / TM_DAY);
524 return; 538 return;
525 } 539 }
526 if (secs < TM_MONTH * 2) { 540 if (secs < TM_MONTH * 2) {
527 htmlf("<span class='age-weeks'>%.0f weeks</span>", 541 htmlf("<span class='age-weeks'>%.0f weeks</span>",
528 secs * 1.0 / TM_WEEK); 542 secs * 1.0 / TM_WEEK);
529 return; 543 return;
530 } 544 }
531 if (secs < TM_YEAR * 2) { 545 if (secs < TM_YEAR * 2) {
532 htmlf("<span class='age-months'>%.0f months</span>", 546 htmlf("<span class='age-months'>%.0f months</span>",
533 secs * 1.0 / TM_MONTH); 547 secs * 1.0 / TM_MONTH);
534 return; 548 return;
535 } 549 }
536 htmlf("<span class='age-years'>%.0f years</span>", 550 htmlf("<span class='age-years'>%.0f years</span>",
537 secs * 1.0 / TM_YEAR); 551 secs * 1.0 / TM_YEAR);
538} 552}
539 553
540void cgit_print_http_headers(struct cgit_context *ctx) 554void cgit_print_http_headers(struct cgit_context *ctx)
541{ 555{
542 if (ctx->env.no_http && !strcmp(ctx->env.no_http, "1")) 556 if (ctx->env.no_http && !strcmp(ctx->env.no_http, "1"))
543 return; 557 return;
544 558
545 if (ctx->page.status) 559 if (ctx->page.status)
546 htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg); 560 htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg);
547 if (ctx->page.mimetype && ctx->page.charset) 561 if (ctx->page.mimetype && ctx->page.charset)
548 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, 562 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
549 ctx->page.charset); 563 ctx->page.charset);
550 else if (ctx->page.mimetype) 564 else if (ctx->page.mimetype)
551 htmlf("Content-Type: %s\n", ctx->page.mimetype); 565 htmlf("Content-Type: %s\n", ctx->page.mimetype);
552 if (ctx->page.size) 566 if (ctx->page.size)
553 htmlf("Content-Length: %ld\n", ctx->page.size); 567 htmlf("Content-Length: %ld\n", ctx->page.size);
554 if (ctx->page.filename) 568 if (ctx->page.filename)
555 htmlf("Content-Disposition: inline; filename=\"%s\"\n", 569 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
556 ctx->page.filename); 570 ctx->page.filename);
557 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); 571 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
558 htmlf("Expires: %s\n", http_date(ctx->page.expires)); 572 htmlf("Expires: %s\n", http_date(ctx->page.expires));
559 if (ctx->page.etag) 573 if (ctx->page.etag)
560 htmlf("ETag: \"%s\"\n", ctx->page.etag); 574 htmlf("ETag: \"%s\"\n", ctx->page.etag);
561 html("\n"); 575 html("\n");
562 if (ctx->env.request_method && !strcmp(ctx->env.request_method, "HEAD")) 576 if (ctx->env.request_method && !strcmp(ctx->env.request_method, "HEAD"))
563 exit(0); 577 exit(0);
564} 578}
565 579
566void cgit_print_docstart(struct cgit_context *ctx) 580void cgit_print_docstart(struct cgit_context *ctx)
567{ 581{
568 if (ctx->cfg.embedded) { 582 if (ctx->cfg.embedded) {
569 if (ctx->cfg.header) 583 if (ctx->cfg.header)
570 html_include(ctx->cfg.header); 584 html_include(ctx->cfg.header);
571 return; 585 return;
572 } 586 }
573 587
574 char *host = cgit_hosturl(); 588 char *host = cgit_hosturl();
575 html(cgit_doctype); 589 html(cgit_doctype);
576 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); 590 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
577 html("<head>\n"); 591 html("<head>\n");
578 html("<title>"); 592 html("<title>");
579 html_txt(ctx->page.title); 593 html_txt(ctx->page.title);
580 html("</title>\n"); 594 html("</title>\n");
581 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 595 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
582 if (ctx->cfg.robots && *ctx->cfg.robots) 596 if (ctx->cfg.robots && *ctx->cfg.robots)
583 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); 597 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots);
584 html("<link rel='stylesheet' type='text/css' href='"); 598 html("<link rel='stylesheet' type='text/css' href='");
585 html_attr(ctx->cfg.css); 599 html_attr(ctx->cfg.css);
586 html("'/>\n"); 600 html("'/>\n");
587 if (ctx->cfg.favicon) { 601 if (ctx->cfg.favicon) {
588 html("<link rel='shortcut icon' href='"); 602 html("<link rel='shortcut icon' href='");
589 html_attr(ctx->cfg.favicon); 603 html_attr(ctx->cfg.favicon);
590 html("'/>\n"); 604 html("'/>\n");
591 } 605 }
592 if (host && ctx->repo) { 606 if (host && ctx->repo) {
593 html("<link rel='alternate' title='Atom feed' href='"); 607 html("<link rel='alternate' title='Atom feed' href='");
594 html(cgit_httpscheme()); 608 html(cgit_httpscheme());
595 html_attr(cgit_hosturl()); 609 html_attr(cgit_hosturl());
596 html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.vpath, 610 html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.vpath,
597 fmt("h=%s", ctx->qry.head))); 611 fmt("h=%s", ctx->qry.head)));
598 html("' type='application/atom+xml'/>\n"); 612 html("' type='application/atom+xml'/>\n");
599 } 613 }
600 if (ctx->cfg.head_include) 614 if (ctx->cfg.head_include)
601 html_include(ctx->cfg.head_include); 615 html_include(ctx->cfg.head_include);
602 html("</head>\n"); 616 html("</head>\n");
603 html("<body>\n"); 617 html("<body>\n");
604 if (ctx->cfg.header) 618 if (ctx->cfg.header)
605 html_include(ctx->cfg.header); 619 html_include(ctx->cfg.header);
606} 620}
607 621
608void cgit_print_docend() 622void cgit_print_docend()
609{ 623{
610 html("</div> <!-- class=content -->\n"); 624 html("</div> <!-- class=content -->\n");
611 if (ctx.cfg.embedded) { 625 if (ctx.cfg.embedded) {
612 html("</div> <!-- id=cgit -->\n"); 626 html("</div> <!-- id=cgit -->\n");
613 if (ctx.cfg.footer) 627 if (ctx.cfg.footer)
614 html_include(ctx.cfg.footer); 628 html_include(ctx.cfg.footer);
615 return; 629 return;
616 } 630 }
617 if (ctx.cfg.footer) 631 if (ctx.cfg.footer)
618 html_include(ctx.cfg.footer); 632 html_include(ctx.cfg.footer);
619 else { 633 else {
620 htmlf("<div class='footer'>generated by cgit %s at ", 634 htmlf("<div class='footer'>generated by cgit %s at ",
621 cgit_version); 635 cgit_version);
622 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); 636 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time);
623 html("</div>\n"); 637 html("</div>\n");
624 } 638 }
625 html("</div> <!-- id=cgit -->\n"); 639 html("</div> <!-- id=cgit -->\n");
626 html("</body>\n</html>\n"); 640 html("</body>\n</html>\n");
627} 641}
628 642
629int print_branch_option(const char *refname, const unsigned char *sha1, 643int print_branch_option(const char *refname, const unsigned char *sha1,
630 int flags, void *cb_data) 644 int flags, void *cb_data)
631{ 645{
632 char *name = (char *)refname; 646 char *name = (char *)refname;
633 html_option(name, name, ctx.qry.head); 647 html_option(name, name, ctx.qry.head);
634 return 0; 648 return 0;
635} 649}
636 650
637int print_archive_ref(const char *refname, const unsigned char *sha1, 651int print_archive_ref(const char *refname, const unsigned char *sha1,
638 int flags, void *cb_data) 652 int flags, void *cb_data)
639{ 653{
640 struct tag *tag; 654 struct tag *tag;
641 struct taginfo *info; 655 struct taginfo *info;
642 struct object *obj; 656 struct object *obj;
643 char buf[256], *url; 657 char buf[256], *url;
644 unsigned char fileid[20]; 658 unsigned char fileid[20];
645 int *header = (int *)cb_data; 659 int *header = (int *)cb_data;
646 660
647 if (prefixcmp(refname, "refs/archives")) 661 if (prefixcmp(refname, "refs/archives"))
648 return 0; 662 return 0;
649 strncpy(buf, refname+14, sizeof(buf)); 663 strncpy(buf, refname+14, sizeof(buf));
650 obj = parse_object(sha1); 664 obj = parse_object(sha1);
651 if (!obj) 665 if (!obj)
652 return 1; 666 return 1;
653 if (obj->type == OBJ_TAG) { 667 if (obj->type == OBJ_TAG) {
654 tag = lookup_tag(sha1); 668 tag = lookup_tag(sha1);
655 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 669 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
656 return 0; 670 return 0;
657 hashcpy(fileid, tag->tagged->sha1); 671 hashcpy(fileid, tag->tagged->sha1);
658 } else if (obj->type != OBJ_BLOB) { 672 } else if (obj->type != OBJ_BLOB) {
659 return 0; 673 return 0;
660 } else { 674 } else {
661 hashcpy(fileid, sha1); 675 hashcpy(fileid, sha1);
662 } 676 }
663 if (!*header) { 677 if (!*header) {
664 html("<h1>download</h1>\n"); 678 html("<h1>download</h1>\n");
665 *header = 1; 679 *header = 1;
666 } 680 }
667 url = cgit_pageurl(ctx.qry.repo, "blob", 681 url = cgit_pageurl(ctx.qry.repo, "blob",
668 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 682 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
669 buf)); 683 buf));
670 html_link_open(url, NULL, "menu"); 684 html_link_open(url, NULL, "menu");
671 html_txt(strlpart(buf, 20)); 685 html_txt(strlpart(buf, 20));
672 html_link_close(); 686 html_link_close();
673 return 0; 687 return 0;
674} 688}
675 689
676void cgit_add_hidden_formfields(int incl_head, int incl_search, 690void cgit_add_hidden_formfields(int incl_head, int incl_search,
677 const char *page) 691 const char *page)
678{ 692{
679 char *url; 693 char *url;
680 694
681 if (!ctx.cfg.virtual_root) { 695 if (!ctx.cfg.virtual_root) {
682 url = fmt("%s/%s", ctx.qry.repo, page); 696 url = fmt("%s/%s", ctx.qry.repo, page);
683 if (ctx.qry.vpath) 697 if (ctx.qry.vpath)
684 url = fmt("%s/%s", url, ctx.qry.vpath); 698 url = fmt("%s/%s", url, ctx.qry.vpath);
685 html_hidden("url", url); 699 html_hidden("url", url);
686 } 700 }
687 701
688 if (incl_head && ctx.qry.head && ctx.repo->defbranch && 702 if (incl_head && ctx.qry.head && ctx.repo->defbranch &&
689 strcmp(ctx.qry.head, ctx.repo->defbranch)) 703 strcmp(ctx.qry.head, ctx.repo->defbranch))
690 html_hidden("h", ctx.qry.head); 704 html_hidden("h", ctx.qry.head);
691 705
692 if (ctx.qry.sha1) 706 if (ctx.qry.sha1)
693 html_hidden("id", ctx.qry.sha1); 707 html_hidden("id", ctx.qry.sha1);
694 if (ctx.qry.sha2) 708 if (ctx.qry.sha2)
695 html_hidden("id2", ctx.qry.sha2); 709 html_hidden("id2", ctx.qry.sha2);
696 if (ctx.qry.showmsg) 710 if (ctx.qry.showmsg)
697 html_hidden("showmsg", "1"); 711 html_hidden("showmsg", "1");
698 712
699 if (incl_search) { 713 if (incl_search) {
700 if (ctx.qry.grep) 714 if (ctx.qry.grep)
701 html_hidden("qt", ctx.qry.grep); 715 html_hidden("qt", ctx.qry.grep);
702 if (ctx.qry.search) 716 if (ctx.qry.search)
703 html_hidden("q", ctx.qry.search); 717 html_hidden("q", ctx.qry.search);
704 } 718 }
705} 719}
706 720
707static const char *hc(struct cgit_context *ctx, const char *page) 721static const char *hc(struct cgit_context *ctx, const char *page)
708{ 722{
709 return strcmp(ctx->qry.page, page) ? NULL : "active"; 723 return strcmp(ctx->qry.page, page) ? NULL : "active";
710} 724}
711 725
712static void cgit_print_path_crumbs(struct cgit_context *ctx, char *path) 726static void cgit_print_path_crumbs(struct cgit_context *ctx, char *path)
713{ 727{
714 char *old_path = ctx->qry.path; 728 char *old_path = ctx->qry.path;
715 char *p = path, *q, *end = path + strlen(path); 729 char *p = path, *q, *end = path + strlen(path);
716 730
717 ctx->qry.path = NULL; 731 ctx->qry.path = NULL;
718 cgit_self_link("root", NULL, NULL, ctx); 732 cgit_self_link("root", NULL, NULL, ctx);
719 ctx->qry.path = p = path; 733 ctx->qry.path = p = path;
720 while (p < end) { 734 while (p < end) {
721 if (!(q = strchr(p, '/'))) 735 if (!(q = strchr(p, '/')))
722 q = end; 736 q = end;
723 *q = '\0'; 737 *q = '\0';
724 html_txt("/"); 738 html_txt("/");
725 cgit_self_link(p, NULL, NULL, ctx); 739 cgit_self_link(p, NULL, NULL, ctx);
726 if (q < end) 740 if (q < end)
727 *q = '/'; 741 *q = '/';
728 p = q + 1; 742 p = q + 1;
729 } 743 }
730 ctx->qry.path = old_path; 744 ctx->qry.path = old_path;
731} 745}
732 746
733static void print_header(struct cgit_context *ctx) 747static void print_header(struct cgit_context *ctx)
734{ 748{
735 html("<table id='header'>\n"); 749 html("<table id='header'>\n");
736 html("<tr>\n"); 750 html("<tr>\n");
737 751
738 if (ctx->cfg.logo && ctx->cfg.logo[0] != 0) { 752 if (ctx->cfg.logo && ctx->cfg.logo[0] != 0) {
739 html("<td class='logo' rowspan='2'><a href='"); 753 html("<td class='logo' rowspan='2'><a href='");
740 if (ctx->cfg.logo_link) 754 if (ctx->cfg.logo_link)
741 html_attr(ctx->cfg.logo_link); 755 html_attr(ctx->cfg.logo_link);
742 else 756 else
743 html_attr(cgit_rooturl()); 757 html_attr(cgit_rooturl());
744 html("'><img src='"); 758 html("'><img src='");
745 html_attr(ctx->cfg.logo); 759 html_attr(ctx->cfg.logo);
746 html("' alt='cgit logo'/></a></td>\n"); 760 html("' alt='cgit logo'/></a></td>\n");
747 } 761 }
748 762
749 html("<td class='main'>"); 763 html("<td class='main'>");
750 if (ctx->repo) { 764 if (ctx->repo) {
751 cgit_index_link("index", NULL, NULL, NULL, 0); 765 cgit_index_link("index", NULL, NULL, NULL, 0);
752 html(" : "); 766 html(" : ");
753 cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL); 767 cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL);
754 html("</td><td class='form'>"); 768 html("</td><td class='form'>");
755 html("<form method='get' action=''>\n"); 769 html("<form method='get' action=''>\n");
756 cgit_add_hidden_formfields(0, 1, ctx->qry.page); 770 cgit_add_hidden_formfields(0, 1, ctx->qry.page);
757 html("<select name='h' onchange='this.form.submit();'>\n"); 771 html("<select name='h' onchange='this.form.submit();'>\n");
758 for_each_branch_ref(print_branch_option, ctx->qry.head); 772 for_each_branch_ref(print_branch_option, ctx->qry.head);
759 html("</select> "); 773 html("</select> ");
760 html("<input type='submit' name='' value='switch'/>"); 774 html("<input type='submit' name='' value='switch'/>");
761 html("</form>"); 775 html("</form>");
762 } else 776 } else
763 html_txt(ctx->cfg.root_title); 777 html_txt(ctx->cfg.root_title);
764 html("</td></tr>\n"); 778 html("</td></tr>\n");
765 779
766 html("<tr><td class='sub'>"); 780 html("<tr><td class='sub'>");
767 if (ctx->repo) { 781 if (ctx->repo) {
768 html_txt(ctx->repo->desc); 782 html_txt(ctx->repo->desc);
769 html("</td><td class='sub right'>"); 783 html("</td><td class='sub right'>");
770 html_txt(ctx->repo->owner); 784 html_txt(ctx->repo->owner);
771 } else { 785 } else {
772 if (ctx->cfg.root_desc) 786 if (ctx->cfg.root_desc)
773 html_txt(ctx->cfg.root_desc); 787 html_txt(ctx->cfg.root_desc);
774 else if (ctx->cfg.index_info) 788 else if (ctx->cfg.index_info)
775 html_include(ctx->cfg.index_info); 789 html_include(ctx->cfg.index_info);
776 } 790 }
777 html("</td></tr></table>\n"); 791 html("</td></tr></table>\n");
778} 792}
779 793
780void cgit_print_pageheader(struct cgit_context *ctx) 794void cgit_print_pageheader(struct cgit_context *ctx)
781{ 795{
782 html("<div id='cgit'>"); 796 html("<div id='cgit'>");
783 if (!ctx->cfg.noheader) 797 if (!ctx->cfg.noheader)
784 print_header(ctx); 798 print_header(ctx);
785 799
786 html("<table class='tabs'><tr><td>\n"); 800 html("<table class='tabs'><tr><td>\n");
787 if (ctx->repo) { 801 if (ctx->repo) {
788 cgit_summary_link("summary", NULL, hc(ctx, "summary"), 802 cgit_summary_link("summary", NULL, hc(ctx, "summary"),
789 ctx->qry.head); 803 ctx->qry.head);
790 cgit_refs_link("refs", NULL, hc(ctx, "refs"), ctx->qry.head, 804 cgit_refs_link("refs", NULL, hc(ctx, "refs"), ctx->qry.head,
791 ctx->qry.sha1, NULL); 805 ctx->qry.sha1, NULL);
792 cgit_log_link("log", NULL, hc(ctx, "log"), ctx->qry.head, 806 cgit_log_link("log", NULL, hc(ctx, "log"), ctx->qry.head,
793 NULL, ctx->qry.vpath, 0, NULL, NULL, 807 NULL, ctx->qry.vpath, 0, NULL, NULL,
794 ctx->qry.showmsg); 808 ctx->qry.showmsg);
795 cgit_tree_link("tree", NULL, hc(ctx, "tree"), ctx->qry.head, 809 cgit_tree_link("tree", NULL, hc(ctx, "tree"), ctx->qry.head,
796 ctx->qry.sha1, ctx->qry.vpath); 810 ctx->qry.sha1, ctx->qry.vpath);
797 cgit_commit_link("commit", NULL, hc(ctx, "commit"), 811 cgit_commit_link("commit", NULL, hc(ctx, "commit"),
798 ctx->qry.head, ctx->qry.sha1, ctx->qry.vpath, 0); 812 ctx->qry.head, ctx->qry.sha1, ctx->qry.vpath, 0);
799 cgit_diff_link("diff", NULL, hc(ctx, "diff"), ctx->qry.head, 813 cgit_diff_link("diff", NULL, hc(ctx, "diff"), ctx->qry.head,
800 ctx->qry.sha1, ctx->qry.sha2, ctx->qry.vpath, 0); 814 ctx->qry.sha1, ctx->qry.sha2, ctx->qry.vpath, 0);
801 if (ctx->repo->max_stats) 815 if (ctx->repo->max_stats)
802 cgit_stats_link("stats", NULL, hc(ctx, "stats"), 816 cgit_stats_link("stats", NULL, hc(ctx, "stats"),
803 ctx->qry.head, ctx->qry.vpath); 817 ctx->qry.head, ctx->qry.vpath);
804 if (ctx->repo->readme) 818 if (ctx->repo->readme)
805 reporevlink("about", "about", NULL, 819 reporevlink("about", "about", NULL,
806 hc(ctx, "about"), ctx->qry.head, NULL, 820 hc(ctx, "about"), ctx->qry.head, NULL,
807 NULL); 821 NULL);
808 html("</td><td class='form'>"); 822 html("</td><td class='form'>");
809 html("<form class='right' method='get' action='"); 823 html("<form class='right' method='get' action='");
810 if (ctx->cfg.virtual_root) 824 if (ctx->cfg.virtual_root)
811 html_url_path(cgit_fileurl(ctx->qry.repo, "log", 825 html_url_path(cgit_fileurl(ctx->qry.repo, "log",
812 ctx->qry.vpath, NULL)); 826 ctx->qry.vpath, NULL));
813 html("'>\n"); 827 html("'>\n");
814 cgit_add_hidden_formfields(1, 0, "log"); 828 cgit_add_hidden_formfields(1, 0, "log");
815 html("<select name='qt'>\n"); 829 html("<select name='qt'>\n");
816 html_option("grep", "log msg", ctx->qry.grep); 830 html_option("grep", "log msg", ctx->qry.grep);
817 html_option("author", "author", ctx->qry.grep); 831 html_option("author", "author", ctx->qry.grep);
818 html_option("committer", "committer", ctx->qry.grep); 832 html_option("committer", "committer", ctx->qry.grep);
819 html("</select>\n"); 833 html("</select>\n");
820 html("<input class='txt' type='text' size='10' name='q' value='"); 834 html("<input class='txt' type='text' size='10' name='q' value='");
821 html_attr(ctx->qry.search); 835 html_attr(ctx->qry.search);
822 html("'/>\n"); 836 html("'/>\n");
823 html("<input type='submit' value='search'/>\n"); 837 html("<input type='submit' value='search'/>\n");
824 html("</form>\n"); 838 html("</form>\n");
825 } else { 839 } else {
826 site_link(NULL, "index", NULL, hc(ctx, "repolist"), NULL, 0); 840 site_link(NULL, "index", NULL, hc(ctx, "repolist"), NULL, 0);
827 if (ctx->cfg.root_readme) 841 if (ctx->cfg.root_readme)
828 site_link("about", "about", NULL, hc(ctx, "about"), 842 site_link("about", "about", NULL, hc(ctx, "about"),
829 NULL, 0); 843 NULL, 0);
830 html("</td><td class='form'>"); 844 html("</td><td class='form'>");
831 html("<form method='get' action='"); 845 html("<form method='get' action='");
832 html_attr(cgit_rooturl()); 846 html_attr(cgit_rooturl());
833 html("'>\n"); 847 html("'>\n");
834 html("<input type='text' name='q' size='10' value='"); 848 html("<input type='text' name='q' size='10' value='");
835 html_attr(ctx->qry.search); 849 html_attr(ctx->qry.search);
836 html("'/>\n"); 850 html("'/>\n");
837 html("<input type='submit' value='search'/>\n"); 851 html("<input type='submit' value='search'/>\n");
838 html("</form>"); 852 html("</form>");
839 } 853 }
840 html("</td></tr></table>\n"); 854 html("</td></tr></table>\n");
841 if (ctx->qry.vpath) { 855 if (ctx->qry.vpath) {
842 html("<div class='path'>"); 856 html("<div class='path'>");
843 html("path: "); 857 html("path: ");
844 cgit_print_path_crumbs(ctx, ctx->qry.vpath); 858 cgit_print_path_crumbs(ctx, ctx->qry.vpath);
845 html("</div>"); 859 html("</div>");
846 } 860 }
847 html("<div class='content'>"); 861 html("<div class='content'>");
848} 862}
849 863
850void cgit_print_filemode(unsigned short mode) 864void cgit_print_filemode(unsigned short mode)
851{ 865{
852 if (S_ISDIR(mode)) 866 if (S_ISDIR(mode))
853 html("d"); 867 html("d");
854 else if (S_ISLNK(mode)) 868 else if (S_ISLNK(mode))
855 html("l"); 869 html("l");
856 else if (S_ISGITLINK(mode)) 870 else if (S_ISGITLINK(mode))
857 html("m"); 871 html("m");
858 else 872 else
859 html("-"); 873 html("-");
860 html_fileperm(mode >> 6); 874 html_fileperm(mode >> 6);
861 html_fileperm(mode >> 3); 875 html_fileperm(mode >> 3);
862 html_fileperm(mode); 876 html_fileperm(mode);
863} 877}
864 878
865void cgit_print_snapshot_links(const char *repo, const char *head, 879void cgit_print_snapshot_links(const char *repo, const char *head,
866 const char *hex, int snapshots) 880 const char *hex, int snapshots)
867{ 881{
868 const struct cgit_snapshot_format* f; 882 const struct cgit_snapshot_format* f;
869 char *prefix; 883 char *prefix;
870 char *filename; 884 char *filename;
871 unsigned char sha1[20]; 885 unsigned char sha1[20];
872 886
873 if (get_sha1(fmt("refs/tags/%s", hex), sha1) == 0 && 887 if (get_sha1(fmt("refs/tags/%s", hex), sha1) == 0 &&
874 (hex[0] == 'v' || hex[0] == 'V') && isdigit(hex[1])) 888 (hex[0] == 'v' || hex[0] == 'V') && isdigit(hex[1]))
875 hex++; 889 hex++;
876 prefix = xstrdup(fmt("%s-%s", cgit_repobasename(repo), hex)); 890 prefix = xstrdup(fmt("%s-%s", cgit_repobasename(repo), hex));
877 for (f = cgit_snapshot_formats; f->suffix; f++) { 891 for (f = cgit_snapshot_formats; f->suffix; f++) {
878 if (!(snapshots & f->bit)) 892 if (!(snapshots & f->bit))
879 continue; 893 continue;
880 filename = fmt("%s%s", prefix, f->suffix); 894 filename = fmt("%s%s", prefix, f->suffix);
881 cgit_snapshot_link(filename, NULL, NULL, NULL, NULL, filename); 895 cgit_snapshot_link(filename, NULL, NULL, NULL, NULL, filename);
882 html("<br/>"); 896 html("<br/>");
883 } 897 }
884} 898}