-rw-r--r-- | cgit.c | 16 | ||||
-rw-r--r-- | cgit.h | 2 | ||||
-rw-r--r-- | cmd.c | 9 | ||||
-rw-r--r-- | ui-repolist.c | 15 | ||||
-rw-r--r-- | ui-repolist.h | 1 | ||||
-rw-r--r-- | ui-shared.c | 58 | ||||
-rw-r--r-- | ui-summary.c | 14 | ||||
-rw-r--r-- | ui-summary.h | 1 |
8 files changed, 100 insertions, 16 deletions
@@ -1,69 +1,73 @@ | |||
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 | 15 | ||
16 | const char *cgit_version = CGIT_VERSION; | 16 | const char *cgit_version = CGIT_VERSION; |
17 | 17 | ||
18 | void config_cb(const char *name, const char *value) | 18 | void config_cb(const char *name, const char *value) |
19 | { | 19 | { |
20 | if (!strcmp(name, "root-title")) | 20 | if (!strcmp(name, "root-title")) |
21 | ctx.cfg.root_title = xstrdup(value); | 21 | ctx.cfg.root_title = xstrdup(value); |
22 | else if (!strcmp(name, "root-desc")) | ||
23 | ctx.cfg.root_desc = xstrdup(value); | ||
24 | else if (!strcmp(name, "root-readme")) | ||
25 | ctx.cfg.root_readme = xstrdup(value); | ||
22 | else if (!strcmp(name, "css")) | 26 | else if (!strcmp(name, "css")) |
23 | ctx.cfg.css = xstrdup(value); | 27 | ctx.cfg.css = xstrdup(value); |
24 | else if (!strcmp(name, "logo")) | 28 | else if (!strcmp(name, "logo")) |
25 | ctx.cfg.logo = xstrdup(value); | 29 | ctx.cfg.logo = xstrdup(value); |
26 | else if (!strcmp(name, "index-header")) | 30 | else if (!strcmp(name, "index-header")) |
27 | ctx.cfg.index_header = xstrdup(value); | 31 | ctx.cfg.index_header = xstrdup(value); |
28 | else if (!strcmp(name, "index-info")) | 32 | else if (!strcmp(name, "index-info")) |
29 | ctx.cfg.index_info = xstrdup(value); | 33 | ctx.cfg.index_info = xstrdup(value); |
30 | else if (!strcmp(name, "logo-link")) | 34 | else if (!strcmp(name, "logo-link")) |
31 | ctx.cfg.logo_link = xstrdup(value); | 35 | ctx.cfg.logo_link = xstrdup(value); |
32 | else if (!strcmp(name, "module-link")) | 36 | else if (!strcmp(name, "module-link")) |
33 | ctx.cfg.module_link = xstrdup(value); | 37 | ctx.cfg.module_link = xstrdup(value); |
34 | else if (!strcmp(name, "virtual-root")) { | 38 | else if (!strcmp(name, "virtual-root")) { |
35 | ctx.cfg.virtual_root = trim_end(value, '/'); | 39 | ctx.cfg.virtual_root = trim_end(value, '/'); |
36 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) | 40 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
37 | ctx.cfg.virtual_root = ""; | 41 | ctx.cfg.virtual_root = ""; |
38 | } else if (!strcmp(name, "nocache")) | 42 | } else if (!strcmp(name, "nocache")) |
39 | ctx.cfg.nocache = atoi(value); | 43 | ctx.cfg.nocache = atoi(value); |
40 | else if (!strcmp(name, "snapshots")) | 44 | else if (!strcmp(name, "snapshots")) |
41 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); | 45 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
42 | else if (!strcmp(name, "enable-index-links")) | 46 | else if (!strcmp(name, "enable-index-links")) |
43 | ctx.cfg.enable_index_links = atoi(value); | 47 | ctx.cfg.enable_index_links = atoi(value); |
44 | else if (!strcmp(name, "enable-log-filecount")) | 48 | else if (!strcmp(name, "enable-log-filecount")) |
45 | ctx.cfg.enable_log_filecount = atoi(value); | 49 | ctx.cfg.enable_log_filecount = atoi(value); |
46 | else if (!strcmp(name, "enable-log-linecount")) | 50 | else if (!strcmp(name, "enable-log-linecount")) |
47 | ctx.cfg.enable_log_linecount = atoi(value); | 51 | ctx.cfg.enable_log_linecount = atoi(value); |
48 | else if (!strcmp(name, "cache-root")) | 52 | else if (!strcmp(name, "cache-root")) |
49 | ctx.cfg.cache_root = xstrdup(value); | 53 | ctx.cfg.cache_root = xstrdup(value); |
50 | else if (!strcmp(name, "cache-root-ttl")) | 54 | else if (!strcmp(name, "cache-root-ttl")) |
51 | ctx.cfg.cache_root_ttl = atoi(value); | 55 | ctx.cfg.cache_root_ttl = atoi(value); |
52 | else if (!strcmp(name, "cache-repo-ttl")) | 56 | else if (!strcmp(name, "cache-repo-ttl")) |
53 | ctx.cfg.cache_repo_ttl = atoi(value); | 57 | ctx.cfg.cache_repo_ttl = atoi(value); |
54 | else if (!strcmp(name, "cache-static-ttl")) | 58 | else if (!strcmp(name, "cache-static-ttl")) |
55 | ctx.cfg.cache_static_ttl = atoi(value); | 59 | ctx.cfg.cache_static_ttl = atoi(value); |
56 | else if (!strcmp(name, "cache-dynamic-ttl")) | 60 | else if (!strcmp(name, "cache-dynamic-ttl")) |
57 | ctx.cfg.cache_dynamic_ttl = atoi(value); | 61 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
58 | else if (!strcmp(name, "max-message-length")) | 62 | else if (!strcmp(name, "max-message-length")) |
59 | ctx.cfg.max_msg_len = atoi(value); | 63 | ctx.cfg.max_msg_len = atoi(value); |
60 | else if (!strcmp(name, "max-repodesc-length")) | 64 | else if (!strcmp(name, "max-repodesc-length")) |
61 | ctx.cfg.max_repodesc_len = atoi(value); | 65 | ctx.cfg.max_repodesc_len = atoi(value); |
62 | else if (!strcmp(name, "max-commit-count")) | 66 | else if (!strcmp(name, "max-commit-count")) |
63 | ctx.cfg.max_commit_count = atoi(value); | 67 | ctx.cfg.max_commit_count = atoi(value); |
64 | else if (!strcmp(name, "summary-log")) | 68 | else if (!strcmp(name, "summary-log")) |
65 | ctx.cfg.summary_log = atoi(value); | 69 | ctx.cfg.summary_log = atoi(value); |
66 | else if (!strcmp(name, "summary-branches")) | 70 | else if (!strcmp(name, "summary-branches")) |
67 | ctx.cfg.summary_branches = atoi(value); | 71 | ctx.cfg.summary_branches = atoi(value); |
68 | else if (!strcmp(name, "summary-tags")) | 72 | else if (!strcmp(name, "summary-tags")) |
69 | ctx.cfg.summary_tags = atoi(value); | 73 | ctx.cfg.summary_tags = atoi(value); |
@@ -114,96 +118,97 @@ static void querystring_cb(const char *name, const char *value) | |||
114 | ctx.qry.repo = xstrdup(value); | 118 | ctx.qry.repo = xstrdup(value); |
115 | ctx.repo = cgit_get_repoinfo(value); | 119 | ctx.repo = cgit_get_repoinfo(value); |
116 | } else if (!strcmp(name, "p")) { | 120 | } else if (!strcmp(name, "p")) { |
117 | ctx.qry.page = xstrdup(value); | 121 | ctx.qry.page = xstrdup(value); |
118 | } else if (!strcmp(name, "url")) { | 122 | } else if (!strcmp(name, "url")) { |
119 | cgit_parse_url(value); | 123 | cgit_parse_url(value); |
120 | } else if (!strcmp(name, "qt")) { | 124 | } else if (!strcmp(name, "qt")) { |
121 | ctx.qry.grep = xstrdup(value); | 125 | ctx.qry.grep = xstrdup(value); |
122 | } else if (!strcmp(name, "q")) { | 126 | } else if (!strcmp(name, "q")) { |
123 | ctx.qry.search = xstrdup(value); | 127 | ctx.qry.search = xstrdup(value); |
124 | } else if (!strcmp(name, "h")) { | 128 | } else if (!strcmp(name, "h")) { |
125 | ctx.qry.head = xstrdup(value); | 129 | ctx.qry.head = xstrdup(value); |
126 | ctx.qry.has_symref = 1; | 130 | ctx.qry.has_symref = 1; |
127 | } else if (!strcmp(name, "id")) { | 131 | } else if (!strcmp(name, "id")) { |
128 | ctx.qry.sha1 = xstrdup(value); | 132 | ctx.qry.sha1 = xstrdup(value); |
129 | ctx.qry.has_sha1 = 1; | 133 | ctx.qry.has_sha1 = 1; |
130 | } else if (!strcmp(name, "id2")) { | 134 | } else if (!strcmp(name, "id2")) { |
131 | ctx.qry.sha2 = xstrdup(value); | 135 | ctx.qry.sha2 = xstrdup(value); |
132 | ctx.qry.has_sha1 = 1; | 136 | ctx.qry.has_sha1 = 1; |
133 | } else if (!strcmp(name, "ofs")) { | 137 | } else if (!strcmp(name, "ofs")) { |
134 | ctx.qry.ofs = atoi(value); | 138 | ctx.qry.ofs = atoi(value); |
135 | } else if (!strcmp(name, "path")) { | 139 | } else if (!strcmp(name, "path")) { |
136 | ctx.qry.path = trim_end(value, '/'); | 140 | ctx.qry.path = trim_end(value, '/'); |
137 | } else if (!strcmp(name, "name")) { | 141 | } else if (!strcmp(name, "name")) { |
138 | ctx.qry.name = xstrdup(value); | 142 | ctx.qry.name = xstrdup(value); |
139 | } | 143 | } |
140 | } | 144 | } |
141 | 145 | ||
142 | static void prepare_context(struct cgit_context *ctx) | 146 | static void prepare_context(struct cgit_context *ctx) |
143 | { | 147 | { |
144 | memset(ctx, 0, sizeof(ctx)); | 148 | memset(ctx, 0, sizeof(ctx)); |
145 | ctx->cfg.agefile = "info/web/last-modified"; | 149 | ctx->cfg.agefile = "info/web/last-modified"; |
146 | ctx->cfg.cache_dynamic_ttl = 5; | 150 | ctx->cfg.cache_dynamic_ttl = 5; |
147 | ctx->cfg.cache_max_create_time = 5; | 151 | ctx->cfg.cache_max_create_time = 5; |
148 | ctx->cfg.cache_repo_ttl = 5; | 152 | ctx->cfg.cache_repo_ttl = 5; |
149 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; | 153 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
150 | ctx->cfg.cache_root_ttl = 5; | 154 | ctx->cfg.cache_root_ttl = 5; |
151 | ctx->cfg.cache_static_ttl = -1; | 155 | ctx->cfg.cache_static_ttl = -1; |
152 | ctx->cfg.css = "/cgit.css"; | 156 | ctx->cfg.css = "/cgit.css"; |
153 | ctx->cfg.logo = "/git-logo.png"; | 157 | ctx->cfg.logo = "/git-logo.png"; |
154 | ctx->cfg.max_commit_count = 50; | 158 | ctx->cfg.max_commit_count = 50; |
155 | ctx->cfg.max_lock_attempts = 5; | 159 | ctx->cfg.max_lock_attempts = 5; |
156 | ctx->cfg.max_msg_len = 60; | 160 | ctx->cfg.max_msg_len = 60; |
157 | ctx->cfg.max_repodesc_len = 60; | 161 | ctx->cfg.max_repodesc_len = 60; |
158 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; | 162 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
159 | ctx->cfg.renamelimit = -1; | 163 | ctx->cfg.renamelimit = -1; |
160 | ctx->cfg.robots = "index, nofollow"; | 164 | ctx->cfg.robots = "index, nofollow"; |
161 | ctx->cfg.root_title = "Git repository browser"; | 165 | ctx->cfg.root_title = "Git repository browser"; |
166 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; | ||
162 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; | 167 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
163 | ctx->page.mimetype = "text/html"; | 168 | ctx->page.mimetype = "text/html"; |
164 | ctx->page.charset = PAGE_ENCODING; | 169 | ctx->page.charset = PAGE_ENCODING; |
165 | ctx->page.filename = NULL; | 170 | ctx->page.filename = NULL; |
166 | } | 171 | } |
167 | 172 | ||
168 | static int cgit_prepare_cache(struct cacheitem *item) | 173 | static int cgit_prepare_cache(struct cacheitem *item) |
169 | { | 174 | { |
170 | if (!ctx.repo && ctx.qry.repo) { | 175 | if (!ctx.repo && ctx.qry.repo) { |
171 | ctx.page.title = fmt("%s - %s", ctx.cfg.root_title, | 176 | ctx.page.title = fmt("%s - %s", ctx.cfg.root_title, |
172 | "Bad request"); | 177 | "Bad request"); |
173 | cgit_print_http_headers(&ctx); | 178 | cgit_print_http_headers(&ctx); |
174 | cgit_print_docstart(&ctx); | 179 | cgit_print_docstart(&ctx); |
175 | cgit_print_pageheader(&ctx); | 180 | cgit_print_pageheader(&ctx); |
176 | cgit_print_error(fmt("Unknown repo: %s", ctx.qry.repo)); | 181 | cgit_print_error(fmt("Unknown repo: %s", ctx.qry.repo)); |
177 | cgit_print_docend(); | 182 | cgit_print_docend(); |
178 | return 0; | 183 | return 0; |
179 | } | 184 | } |
180 | 185 | ||
181 | if (!ctx.repo) { | 186 | if (!ctx.repo) { |
182 | item->name = xstrdup(fmt("%s/index.%s.html", | 187 | item->name = xstrdup(fmt("%s/index.%s.html", |
183 | ctx.cfg.cache_root, | 188 | ctx.cfg.cache_root, |
184 | cache_safe_filename(ctx.qry.raw))); | 189 | cache_safe_filename(ctx.qry.raw))); |
185 | item->ttl = ctx.cfg.cache_root_ttl; | 190 | item->ttl = ctx.cfg.cache_root_ttl; |
186 | return 1; | 191 | return 1; |
187 | } | 192 | } |
188 | 193 | ||
189 | if (!ctx.qry.page) { | 194 | if (!ctx.qry.page) { |
190 | item->name = xstrdup(fmt("%s/%s/index.%s.html", ctx.cfg.cache_root, | 195 | item->name = xstrdup(fmt("%s/%s/index.%s.html", ctx.cfg.cache_root, |
191 | cache_safe_filename(ctx.repo->url), | 196 | cache_safe_filename(ctx.repo->url), |
192 | cache_safe_filename(ctx.qry.raw))); | 197 | cache_safe_filename(ctx.qry.raw))); |
193 | item->ttl = ctx.cfg.cache_repo_ttl; | 198 | item->ttl = ctx.cfg.cache_repo_ttl; |
194 | } else { | 199 | } else { |
195 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", ctx.cfg.cache_root, | 200 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", ctx.cfg.cache_root, |
196 | cache_safe_filename(ctx.repo->url), | 201 | cache_safe_filename(ctx.repo->url), |
197 | ctx.qry.page, | 202 | ctx.qry.page, |
198 | cache_safe_filename(ctx.qry.raw))); | 203 | cache_safe_filename(ctx.qry.raw))); |
199 | if (ctx.qry.has_symref) | 204 | if (ctx.qry.has_symref) |
200 | item->ttl = ctx.cfg.cache_dynamic_ttl; | 205 | item->ttl = ctx.cfg.cache_dynamic_ttl; |
201 | else if (ctx.qry.has_sha1) | 206 | else if (ctx.qry.has_sha1) |
202 | item->ttl = ctx.cfg.cache_static_ttl; | 207 | item->ttl = ctx.cfg.cache_static_ttl; |
203 | else | 208 | else |
204 | item->ttl = ctx.cfg.cache_repo_ttl; | 209 | item->ttl = ctx.cfg.cache_repo_ttl; |
205 | } | 210 | } |
206 | return 1; | 211 | return 1; |
207 | } | 212 | } |
208 | 213 | ||
209 | struct refmatch { | 214 | struct refmatch { |
@@ -259,97 +264,106 @@ static int prepare_repo_cmd(struct cgit_context *ctx) | |||
259 | cgit_print_docend(); | 264 | cgit_print_docend(); |
260 | return 1; | 265 | return 1; |
261 | } | 266 | } |
262 | ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc); | 267 | ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc); |
263 | 268 | ||
264 | if (!ctx->qry.head) { | 269 | if (!ctx->qry.head) { |
265 | ctx->qry.head = xstrdup(find_default_branch(ctx->repo)); | 270 | ctx->qry.head = xstrdup(find_default_branch(ctx->repo)); |
266 | ctx->repo->defbranch = ctx->qry.head; | 271 | ctx->repo->defbranch = ctx->qry.head; |
267 | } | 272 | } |
268 | 273 | ||
269 | if (!ctx->qry.head) { | 274 | if (!ctx->qry.head) { |
270 | cgit_print_http_headers(ctx); | 275 | cgit_print_http_headers(ctx); |
271 | cgit_print_docstart(ctx); | 276 | cgit_print_docstart(ctx); |
272 | cgit_print_pageheader(ctx); | 277 | cgit_print_pageheader(ctx); |
273 | cgit_print_error("Repository seems to be empty"); | 278 | cgit_print_error("Repository seems to be empty"); |
274 | cgit_print_docend(); | 279 | cgit_print_docend(); |
275 | return 1; | 280 | return 1; |
276 | } | 281 | } |
277 | 282 | ||
278 | if (get_sha1(ctx->qry.head, sha1)) { | 283 | if (get_sha1(ctx->qry.head, sha1)) { |
279 | tmp = xstrdup(ctx->qry.head); | 284 | tmp = xstrdup(ctx->qry.head); |
280 | ctx->qry.head = ctx->repo->defbranch; | 285 | ctx->qry.head = ctx->repo->defbranch; |
281 | cgit_print_http_headers(ctx); | 286 | cgit_print_http_headers(ctx); |
282 | cgit_print_docstart(ctx); | 287 | cgit_print_docstart(ctx); |
283 | cgit_print_pageheader(ctx); | 288 | cgit_print_pageheader(ctx); |
284 | cgit_print_error(fmt("Invalid branch: %s", tmp)); | 289 | cgit_print_error(fmt("Invalid branch: %s", tmp)); |
285 | cgit_print_docend(); | 290 | cgit_print_docend(); |
286 | return 1; | 291 | return 1; |
287 | } | 292 | } |
288 | return 0; | 293 | return 0; |
289 | } | 294 | } |
290 | 295 | ||
291 | static void process_request(struct cgit_context *ctx) | 296 | static void process_request(struct cgit_context *ctx) |
292 | { | 297 | { |
293 | struct cgit_cmd *cmd; | 298 | struct cgit_cmd *cmd; |
294 | 299 | ||
295 | cmd = cgit_get_cmd(ctx); | 300 | cmd = cgit_get_cmd(ctx); |
296 | if (!cmd) { | 301 | if (!cmd) { |
297 | ctx->page.title = "cgit error"; | 302 | ctx->page.title = "cgit error"; |
298 | ctx->repo = NULL; | 303 | ctx->repo = NULL; |
299 | cgit_print_http_headers(ctx); | 304 | cgit_print_http_headers(ctx); |
300 | cgit_print_docstart(ctx); | 305 | cgit_print_docstart(ctx); |
301 | cgit_print_pageheader(ctx); | 306 | cgit_print_pageheader(ctx); |
302 | cgit_print_error("Invalid request"); | 307 | cgit_print_error("Invalid request"); |
303 | cgit_print_docend(); | 308 | cgit_print_docend(); |
304 | return; | 309 | return; |
305 | } | 310 | } |
306 | 311 | ||
307 | if (cmd->want_repo && prepare_repo_cmd(ctx)) | 312 | if (cmd->want_repo && !ctx->repo) { |
313 | cgit_print_http_headers(ctx); | ||
314 | cgit_print_docstart(ctx); | ||
315 | cgit_print_pageheader(ctx); | ||
316 | cgit_print_error(fmt("No repository selected")); | ||
317 | cgit_print_docend(); | ||
318 | return; | ||
319 | } | ||
320 | |||
321 | if (ctx->repo && prepare_repo_cmd(ctx)) | ||
308 | return; | 322 | return; |
309 | 323 | ||
310 | if (cmd->want_layout) { | 324 | if (cmd->want_layout) { |
311 | cgit_print_http_headers(ctx); | 325 | cgit_print_http_headers(ctx); |
312 | cgit_print_docstart(ctx); | 326 | cgit_print_docstart(ctx); |
313 | cgit_print_pageheader(ctx); | 327 | cgit_print_pageheader(ctx); |
314 | } | 328 | } |
315 | 329 | ||
316 | cmd->fn(ctx); | 330 | cmd->fn(ctx); |
317 | 331 | ||
318 | if (cmd->want_layout) | 332 | if (cmd->want_layout) |
319 | cgit_print_docend(); | 333 | cgit_print_docend(); |
320 | } | 334 | } |
321 | 335 | ||
322 | static long ttl_seconds(long ttl) | 336 | static long ttl_seconds(long ttl) |
323 | { | 337 | { |
324 | if (ttl<0) | 338 | if (ttl<0) |
325 | return 60 * 60 * 24 * 365; | 339 | return 60 * 60 * 24 * 365; |
326 | else | 340 | else |
327 | return ttl * 60; | 341 | return ttl * 60; |
328 | } | 342 | } |
329 | 343 | ||
330 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) | 344 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
331 | { | 345 | { |
332 | int stdout2; | 346 | int stdout2; |
333 | 347 | ||
334 | if (use_cache) { | 348 | if (use_cache) { |
335 | stdout2 = chk_positive(dup(STDOUT_FILENO), | 349 | stdout2 = chk_positive(dup(STDOUT_FILENO), |
336 | "Preserving STDOUT"); | 350 | "Preserving STDOUT"); |
337 | chk_zero(close(STDOUT_FILENO), "Closing STDOUT"); | 351 | chk_zero(close(STDOUT_FILENO), "Closing STDOUT"); |
338 | chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)"); | 352 | chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)"); |
339 | } | 353 | } |
340 | 354 | ||
341 | ctx.page.modified = time(NULL); | 355 | ctx.page.modified = time(NULL); |
342 | ctx.page.expires = ctx.page.modified + ttl_seconds(item->ttl); | 356 | ctx.page.expires = ctx.page.modified + ttl_seconds(item->ttl); |
343 | process_request(&ctx); | 357 | process_request(&ctx); |
344 | 358 | ||
345 | if (use_cache) { | 359 | if (use_cache) { |
346 | chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); | 360 | chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); |
347 | chk_positive(dup2(stdout2, STDOUT_FILENO), | 361 | chk_positive(dup2(stdout2, STDOUT_FILENO), |
348 | "Restoring original STDOUT"); | 362 | "Restoring original STDOUT"); |
349 | chk_zero(close(stdout2), "Closing temporary STDOUT"); | 363 | chk_zero(close(stdout2), "Closing temporary STDOUT"); |
350 | } | 364 | } |
351 | } | 365 | } |
352 | 366 | ||
353 | static void cgit_check_cache(struct cacheitem *item) | 367 | static void cgit_check_cache(struct cacheitem *item) |
354 | { | 368 | { |
355 | int i = 0; | 369 | int i = 0; |
@@ -87,96 +87,98 @@ struct taginfo { | |||
87 | int tagger_date; | 87 | int tagger_date; |
88 | char *msg; | 88 | char *msg; |
89 | }; | 89 | }; |
90 | 90 | ||
91 | struct refinfo { | 91 | struct refinfo { |
92 | const char *refname; | 92 | const char *refname; |
93 | struct object *object; | 93 | struct object *object; |
94 | union { | 94 | union { |
95 | struct taginfo *tag; | 95 | struct taginfo *tag; |
96 | struct commitinfo *commit; | 96 | struct commitinfo *commit; |
97 | }; | 97 | }; |
98 | }; | 98 | }; |
99 | 99 | ||
100 | struct reflist { | 100 | struct reflist { |
101 | struct refinfo **refs; | 101 | struct refinfo **refs; |
102 | int alloc; | 102 | int alloc; |
103 | int count; | 103 | int count; |
104 | }; | 104 | }; |
105 | 105 | ||
106 | struct cgit_query { | 106 | struct cgit_query { |
107 | int has_symref; | 107 | int has_symref; |
108 | int has_sha1; | 108 | int has_sha1; |
109 | char *raw; | 109 | char *raw; |
110 | char *repo; | 110 | char *repo; |
111 | char *page; | 111 | char *page; |
112 | char *search; | 112 | char *search; |
113 | char *grep; | 113 | char *grep; |
114 | char *head; | 114 | char *head; |
115 | char *sha1; | 115 | char *sha1; |
116 | char *sha2; | 116 | char *sha2; |
117 | char *path; | 117 | char *path; |
118 | char *name; | 118 | char *name; |
119 | int ofs; | 119 | int ofs; |
120 | }; | 120 | }; |
121 | 121 | ||
122 | struct cgit_config { | 122 | struct cgit_config { |
123 | char *agefile; | 123 | char *agefile; |
124 | char *cache_root; | 124 | char *cache_root; |
125 | char *clone_prefix; | 125 | char *clone_prefix; |
126 | char *css; | 126 | char *css; |
127 | char *index_header; | 127 | char *index_header; |
128 | char *index_info; | 128 | char *index_info; |
129 | char *logo; | 129 | char *logo; |
130 | char *logo_link; | 130 | char *logo_link; |
131 | char *module_link; | 131 | char *module_link; |
132 | char *repo_group; | 132 | char *repo_group; |
133 | char *robots; | 133 | char *robots; |
134 | char *root_title; | 134 | char *root_title; |
135 | char *root_desc; | ||
136 | char *root_readme; | ||
135 | char *script_name; | 137 | char *script_name; |
136 | char *virtual_root; | 138 | char *virtual_root; |
137 | int cache_dynamic_ttl; | 139 | int cache_dynamic_ttl; |
138 | int cache_max_create_time; | 140 | int cache_max_create_time; |
139 | int cache_repo_ttl; | 141 | int cache_repo_ttl; |
140 | int cache_root_ttl; | 142 | int cache_root_ttl; |
141 | int cache_static_ttl; | 143 | int cache_static_ttl; |
142 | int enable_index_links; | 144 | int enable_index_links; |
143 | int enable_log_filecount; | 145 | int enable_log_filecount; |
144 | int enable_log_linecount; | 146 | int enable_log_linecount; |
145 | int max_commit_count; | 147 | int max_commit_count; |
146 | int max_lock_attempts; | 148 | int max_lock_attempts; |
147 | int max_msg_len; | 149 | int max_msg_len; |
148 | int max_repodesc_len; | 150 | int max_repodesc_len; |
149 | int nocache; | 151 | int nocache; |
150 | int renamelimit; | 152 | int renamelimit; |
151 | int snapshots; | 153 | int snapshots; |
152 | int summary_branches; | 154 | int summary_branches; |
153 | int summary_log; | 155 | int summary_log; |
154 | int summary_tags; | 156 | int summary_tags; |
155 | }; | 157 | }; |
156 | 158 | ||
157 | struct cgit_page { | 159 | struct cgit_page { |
158 | time_t modified; | 160 | time_t modified; |
159 | time_t expires; | 161 | time_t expires; |
160 | char *mimetype; | 162 | char *mimetype; |
161 | char *charset; | 163 | char *charset; |
162 | char *filename; | 164 | char *filename; |
163 | char *title; | 165 | char *title; |
164 | }; | 166 | }; |
165 | 167 | ||
166 | struct cgit_context { | 168 | struct cgit_context { |
167 | struct cgit_query qry; | 169 | struct cgit_query qry; |
168 | struct cgit_config cfg; | 170 | struct cgit_config cfg; |
169 | struct cgit_repo *repo; | 171 | struct cgit_repo *repo; |
170 | struct cgit_page page; | 172 | struct cgit_page page; |
171 | }; | 173 | }; |
172 | 174 | ||
173 | struct cgit_snapshot_format { | 175 | struct cgit_snapshot_format { |
174 | const char *suffix; | 176 | const char *suffix; |
175 | const char *mimetype; | 177 | const char *mimetype; |
176 | write_archive_fn_t write_func; | 178 | write_archive_fn_t write_func; |
177 | int bit; | 179 | int bit; |
178 | }; | 180 | }; |
179 | 181 | ||
180 | extern const char *cgit_version; | 182 | extern const char *cgit_version; |
181 | 183 | ||
182 | extern struct cgit_repolist cgit_repolist; | 184 | extern struct cgit_repolist cgit_repolist; |
@@ -1,112 +1,121 @@ | |||
1 | /* cmd.c: the cgit command dispatcher | 1 | /* cmd.c: the cgit command dispatcher |
2 | * | 2 | * |
3 | * Copyright (C) 2008 Lars Hjemli | 3 | * Copyright (C) 2008 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 "ui-blob.h" | 11 | #include "ui-blob.h" |
12 | #include "ui-commit.h" | 12 | #include "ui-commit.h" |
13 | #include "ui-diff.h" | 13 | #include "ui-diff.h" |
14 | #include "ui-log.h" | 14 | #include "ui-log.h" |
15 | #include "ui-patch.h" | 15 | #include "ui-patch.h" |
16 | #include "ui-refs.h" | 16 | #include "ui-refs.h" |
17 | #include "ui-repolist.h" | 17 | #include "ui-repolist.h" |
18 | #include "ui-snapshot.h" | 18 | #include "ui-snapshot.h" |
19 | #include "ui-summary.h" | 19 | #include "ui-summary.h" |
20 | #include "ui-tag.h" | 20 | #include "ui-tag.h" |
21 | #include "ui-tree.h" | 21 | #include "ui-tree.h" |
22 | 22 | ||
23 | static void about_fn(struct cgit_context *ctx) | ||
24 | { | ||
25 | if (ctx->repo) | ||
26 | cgit_print_repo_readme(); | ||
27 | else | ||
28 | cgit_print_site_readme(); | ||
29 | } | ||
30 | |||
23 | static void blob_fn(struct cgit_context *ctx) | 31 | static void blob_fn(struct cgit_context *ctx) |
24 | { | 32 | { |
25 | cgit_print_blob(ctx->qry.sha1, ctx->qry.path); | 33 | cgit_print_blob(ctx->qry.sha1, ctx->qry.path); |
26 | } | 34 | } |
27 | 35 | ||
28 | static void commit_fn(struct cgit_context *ctx) | 36 | static void commit_fn(struct cgit_context *ctx) |
29 | { | 37 | { |
30 | cgit_print_commit(ctx->qry.sha1); | 38 | cgit_print_commit(ctx->qry.sha1); |
31 | } | 39 | } |
32 | 40 | ||
33 | static void diff_fn(struct cgit_context *ctx) | 41 | static void diff_fn(struct cgit_context *ctx) |
34 | { | 42 | { |
35 | cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path); | 43 | cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path); |
36 | } | 44 | } |
37 | 45 | ||
38 | static void repolist_fn(struct cgit_context *ctx) | 46 | static void repolist_fn(struct cgit_context *ctx) |
39 | { | 47 | { |
40 | cgit_print_repolist(); | 48 | cgit_print_repolist(); |
41 | } | 49 | } |
42 | 50 | ||
43 | static void log_fn(struct cgit_context *ctx) | 51 | static void log_fn(struct cgit_context *ctx) |
44 | { | 52 | { |
45 | cgit_print_log(ctx->qry.sha1, ctx->qry.ofs, ctx->cfg.max_commit_count, | 53 | cgit_print_log(ctx->qry.sha1, ctx->qry.ofs, ctx->cfg.max_commit_count, |
46 | ctx->qry.grep, ctx->qry.search, ctx->qry.path, 1); | 54 | ctx->qry.grep, ctx->qry.search, ctx->qry.path, 1); |
47 | } | 55 | } |
48 | 56 | ||
49 | static void patch_fn(struct cgit_context *ctx) | 57 | static void patch_fn(struct cgit_context *ctx) |
50 | { | 58 | { |
51 | cgit_print_patch(ctx->qry.sha1); | 59 | cgit_print_patch(ctx->qry.sha1); |
52 | } | 60 | } |
53 | 61 | ||
54 | static void refs_fn(struct cgit_context *ctx) | 62 | static void refs_fn(struct cgit_context *ctx) |
55 | { | 63 | { |
56 | cgit_print_refs(); | 64 | cgit_print_refs(); |
57 | } | 65 | } |
58 | 66 | ||
59 | static void snapshot_fn(struct cgit_context *ctx) | 67 | static void snapshot_fn(struct cgit_context *ctx) |
60 | { | 68 | { |
61 | cgit_print_snapshot(ctx->qry.head, ctx->qry.sha1, | 69 | cgit_print_snapshot(ctx->qry.head, ctx->qry.sha1, |
62 | cgit_repobasename(ctx->repo->url), ctx->qry.path, | 70 | cgit_repobasename(ctx->repo->url), ctx->qry.path, |
63 | ctx->repo->snapshots); | 71 | ctx->repo->snapshots); |
64 | } | 72 | } |
65 | 73 | ||
66 | static void summary_fn(struct cgit_context *ctx) | 74 | static void summary_fn(struct cgit_context *ctx) |
67 | { | 75 | { |
68 | cgit_print_summary(); | 76 | cgit_print_summary(); |
69 | } | 77 | } |
70 | 78 | ||
71 | static void tag_fn(struct cgit_context *ctx) | 79 | static void tag_fn(struct cgit_context *ctx) |
72 | { | 80 | { |
73 | cgit_print_tag(ctx->qry.sha1); | 81 | cgit_print_tag(ctx->qry.sha1); |
74 | } | 82 | } |
75 | 83 | ||
76 | static void tree_fn(struct cgit_context *ctx) | 84 | static void tree_fn(struct cgit_context *ctx) |
77 | { | 85 | { |
78 | cgit_print_tree(ctx->qry.sha1, ctx->qry.path); | 86 | cgit_print_tree(ctx->qry.sha1, ctx->qry.path); |
79 | } | 87 | } |
80 | 88 | ||
81 | #define def_cmd(name, want_repo, want_layout) \ | 89 | #define def_cmd(name, want_repo, want_layout) \ |
82 | {#name, name##_fn, want_repo, want_layout} | 90 | {#name, name##_fn, want_repo, want_layout} |
83 | 91 | ||
84 | struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx) | 92 | struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx) |
85 | { | 93 | { |
86 | static struct cgit_cmd cmds[] = { | 94 | static struct cgit_cmd cmds[] = { |
95 | def_cmd(about, 0, 1), | ||
87 | def_cmd(blob, 1, 0), | 96 | def_cmd(blob, 1, 0), |
88 | def_cmd(commit, 1, 1), | 97 | def_cmd(commit, 1, 1), |
89 | def_cmd(diff, 1, 1), | 98 | def_cmd(diff, 1, 1), |
90 | def_cmd(log, 1, 1), | 99 | def_cmd(log, 1, 1), |
91 | def_cmd(patch, 1, 0), | 100 | def_cmd(patch, 1, 0), |
92 | def_cmd(refs, 1, 1), | 101 | def_cmd(refs, 1, 1), |
93 | def_cmd(repolist, 0, 0), | 102 | def_cmd(repolist, 0, 0), |
94 | def_cmd(snapshot, 1, 0), | 103 | def_cmd(snapshot, 1, 0), |
95 | def_cmd(summary, 1, 1), | 104 | def_cmd(summary, 1, 1), |
96 | def_cmd(tag, 1, 1), | 105 | def_cmd(tag, 1, 1), |
97 | def_cmd(tree, 1, 1), | 106 | def_cmd(tree, 1, 1), |
98 | }; | 107 | }; |
99 | int i; | 108 | int i; |
100 | 109 | ||
101 | if (ctx->qry.page == NULL) { | 110 | if (ctx->qry.page == NULL) { |
102 | if (ctx->repo) | 111 | if (ctx->repo) |
103 | ctx->qry.page = "summary"; | 112 | ctx->qry.page = "summary"; |
104 | else | 113 | else |
105 | ctx->qry.page = "repolist"; | 114 | ctx->qry.page = "repolist"; |
106 | } | 115 | } |
107 | 116 | ||
108 | for(i = 0; i < sizeof(cmds)/sizeof(*cmds); i++) | 117 | for(i = 0; i < sizeof(cmds)/sizeof(*cmds); i++) |
109 | if (!strcmp(ctx->qry.page, cmds[i].name)) | 118 | if (!strcmp(ctx->qry.page, cmds[i].name)) |
110 | return &cmds[i]; | 119 | return &cmds[i]; |
111 | return NULL; | 120 | return NULL; |
112 | } | 121 | } |
diff --git a/ui-repolist.c b/ui-repolist.c index 98009c0..3f78e28 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -16,126 +16,129 @@ time_t read_agefile(char *path) | |||
16 | { | 16 | { |
17 | FILE *f; | 17 | FILE *f; |
18 | static char buf[64], buf2[64]; | 18 | static char buf[64], buf2[64]; |
19 | 19 | ||
20 | if (!(f = fopen(path, "r"))) | 20 | if (!(f = fopen(path, "r"))) |
21 | return -1; | 21 | return -1; |
22 | fgets(buf, sizeof(buf), f); | 22 | fgets(buf, sizeof(buf), f); |
23 | fclose(f); | 23 | fclose(f); |
24 | if (parse_date(buf, buf2, sizeof(buf2))) | 24 | if (parse_date(buf, buf2, sizeof(buf2))) |
25 | return strtoul(buf2, NULL, 10); | 25 | return strtoul(buf2, NULL, 10); |
26 | else | 26 | else |
27 | return 0; | 27 | return 0; |
28 | } | 28 | } |
29 | 29 | ||
30 | static void print_modtime(struct cgit_repo *repo) | 30 | static void print_modtime(struct cgit_repo *repo) |
31 | { | 31 | { |
32 | char *path; | 32 | char *path; |
33 | struct stat s; | 33 | struct stat s; |
34 | 34 | ||
35 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); | 35 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); |
36 | if (stat(path, &s) == 0) { | 36 | if (stat(path, &s) == 0) { |
37 | cgit_print_age(read_agefile(path), -1, NULL); | 37 | cgit_print_age(read_agefile(path), -1, NULL); |
38 | return; | 38 | return; |
39 | } | 39 | } |
40 | 40 | ||
41 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); | 41 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); |
42 | if (stat(path, &s) != 0) | 42 | if (stat(path, &s) != 0) |
43 | return; | 43 | return; |
44 | cgit_print_age(s.st_mtime, -1, NULL); | 44 | cgit_print_age(s.st_mtime, -1, NULL); |
45 | } | 45 | } |
46 | 46 | ||
47 | int is_match(struct cgit_repo *repo) | 47 | int is_match(struct cgit_repo *repo) |
48 | { | 48 | { |
49 | if (!ctx.qry.search) | 49 | if (!ctx.qry.search) |
50 | return 1; | 50 | return 1; |
51 | if (repo->url && strcasestr(repo->url, ctx.qry.search)) | 51 | if (repo->url && strcasestr(repo->url, ctx.qry.search)) |
52 | return 1; | 52 | return 1; |
53 | if (repo->name && strcasestr(repo->name, ctx.qry.search)) | 53 | if (repo->name && strcasestr(repo->name, ctx.qry.search)) |
54 | return 1; | 54 | return 1; |
55 | if (repo->desc && strcasestr(repo->desc, ctx.qry.search)) | 55 | if (repo->desc && strcasestr(repo->desc, ctx.qry.search)) |
56 | return 1; | 56 | return 1; |
57 | if (repo->owner && strcasestr(repo->owner, ctx.qry.search)) | 57 | if (repo->owner && strcasestr(repo->owner, ctx.qry.search)) |
58 | return 1; | 58 | return 1; |
59 | return 0; | 59 | return 0; |
60 | } | 60 | } |
61 | 61 | ||
62 | void print_header(int columns) | 62 | void print_header(int columns) |
63 | { | 63 | { |
64 | if (ctx.cfg.index_header) { | ||
65 | htmlf("<tr class='nohover'><td colspan='%d' class='include-block'>", | ||
66 | columns); | ||
67 | html_include(ctx.cfg.index_header); | ||
68 | html("</td></tr>"); | ||
69 | } | ||
70 | html("<tr class='nohover'>" | 64 | html("<tr class='nohover'>" |
71 | "<th class='left'>Name</th>" | 65 | "<th class='left'>Name</th>" |
72 | "<th class='left'>Description</th>" | 66 | "<th class='left'>Description</th>" |
73 | "<th class='left'>Owner</th>" | 67 | "<th class='left'>Owner</th>" |
74 | "<th class='left'>Idle</th>"); | 68 | "<th class='left'>Idle</th>"); |
75 | if (ctx.cfg.enable_index_links) | 69 | if (ctx.cfg.enable_index_links) |
76 | html("<th class='left'>Links</th>"); | 70 | html("<th class='left'>Links</th>"); |
77 | html("</tr>\n"); | 71 | html("</tr>\n"); |
78 | } | 72 | } |
79 | 73 | ||
80 | void cgit_print_repolist() | 74 | void cgit_print_repolist() |
81 | { | 75 | { |
82 | int i, columns = 4, hits = 0, header = 0; | 76 | int i, columns = 4, hits = 0, header = 0; |
83 | char *last_group = NULL; | 77 | char *last_group = NULL; |
84 | 78 | ||
85 | if (ctx.cfg.enable_index_links) | 79 | if (ctx.cfg.enable_index_links) |
86 | columns++; | 80 | columns++; |
87 | 81 | ||
88 | ctx.page.title = ctx.cfg.root_title; | 82 | ctx.page.title = ctx.cfg.root_title; |
89 | cgit_print_http_headers(&ctx); | 83 | cgit_print_http_headers(&ctx); |
90 | cgit_print_docstart(&ctx); | 84 | cgit_print_docstart(&ctx); |
91 | cgit_print_pageheader(&ctx); | 85 | cgit_print_pageheader(&ctx); |
92 | 86 | ||
87 | if (ctx.cfg.index_header) | ||
88 | html_include(ctx.cfg.index_header); | ||
89 | |||
93 | html("<table summary='repository list' class='list nowrap'>"); | 90 | html("<table summary='repository list' class='list nowrap'>"); |
94 | for (i=0; i<cgit_repolist.count; i++) { | 91 | for (i=0; i<cgit_repolist.count; i++) { |
95 | ctx.repo = &cgit_repolist.repos[i]; | 92 | ctx.repo = &cgit_repolist.repos[i]; |
96 | if (!is_match(ctx.repo)) | 93 | if (!is_match(ctx.repo)) |
97 | continue; | 94 | continue; |
98 | if (!header++) | 95 | if (!header++) |
99 | print_header(columns); | 96 | print_header(columns); |
100 | hits++; | 97 | hits++; |
101 | if ((last_group == NULL && ctx.repo->group != NULL) || | 98 | if ((last_group == NULL && ctx.repo->group != NULL) || |
102 | (last_group != NULL && ctx.repo->group == NULL) || | 99 | (last_group != NULL && ctx.repo->group == NULL) || |
103 | (last_group != NULL && ctx.repo->group != NULL && | 100 | (last_group != NULL && ctx.repo->group != NULL && |
104 | strcmp(ctx.repo->group, last_group))) { | 101 | strcmp(ctx.repo->group, last_group))) { |
105 | htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", | 102 | htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", |
106 | columns); | 103 | columns); |
107 | html_txt(ctx.repo->group); | 104 | html_txt(ctx.repo->group); |
108 | html("</td></tr>"); | 105 | html("</td></tr>"); |
109 | last_group = ctx.repo->group; | 106 | last_group = ctx.repo->group; |
110 | } | 107 | } |
111 | htmlf("<tr><td class='%s'>", | 108 | htmlf("<tr><td class='%s'>", |
112 | ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); | 109 | ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); |
113 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); | 110 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); |
114 | html_txt(ctx.repo->name); | 111 | html_txt(ctx.repo->name); |
115 | html_link_close(); | 112 | html_link_close(); |
116 | html("</td><td>"); | 113 | html("</td><td>"); |
117 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); | 114 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); |
118 | html_ntxt(ctx.cfg.max_repodesc_len, ctx.repo->desc); | 115 | html_ntxt(ctx.cfg.max_repodesc_len, ctx.repo->desc); |
119 | html_link_close(); | 116 | html_link_close(); |
120 | html("</td><td>"); | 117 | html("</td><td>"); |
121 | html_txt(ctx.repo->owner); | 118 | html_txt(ctx.repo->owner); |
122 | html("</td><td>"); | 119 | html("</td><td>"); |
123 | print_modtime(ctx.repo); | 120 | print_modtime(ctx.repo); |
124 | html("</td>"); | 121 | html("</td>"); |
125 | if (ctx.cfg.enable_index_links) { | 122 | if (ctx.cfg.enable_index_links) { |
126 | html("<td>"); | 123 | html("<td>"); |
127 | html_link_open(cgit_repourl(ctx.repo->url), | 124 | html_link_open(cgit_repourl(ctx.repo->url), |
128 | NULL, "button"); | 125 | NULL, "button"); |
129 | html("summary</a>"); | 126 | html("summary</a>"); |
130 | cgit_log_link("log", NULL, "button", NULL, NULL, NULL, | 127 | cgit_log_link("log", NULL, "button", NULL, NULL, NULL, |
131 | 0, NULL, NULL); | 128 | 0, NULL, NULL); |
132 | cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); | 129 | cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); |
133 | html("</td>"); | 130 | html("</td>"); |
134 | } | 131 | } |
135 | html("</tr>\n"); | 132 | html("</tr>\n"); |
136 | } | 133 | } |
137 | html("</table>"); | 134 | html("</table>"); |
138 | if (!hits) | 135 | if (!hits) |
139 | cgit_print_error("No repositories found"); | 136 | cgit_print_error("No repositories found"); |
140 | cgit_print_docend(); | 137 | cgit_print_docend(); |
141 | } | 138 | } |
139 | |||
140 | void cgit_print_site_readme() | ||
141 | { | ||
142 | if (ctx.cfg.root_readme) | ||
143 | html_include(ctx.cfg.root_readme); | ||
144 | } | ||
diff --git a/ui-repolist.h b/ui-repolist.h index c23e5d2..5b1e542 100644 --- a/ui-repolist.h +++ b/ui-repolist.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef UI_REPOLIST_H | 1 | #ifndef UI_REPOLIST_H |
2 | #define UI_REPOLIST_H | 2 | #define UI_REPOLIST_H |
3 | 3 | ||
4 | extern void cgit_print_repolist(); | 4 | extern void cgit_print_repolist(); |
5 | extern void cgit_print_site_readme(); | ||
5 | 6 | ||
6 | #endif /* UI_REPOLIST_H */ | 7 | #endif /* UI_REPOLIST_H */ |
diff --git a/ui-shared.c b/ui-shared.c index 8a804c2..d08ede9 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -69,96 +69,139 @@ char *cgit_fileurl(const char *reponame, const char *pagename, | |||
69 | if (query) | 69 | if (query) |
70 | tmp = fmt("%s%s%s", tmp, delim, query); | 70 | tmp = fmt("%s%s%s", tmp, delim, query); |
71 | return tmp; | 71 | return tmp; |
72 | } | 72 | } |
73 | 73 | ||
74 | char *cgit_pageurl(const char *reponame, const char *pagename, | 74 | char *cgit_pageurl(const char *reponame, const char *pagename, |
75 | const char *query) | 75 | const char *query) |
76 | { | 76 | { |
77 | return cgit_fileurl(reponame,pagename,0,query); | 77 | return cgit_fileurl(reponame,pagename,0,query); |
78 | } | 78 | } |
79 | 79 | ||
80 | const char *cgit_repobasename(const char *reponame) | 80 | const char *cgit_repobasename(const char *reponame) |
81 | { | 81 | { |
82 | /* I assume we don't need to store more than one repo basename */ | 82 | /* I assume we don't need to store more than one repo basename */ |
83 | static char rvbuf[1024]; | 83 | static char rvbuf[1024]; |
84 | int p; | 84 | int p; |
85 | const char *rv; | 85 | const char *rv; |
86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); | 86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); |
87 | if(rvbuf[sizeof(rvbuf)-1]) | 87 | if(rvbuf[sizeof(rvbuf)-1]) |
88 | die("cgit_repobasename: truncated repository name '%s'", reponame); | 88 | die("cgit_repobasename: truncated repository name '%s'", reponame); |
89 | p = strlen(rvbuf)-1; | 89 | p = strlen(rvbuf)-1; |
90 | /* strip trailing slashes */ | 90 | /* strip trailing slashes */ |
91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; | 91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; |
92 | /* strip trailing .git */ | 92 | /* strip trailing .git */ |
93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { | 93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { |
94 | p -= 3; rvbuf[p--] = 0; | 94 | p -= 3; rvbuf[p--] = 0; |
95 | } | 95 | } |
96 | /* strip more trailing slashes if any */ | 96 | /* strip more trailing slashes if any */ |
97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; | 97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; |
98 | /* find last slash in the remaining string */ | 98 | /* find last slash in the remaining string */ |
99 | rv = strrchr(rvbuf,'/'); | 99 | rv = strrchr(rvbuf,'/'); |
100 | if(rv) | 100 | if(rv) |
101 | return ++rv; | 101 | return ++rv; |
102 | return rvbuf; | 102 | return rvbuf; |
103 | } | 103 | } |
104 | 104 | ||
105 | char *cgit_currurl() | 105 | char *cgit_currurl() |
106 | { | 106 | { |
107 | if (!ctx.cfg.virtual_root) | 107 | if (!ctx.cfg.virtual_root) |
108 | return ctx.cfg.script_name; | 108 | return ctx.cfg.script_name; |
109 | else if (ctx.qry.page) | 109 | else if (ctx.qry.page) |
110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); | 110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); |
111 | else if (ctx.qry.repo) | 111 | else if (ctx.qry.repo) |
112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); | 112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); |
113 | else | 113 | else |
114 | return fmt("%s/", ctx.cfg.virtual_root); | 114 | return fmt("%s/", ctx.cfg.virtual_root); |
115 | } | 115 | } |
116 | 116 | ||
117 | static void site_url(char *page, char *search) | ||
118 | { | ||
119 | char *delim = "?"; | ||
120 | |||
121 | if (ctx.cfg.virtual_root) { | ||
122 | html_attr(ctx.cfg.virtual_root); | ||
123 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | ||
124 | html("/"); | ||
125 | } else | ||
126 | html(ctx.cfg.script_name); | ||
127 | |||
128 | if (page) { | ||
129 | htmlf("?p=%s", page); | ||
130 | delim = "&"; | ||
131 | } | ||
132 | if (search) { | ||
133 | html(delim); | ||
134 | html("q="); | ||
135 | html_attr(search); | ||
136 | } | ||
137 | } | ||
138 | |||
139 | static void site_link(char *page, char *name, char *title, char *class, | ||
140 | char *search) | ||
141 | { | ||
142 | html("<a"); | ||
143 | if (title) { | ||
144 | html(" title='"); | ||
145 | html_attr(title); | ||
146 | html("'"); | ||
147 | } | ||
148 | if (class) { | ||
149 | html(" class='"); | ||
150 | html_attr(class); | ||
151 | html("'"); | ||
152 | } | ||
153 | html(" href='"); | ||
154 | site_url(page, search); | ||
155 | html("'>"); | ||
156 | html_txt(name); | ||
157 | html("</a>"); | ||
158 | } | ||
159 | |||
117 | static char *repolink(char *title, char *class, char *page, char *head, | 160 | static char *repolink(char *title, char *class, char *page, char *head, |
118 | char *path) | 161 | char *path) |
119 | { | 162 | { |
120 | char *delim = "?"; | 163 | char *delim = "?"; |
121 | 164 | ||
122 | html("<a"); | 165 | html("<a"); |
123 | if (title) { | 166 | if (title) { |
124 | html(" title='"); | 167 | html(" title='"); |
125 | html_attr(title); | 168 | html_attr(title); |
126 | html("'"); | 169 | html("'"); |
127 | } | 170 | } |
128 | if (class) { | 171 | if (class) { |
129 | html(" class='"); | 172 | html(" class='"); |
130 | html_attr(class); | 173 | html_attr(class); |
131 | html("'"); | 174 | html("'"); |
132 | } | 175 | } |
133 | html(" href='"); | 176 | html(" href='"); |
134 | if (ctx.cfg.virtual_root) { | 177 | if (ctx.cfg.virtual_root) { |
135 | html_attr(ctx.cfg.virtual_root); | 178 | html_attr(ctx.cfg.virtual_root); |
136 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 179 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
137 | html("/"); | 180 | html("/"); |
138 | html_attr(ctx.repo->url); | 181 | html_attr(ctx.repo->url); |
139 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 182 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
140 | html("/"); | 183 | html("/"); |
141 | if (page) { | 184 | if (page) { |
142 | html(page); | 185 | html(page); |
143 | html("/"); | 186 | html("/"); |
144 | if (path) | 187 | if (path) |
145 | html_attr(path); | 188 | html_attr(path); |
146 | } | 189 | } |
147 | } else { | 190 | } else { |
148 | html(ctx.cfg.script_name); | 191 | html(ctx.cfg.script_name); |
149 | html("?url="); | 192 | html("?url="); |
150 | html_attr(ctx.repo->url); | 193 | html_attr(ctx.repo->url); |
151 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 194 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
152 | html("/"); | 195 | html("/"); |
153 | if (page) { | 196 | if (page) { |
154 | html(page); | 197 | html(page); |
155 | html("/"); | 198 | html("/"); |
156 | if (path) | 199 | if (path) |
157 | html_attr(path); | 200 | html_attr(path); |
158 | } | 201 | } |
159 | delim = "&"; | 202 | delim = "&"; |
160 | } | 203 | } |
161 | if (head && strcmp(head, ctx.repo->defbranch)) { | 204 | if (head && strcmp(head, ctx.repo->defbranch)) { |
162 | html(delim); | 205 | html(delim); |
163 | html("h="); | 206 | html("h="); |
164 | html_attr(head); | 207 | html_attr(head); |
@@ -465,132 +508,139 @@ void add_hidden_formfields(int incl_head, int incl_search, char *page) | |||
465 | html_hidden("q", ctx.qry.search); | 508 | html_hidden("q", ctx.qry.search); |
466 | } | 509 | } |
467 | } | 510 | } |
468 | 511 | ||
469 | char *hc(struct cgit_cmd *cmd, const char *page) | 512 | char *hc(struct cgit_cmd *cmd, const char *page) |
470 | { | 513 | { |
471 | return (strcmp(cmd->name, page) ? NULL : "active"); | 514 | return (strcmp(cmd->name, page) ? NULL : "active"); |
472 | } | 515 | } |
473 | 516 | ||
474 | void cgit_print_pageheader(struct cgit_context *ctx) | 517 | void cgit_print_pageheader(struct cgit_context *ctx) |
475 | { | 518 | { |
476 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 519 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
477 | 520 | ||
478 | html("<table id='header'>\n"); | 521 | html("<table id='header'>\n"); |
479 | html("<tr>\n"); | 522 | html("<tr>\n"); |
480 | html("<td class='logo' rowspan='2'><a href='"); | 523 | html("<td class='logo' rowspan='2'><a href='"); |
481 | if (ctx->cfg.logo_link) | 524 | if (ctx->cfg.logo_link) |
482 | html_attr(ctx->cfg.logo_link); | 525 | html_attr(ctx->cfg.logo_link); |
483 | else | 526 | else |
484 | html_attr(cgit_rooturl()); | 527 | html_attr(cgit_rooturl()); |
485 | html("'><img src='"); | 528 | html("'><img src='"); |
486 | html_attr(ctx->cfg.logo); | 529 | html_attr(ctx->cfg.logo); |
487 | html("' alt='cgit logo'/></a></td>\n"); | 530 | html("' alt='cgit logo'/></a></td>\n"); |
488 | 531 | ||
489 | html("<td class='main'>"); | 532 | html("<td class='main'>"); |
490 | if (ctx->repo) { | 533 | if (ctx->repo) { |
491 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), | 534 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), |
492 | ctx->qry.head, NULL, NULL); | 535 | ctx->qry.head, NULL, NULL); |
493 | html(" : "); | 536 | html(" : "); |
494 | html_txt(ctx->qry.page); | 537 | html_txt(ctx->qry.page); |
495 | html("</td><td class='form'>"); | 538 | html("</td><td class='form'>"); |
496 | html("<form method='get' action=''>\n"); | 539 | html("<form method='get' action=''>\n"); |
497 | add_hidden_formfields(0, 1, ctx->qry.page); | 540 | add_hidden_formfields(0, 1, ctx->qry.page); |
498 | html("<select name='h' onchange='this.form.submit();'>\n"); | 541 | html("<select name='h' onchange='this.form.submit();'>\n"); |
499 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 542 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
500 | html("</select> "); | 543 | html("</select> "); |
501 | html("<input type='submit' name='' value='switch'/>"); | 544 | html("<input type='submit' name='' value='switch'/>"); |
502 | html("</form>"); | 545 | html("</form>"); |
503 | } else | 546 | } else |
504 | html_txt(ctx->cfg.root_title); | 547 | html_txt(ctx->cfg.root_title); |
505 | html("</td></tr>\n"); | 548 | html("</td></tr>\n"); |
506 | 549 | ||
507 | html("<tr><td class='sub'"); | 550 | html("<tr><td class='sub'"); |
508 | if (ctx->repo) { | 551 | if (ctx->repo) { |
509 | html(" colspan='2'>"); | 552 | html(" colspan='2'>"); |
510 | html_txt(ctx->repo->desc); | 553 | html_txt(ctx->repo->desc); |
511 | } else { | 554 | } else { |
512 | html(">"); | 555 | html(">"); |
513 | html_txt("a fast webinterface for the git dscm"); | 556 | if (ctx->cfg.root_desc) |
557 | html_txt(ctx->cfg.root_desc); | ||
558 | else if (ctx->cfg.index_info) | ||
559 | html_include(ctx->cfg.index_info); | ||
514 | } | 560 | } |
515 | html("</td></tr></table>\n"); | 561 | html("</td></tr></table>\n"); |
516 | 562 | ||
517 | html("<table class='tabs'><tr><td>\n"); | 563 | html("<table class='tabs'><tr><td>\n"); |
518 | if (ctx->repo) { | 564 | if (ctx->repo) { |
519 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 565 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), |
520 | ctx->qry.head, NULL, NULL); | 566 | ctx->qry.head, NULL, NULL); |
521 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 567 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
522 | ctx->qry.sha1, NULL); | 568 | ctx->qry.sha1, NULL); |
523 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 569 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
524 | NULL, NULL, 0, NULL, NULL); | 570 | NULL, NULL, 0, NULL, NULL); |
525 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 571 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
526 | ctx->qry.sha1, NULL); | 572 | ctx->qry.sha1, NULL); |
527 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 573 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
528 | ctx->qry.head, ctx->qry.sha1); | 574 | ctx->qry.head, ctx->qry.sha1); |
529 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 575 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
530 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 576 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
577 | if (ctx->repo->readme) | ||
578 | reporevlink("about", "about", NULL, | ||
579 | hc(cmd, "about"), ctx->qry.head, NULL, | ||
580 | NULL); | ||
531 | html("</td><td class='form'>"); | 581 | html("</td><td class='form'>"); |
532 | html("<form class='right' method='get' action='"); | 582 | html("<form class='right' method='get' action='"); |
533 | if (ctx->cfg.virtual_root) | 583 | if (ctx->cfg.virtual_root) |
534 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 584 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
535 | ctx->qry.path, NULL)); | 585 | ctx->qry.path, NULL)); |
536 | html("'>\n"); | 586 | html("'>\n"); |
537 | add_hidden_formfields(1, 0, "log"); | 587 | add_hidden_formfields(1, 0, "log"); |
538 | html("<select name='qt'>\n"); | 588 | html("<select name='qt'>\n"); |
539 | html_option("grep", "log msg", ctx->qry.grep); | 589 | html_option("grep", "log msg", ctx->qry.grep); |
540 | html_option("author", "author", ctx->qry.grep); | 590 | html_option("author", "author", ctx->qry.grep); |
541 | html_option("committer", "committer", ctx->qry.grep); | 591 | html_option("committer", "committer", ctx->qry.grep); |
542 | html("</select>\n"); | 592 | html("</select>\n"); |
543 | html("<input class='txt' type='text' size='10' name='q' value='"); | 593 | html("<input class='txt' type='text' size='10' name='q' value='"); |
544 | html_attr(ctx->qry.search); | 594 | html_attr(ctx->qry.search); |
545 | html("'/>\n"); | 595 | html("'/>\n"); |
546 | html("<input type='submit' value='search'/>\n"); | 596 | html("<input type='submit' value='search'/>\n"); |
547 | html("</form>\n"); | 597 | html("</form>\n"); |
548 | } else { | 598 | } else { |
549 | html("<a class='active' href='"); | 599 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL); |
550 | html_attr(cgit_rooturl()); | 600 | if (ctx->cfg.root_readme) |
551 | html("'>index</a>\n"); | 601 | site_link("about", "about", NULL, hc(cmd, "about"), NULL); |
552 | html("</td><td class='form'>"); | 602 | html("</td><td class='form'>"); |
553 | html("<form method='get' action='"); | 603 | html("<form method='get' action='"); |
554 | html_attr(cgit_rooturl()); | 604 | html_attr(cgit_rooturl()); |
555 | html("'>\n"); | 605 | html("'>\n"); |
556 | html("<input type='text' name='q' size='10' value='"); | 606 | html("<input type='text' name='q' size='10' value='"); |
557 | html_attr(ctx->qry.search); | 607 | html_attr(ctx->qry.search); |
558 | html("'/>\n"); | 608 | html("'/>\n"); |
559 | html("<input type='submit' value='search'/>\n"); | 609 | html("<input type='submit' value='search'/>\n"); |
560 | html("</form>"); | 610 | html("</form>"); |
561 | } | 611 | } |
562 | html("</td></tr></table>\n"); | 612 | html("</td></tr></table>\n"); |
563 | html("<div class='content'>"); | 613 | html("<div class='content'>"); |
564 | } | 614 | } |
565 | 615 | ||
566 | void cgit_print_filemode(unsigned short mode) | 616 | void cgit_print_filemode(unsigned short mode) |
567 | { | 617 | { |
568 | if (S_ISDIR(mode)) | 618 | if (S_ISDIR(mode)) |
569 | html("d"); | 619 | html("d"); |
570 | else if (S_ISLNK(mode)) | 620 | else if (S_ISLNK(mode)) |
571 | html("l"); | 621 | html("l"); |
572 | else if (S_ISGITLINK(mode)) | 622 | else if (S_ISGITLINK(mode)) |
573 | html("m"); | 623 | html("m"); |
574 | else | 624 | else |
575 | html("-"); | 625 | html("-"); |
576 | html_fileperm(mode >> 6); | 626 | html_fileperm(mode >> 6); |
577 | html_fileperm(mode >> 3); | 627 | html_fileperm(mode >> 3); |
578 | html_fileperm(mode); | 628 | html_fileperm(mode); |
579 | } | 629 | } |
580 | 630 | ||
581 | void cgit_print_snapshot_links(const char *repo, const char *head, | 631 | void cgit_print_snapshot_links(const char *repo, const char *head, |
582 | const char *hex, int snapshots) | 632 | const char *hex, int snapshots) |
583 | { | 633 | { |
584 | const struct cgit_snapshot_format* f; | 634 | const struct cgit_snapshot_format* f; |
585 | char *filename; | 635 | char *filename; |
586 | 636 | ||
587 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 637 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
588 | if (!(snapshots & f->bit)) | 638 | if (!(snapshots & f->bit)) |
589 | continue; | 639 | continue; |
590 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, | 640 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, |
591 | f->suffix); | 641 | f->suffix); |
592 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, | 642 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, |
593 | (char *)hex, filename); | 643 | (char *)hex, filename); |
594 | html("<br/>"); | 644 | html("<br/>"); |
595 | } | 645 | } |
596 | } | 646 | } |
diff --git a/ui-summary.c b/ui-summary.c index 318148a..ad0b4a7 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -1,31 +1,35 @@ | |||
1 | /* ui-summary.c: functions for generating repo summary page | 1 | /* ui-summary.c: functions for generating repo summary page |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 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-log.h" | 11 | #include "ui-log.h" |
12 | #include "ui-refs.h" | 12 | #include "ui-refs.h" |
13 | 13 | ||
14 | void cgit_print_summary() | 14 | void cgit_print_summary() |
15 | { | 15 | { |
16 | if (ctx.repo->readme) { | ||
17 | html("<div id='summary'>"); | ||
18 | html_include(ctx.repo->readme); | ||
19 | html("</div>"); | ||
20 | } | ||
21 | html("<table summary='repository info' class='list nowrap'>"); | 16 | html("<table summary='repository info' class='list nowrap'>"); |
22 | cgit_print_branches(ctx.cfg.summary_branches); | 17 | cgit_print_branches(ctx.cfg.summary_branches); |
23 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 18 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
24 | cgit_print_tags(ctx.cfg.summary_tags); | 19 | cgit_print_tags(ctx.cfg.summary_tags); |
25 | if (ctx.cfg.summary_log > 0) { | 20 | if (ctx.cfg.summary_log > 0) { |
26 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 21 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
27 | cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, | 22 | cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, |
28 | NULL, NULL, 0); | 23 | NULL, NULL, 0); |
29 | } | 24 | } |
30 | html("</table>"); | 25 | html("</table>"); |
31 | } | 26 | } |
27 | |||
28 | void cgit_print_repo_readme() | ||
29 | { | ||
30 | if (ctx.repo->readme) { | ||
31 | html("<div id='summary'>"); | ||
32 | html_include(ctx.repo->readme); | ||
33 | html("</div>"); | ||
34 | } | ||
35 | } | ||
diff --git a/ui-summary.h b/ui-summary.h index 37aedd2..3e13039 100644 --- a/ui-summary.h +++ b/ui-summary.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef UI_SUMMARY_H | 1 | #ifndef UI_SUMMARY_H |
2 | #define UI_SUMMARY_H | 2 | #define UI_SUMMARY_H |
3 | 3 | ||
4 | extern void cgit_print_summary(); | 4 | extern void cgit_print_summary(); |
5 | extern void cgit_print_repo_readme(); | ||
5 | 6 | ||
6 | #endif /* UI_SUMMARY_H */ | 7 | #endif /* UI_SUMMARY_H */ |