-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 197ee37..4408969 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -165,512 +165,514 @@ static void site_link(char *page, char *name, char *title, char *class, | |||
165 | void cgit_index_link(char *name, char *title, char *class, char *pattern, | 165 | void cgit_index_link(char *name, char *title, char *class, char *pattern, |
166 | int ofs) | 166 | int ofs) |
167 | { | 167 | { |
168 | site_link(NULL, name, title, class, pattern, ofs); | 168 | site_link(NULL, name, title, class, pattern, ofs); |
169 | } | 169 | } |
170 | 170 | ||
171 | static char *repolink(char *title, char *class, char *page, char *head, | 171 | static char *repolink(char *title, char *class, char *page, char *head, |
172 | char *path) | 172 | char *path) |
173 | { | 173 | { |
174 | char *delim = "?"; | 174 | char *delim = "?"; |
175 | 175 | ||
176 | html("<a"); | 176 | html("<a"); |
177 | if (title) { | 177 | if (title) { |
178 | html(" title='"); | 178 | html(" title='"); |
179 | html_attr(title); | 179 | html_attr(title); |
180 | html("'"); | 180 | html("'"); |
181 | } | 181 | } |
182 | if (class) { | 182 | if (class) { |
183 | html(" class='"); | 183 | html(" class='"); |
184 | html_attr(class); | 184 | html_attr(class); |
185 | html("'"); | 185 | html("'"); |
186 | } | 186 | } |
187 | html(" href='"); | 187 | html(" href='"); |
188 | if (ctx.cfg.virtual_root) { | 188 | if (ctx.cfg.virtual_root) { |
189 | html_attr(ctx.cfg.virtual_root); | 189 | html_attr(ctx.cfg.virtual_root); |
190 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 190 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
191 | html("/"); | 191 | html("/"); |
192 | html_attr(ctx.repo->url); | 192 | html_attr(ctx.repo->url); |
193 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 193 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
194 | html("/"); | 194 | html("/"); |
195 | if (page) { | 195 | if (page) { |
196 | html(page); | 196 | html(page); |
197 | html("/"); | 197 | html("/"); |
198 | if (path) | 198 | if (path) |
199 | html_attr(path); | 199 | html_attr(path); |
200 | } | 200 | } |
201 | } else { | 201 | } else { |
202 | html(ctx.cfg.script_name); | 202 | html(ctx.cfg.script_name); |
203 | html("?url="); | 203 | html("?url="); |
204 | html_attr(ctx.repo->url); | 204 | html_attr(ctx.repo->url); |
205 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 205 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
206 | html("/"); | 206 | html("/"); |
207 | if (page) { | 207 | if (page) { |
208 | html(page); | 208 | html(page); |
209 | html("/"); | 209 | html("/"); |
210 | if (path) | 210 | if (path) |
211 | html_attr(path); | 211 | html_attr(path); |
212 | } | 212 | } |
213 | delim = "&"; | 213 | delim = "&"; |
214 | } | 214 | } |
215 | if (head && strcmp(head, ctx.repo->defbranch)) { | 215 | if (head && strcmp(head, ctx.repo->defbranch)) { |
216 | html(delim); | 216 | html(delim); |
217 | html("h="); | 217 | html("h="); |
218 | html_attr(head); | 218 | html_attr(head); |
219 | delim = "&"; | 219 | delim = "&"; |
220 | } | 220 | } |
221 | return fmt("%s", delim); | 221 | return fmt("%s", delim); |
222 | } | 222 | } |
223 | 223 | ||
224 | static void reporevlink(char *page, char *name, char *title, char *class, | 224 | static void reporevlink(char *page, char *name, char *title, char *class, |
225 | char *head, char *rev, char *path) | 225 | char *head, char *rev, char *path) |
226 | { | 226 | { |
227 | char *delim; | 227 | char *delim; |
228 | 228 | ||
229 | delim = repolink(title, class, page, head, path); | 229 | delim = repolink(title, class, page, head, path); |
230 | if (rev && strcmp(rev, ctx.qry.head)) { | 230 | if (rev && strcmp(rev, ctx.qry.head)) { |
231 | html(delim); | 231 | html(delim); |
232 | html("id="); | 232 | html("id="); |
233 | html_attr(rev); | 233 | html_attr(rev); |
234 | } | 234 | } |
235 | html("'>"); | 235 | html("'>"); |
236 | html_txt(name); | 236 | html_txt(name); |
237 | html("</a>"); | 237 | html("</a>"); |
238 | } | 238 | } |
239 | 239 | ||
240 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 240 | void cgit_tree_link(char *name, char *title, char *class, char *head, |
241 | char *rev, char *path) | 241 | char *rev, char *path) |
242 | { | 242 | { |
243 | reporevlink("tree", name, title, class, head, rev, path); | 243 | reporevlink("tree", name, title, class, head, rev, path); |
244 | } | 244 | } |
245 | 245 | ||
246 | void cgit_log_link(char *name, char *title, char *class, char *head, | 246 | void cgit_log_link(char *name, char *title, char *class, char *head, |
247 | char *rev, char *path, int ofs, char *grep, char *pattern) | 247 | char *rev, char *path, int ofs, char *grep, char *pattern) |
248 | { | 248 | { |
249 | char *delim; | 249 | char *delim; |
250 | 250 | ||
251 | delim = repolink(title, class, "log", head, path); | 251 | delim = repolink(title, class, "log", head, path); |
252 | if (rev && strcmp(rev, ctx.qry.head)) { | 252 | if (rev && strcmp(rev, ctx.qry.head)) { |
253 | html(delim); | 253 | html(delim); |
254 | html("id="); | 254 | html("id="); |
255 | html_attr(rev); | 255 | html_attr(rev); |
256 | delim = "&"; | 256 | delim = "&"; |
257 | } | 257 | } |
258 | if (grep && pattern) { | 258 | if (grep && pattern) { |
259 | html(delim); | 259 | html(delim); |
260 | html("qt="); | 260 | html("qt="); |
261 | html_attr(grep); | 261 | html_attr(grep); |
262 | delim = "&"; | 262 | delim = "&"; |
263 | html(delim); | 263 | html(delim); |
264 | html("q="); | 264 | html("q="); |
265 | html_attr(pattern); | 265 | html_attr(pattern); |
266 | } | 266 | } |
267 | if (ofs > 0) { | 267 | if (ofs > 0) { |
268 | html(delim); | 268 | html(delim); |
269 | html("ofs="); | 269 | html("ofs="); |
270 | htmlf("%d", ofs); | 270 | htmlf("%d", ofs); |
271 | } | 271 | } |
272 | html("'>"); | 272 | html("'>"); |
273 | html_txt(name); | 273 | html_txt(name); |
274 | html("</a>"); | 274 | html("</a>"); |
275 | } | 275 | } |
276 | 276 | ||
277 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 277 | void cgit_commit_link(char *name, char *title, char *class, char *head, |
278 | char *rev) | 278 | char *rev) |
279 | { | 279 | { |
280 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 280 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
281 | name[ctx.cfg.max_msg_len] = '\0'; | 281 | name[ctx.cfg.max_msg_len] = '\0'; |
282 | name[ctx.cfg.max_msg_len - 1] = '.'; | 282 | name[ctx.cfg.max_msg_len - 1] = '.'; |
283 | name[ctx.cfg.max_msg_len - 2] = '.'; | 283 | name[ctx.cfg.max_msg_len - 2] = '.'; |
284 | name[ctx.cfg.max_msg_len - 3] = '.'; | 284 | name[ctx.cfg.max_msg_len - 3] = '.'; |
285 | } | 285 | } |
286 | reporevlink("commit", name, title, class, head, rev, NULL); | 286 | reporevlink("commit", name, title, class, head, rev, NULL); |
287 | } | 287 | } |
288 | 288 | ||
289 | void cgit_refs_link(char *name, char *title, char *class, char *head, | 289 | void cgit_refs_link(char *name, char *title, char *class, char *head, |
290 | char *rev, char *path) | 290 | char *rev, char *path) |
291 | { | 291 | { |
292 | reporevlink("refs", name, title, class, head, rev, path); | 292 | reporevlink("refs", name, title, class, head, rev, path); |
293 | } | 293 | } |
294 | 294 | ||
295 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 295 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
296 | char *rev, char *archivename) | 296 | char *rev, char *archivename) |
297 | { | 297 | { |
298 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 298 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
299 | } | 299 | } |
300 | 300 | ||
301 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 301 | void cgit_diff_link(char *name, char *title, char *class, char *head, |
302 | char *new_rev, char *old_rev, char *path) | 302 | char *new_rev, char *old_rev, char *path) |
303 | { | 303 | { |
304 | char *delim; | 304 | char *delim; |
305 | 305 | ||
306 | delim = repolink(title, class, "diff", head, path); | 306 | delim = repolink(title, class, "diff", head, path); |
307 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { | 307 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { |
308 | html(delim); | 308 | html(delim); |
309 | html("id="); | 309 | html("id="); |
310 | html_attr(new_rev); | 310 | html_attr(new_rev); |
311 | delim = "&"; | 311 | delim = "&"; |
312 | } | 312 | } |
313 | if (old_rev) { | 313 | if (old_rev) { |
314 | html(delim); | 314 | html(delim); |
315 | html("id2="); | 315 | html("id2="); |
316 | html_attr(old_rev); | 316 | html_attr(old_rev); |
317 | } | 317 | } |
318 | html("'>"); | 318 | html("'>"); |
319 | html_txt(name); | 319 | html_txt(name); |
320 | html("</a>"); | 320 | html("</a>"); |
321 | } | 321 | } |
322 | 322 | ||
323 | void cgit_patch_link(char *name, char *title, char *class, char *head, | 323 | void cgit_patch_link(char *name, char *title, char *class, char *head, |
324 | char *rev) | 324 | char *rev) |
325 | { | 325 | { |
326 | reporevlink("patch", name, title, class, head, rev, NULL); | 326 | reporevlink("patch", name, title, class, head, rev, NULL); |
327 | } | 327 | } |
328 | 328 | ||
329 | void cgit_object_link(struct object *obj) | 329 | void cgit_object_link(struct object *obj) |
330 | { | 330 | { |
331 | char *page, *arg, *url; | 331 | char *page, *arg, *url; |
332 | 332 | ||
333 | if (obj->type == OBJ_COMMIT) { | 333 | if (obj->type == OBJ_COMMIT) { |
334 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, | 334 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, |
335 | ctx.qry.head, sha1_to_hex(obj->sha1)); | 335 | ctx.qry.head, sha1_to_hex(obj->sha1)); |
336 | return; | 336 | return; |
337 | } else if (obj->type == OBJ_TREE) { | 337 | } else if (obj->type == OBJ_TREE) { |
338 | page = "tree"; | 338 | page = "tree"; |
339 | arg = "id"; | 339 | arg = "id"; |
340 | } else if (obj->type == OBJ_TAG) { | 340 | } else if (obj->type == OBJ_TAG) { |
341 | page = "tag"; | 341 | page = "tag"; |
342 | arg = "id"; | 342 | arg = "id"; |
343 | } else { | 343 | } else { |
344 | page = "blob"; | 344 | page = "blob"; |
345 | arg = "id"; | 345 | arg = "id"; |
346 | } | 346 | } |
347 | 347 | ||
348 | url = cgit_pageurl(ctx.qry.repo, page, | 348 | url = cgit_pageurl(ctx.qry.repo, page, |
349 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); | 349 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); |
350 | html_link_open(url, NULL, NULL); | 350 | html_link_open(url, NULL, NULL); |
351 | htmlf("%s %s", typename(obj->type), | 351 | htmlf("%s %s", typename(obj->type), |
352 | sha1_to_hex(obj->sha1)); | 352 | sha1_to_hex(obj->sha1)); |
353 | html_link_close(); | 353 | html_link_close(); |
354 | } | 354 | } |
355 | 355 | ||
356 | void cgit_print_date(time_t secs, char *format, int local_time) | 356 | void cgit_print_date(time_t secs, char *format, int local_time) |
357 | { | 357 | { |
358 | char buf[64]; | 358 | char buf[64]; |
359 | struct tm *time; | 359 | struct tm *time; |
360 | 360 | ||
361 | if (!secs) | 361 | if (!secs) |
362 | return; | 362 | return; |
363 | if(local_time) | 363 | if(local_time) |
364 | time = localtime(&secs); | 364 | time = localtime(&secs); |
365 | else | 365 | else |
366 | time = gmtime(&secs); | 366 | time = gmtime(&secs); |
367 | strftime(buf, sizeof(buf)-1, format, time); | 367 | strftime(buf, sizeof(buf)-1, format, time); |
368 | html_txt(buf); | 368 | html_txt(buf); |
369 | } | 369 | } |
370 | 370 | ||
371 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 371 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
372 | { | 372 | { |
373 | time_t now, secs; | 373 | time_t now, secs; |
374 | 374 | ||
375 | if (!t) | 375 | if (!t) |
376 | return; | 376 | return; |
377 | time(&now); | 377 | time(&now); |
378 | secs = now - t; | 378 | secs = now - t; |
379 | 379 | ||
380 | if (secs > max_relative && max_relative >= 0) { | 380 | if (secs > max_relative && max_relative >= 0) { |
381 | cgit_print_date(t, format, ctx.cfg.local_time); | 381 | cgit_print_date(t, format, ctx.cfg.local_time); |
382 | return; | 382 | return; |
383 | } | 383 | } |
384 | 384 | ||
385 | if (secs < TM_HOUR * 2) { | 385 | if (secs < TM_HOUR * 2) { |
386 | htmlf("<span class='age-mins'>%.0f min.</span>", | 386 | htmlf("<span class='age-mins'>%.0f min.</span>", |
387 | secs * 1.0 / TM_MIN); | 387 | secs * 1.0 / TM_MIN); |
388 | return; | 388 | return; |
389 | } | 389 | } |
390 | if (secs < TM_DAY * 2) { | 390 | if (secs < TM_DAY * 2) { |
391 | htmlf("<span class='age-hours'>%.0f hours</span>", | 391 | htmlf("<span class='age-hours'>%.0f hours</span>", |
392 | secs * 1.0 / TM_HOUR); | 392 | secs * 1.0 / TM_HOUR); |
393 | return; | 393 | return; |
394 | } | 394 | } |
395 | if (secs < TM_WEEK * 2) { | 395 | if (secs < TM_WEEK * 2) { |
396 | htmlf("<span class='age-days'>%.0f days</span>", | 396 | htmlf("<span class='age-days'>%.0f days</span>", |
397 | secs * 1.0 / TM_DAY); | 397 | secs * 1.0 / TM_DAY); |
398 | return; | 398 | return; |
399 | } | 399 | } |
400 | if (secs < TM_MONTH * 2) { | 400 | if (secs < TM_MONTH * 2) { |
401 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 401 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
402 | secs * 1.0 / TM_WEEK); | 402 | secs * 1.0 / TM_WEEK); |
403 | return; | 403 | return; |
404 | } | 404 | } |
405 | if (secs < TM_YEAR * 2) { | 405 | if (secs < TM_YEAR * 2) { |
406 | htmlf("<span class='age-months'>%.0f months</span>", | 406 | htmlf("<span class='age-months'>%.0f months</span>", |
407 | secs * 1.0 / TM_MONTH); | 407 | secs * 1.0 / TM_MONTH); |
408 | return; | 408 | return; |
409 | } | 409 | } |
410 | htmlf("<span class='age-years'>%.0f years</span>", | 410 | htmlf("<span class='age-years'>%.0f years</span>", |
411 | secs * 1.0 / TM_YEAR); | 411 | secs * 1.0 / TM_YEAR); |
412 | } | 412 | } |
413 | 413 | ||
414 | void cgit_print_http_headers(struct cgit_context *ctx) | 414 | void cgit_print_http_headers(struct cgit_context *ctx) |
415 | { | 415 | { |
416 | if (ctx->page.mimetype && ctx->page.charset) | 416 | if (ctx->page.mimetype && ctx->page.charset) |
417 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, | 417 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, |
418 | ctx->page.charset); | 418 | ctx->page.charset); |
419 | else if (ctx->page.mimetype) | 419 | else if (ctx->page.mimetype) |
420 | htmlf("Content-Type: %s\n", ctx->page.mimetype); | 420 | htmlf("Content-Type: %s\n", ctx->page.mimetype); |
421 | if (ctx->page.size) | ||
422 | htmlf("Content-Length: %ld\n", ctx->page.size); | ||
421 | if (ctx->page.filename) | 423 | if (ctx->page.filename) |
422 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", | 424 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", |
423 | ctx->page.filename); | 425 | ctx->page.filename); |
424 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); | 426 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); |
425 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); | 427 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); |
426 | html("\n"); | 428 | html("\n"); |
427 | } | 429 | } |
428 | 430 | ||
429 | void cgit_print_docstart(struct cgit_context *ctx) | 431 | void cgit_print_docstart(struct cgit_context *ctx) |
430 | { | 432 | { |
431 | html(cgit_doctype); | 433 | html(cgit_doctype); |
432 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 434 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
433 | html("<head>\n"); | 435 | html("<head>\n"); |
434 | html("<title>"); | 436 | html("<title>"); |
435 | html_txt(ctx->page.title); | 437 | html_txt(ctx->page.title); |
436 | html("</title>\n"); | 438 | html("</title>\n"); |
437 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 439 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
438 | if (ctx->cfg.robots && *ctx->cfg.robots) | 440 | if (ctx->cfg.robots && *ctx->cfg.robots) |
439 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); | 441 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); |
440 | html("<link rel='stylesheet' type='text/css' href='"); | 442 | html("<link rel='stylesheet' type='text/css' href='"); |
441 | html_attr(ctx->cfg.css); | 443 | html_attr(ctx->cfg.css); |
442 | html("'/>\n"); | 444 | html("'/>\n"); |
443 | if (ctx->cfg.favicon) { | 445 | if (ctx->cfg.favicon) { |
444 | html("<link rel='shortcut icon' href='"); | 446 | html("<link rel='shortcut icon' href='"); |
445 | html_attr(ctx->cfg.favicon); | 447 | html_attr(ctx->cfg.favicon); |
446 | html("'/>\n"); | 448 | html("'/>\n"); |
447 | } | 449 | } |
448 | html("</head>\n"); | 450 | html("</head>\n"); |
449 | html("<body>\n"); | 451 | html("<body>\n"); |
450 | } | 452 | } |
451 | 453 | ||
452 | void cgit_print_docend() | 454 | void cgit_print_docend() |
453 | { | 455 | { |
454 | html("</div>"); | 456 | html("</div>"); |
455 | if (ctx.cfg.footer) | 457 | if (ctx.cfg.footer) |
456 | html_include(ctx.cfg.footer); | 458 | html_include(ctx.cfg.footer); |
457 | else { | 459 | else { |
458 | html("<div class='footer'>generated "); | 460 | html("<div class='footer'>generated "); |
459 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); | 461 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); |
460 | htmlf(" by cgit %s", cgit_version); | 462 | htmlf(" by cgit %s", cgit_version); |
461 | html("</div>\n"); | 463 | html("</div>\n"); |
462 | } | 464 | } |
463 | html("</body>\n</html>\n"); | 465 | html("</body>\n</html>\n"); |
464 | } | 466 | } |
465 | 467 | ||
466 | int print_branch_option(const char *refname, const unsigned char *sha1, | 468 | int print_branch_option(const char *refname, const unsigned char *sha1, |
467 | int flags, void *cb_data) | 469 | int flags, void *cb_data) |
468 | { | 470 | { |
469 | char *name = (char *)refname; | 471 | char *name = (char *)refname; |
470 | html_option(name, name, ctx.qry.head); | 472 | html_option(name, name, ctx.qry.head); |
471 | return 0; | 473 | return 0; |
472 | } | 474 | } |
473 | 475 | ||
474 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 476 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
475 | int flags, void *cb_data) | 477 | int flags, void *cb_data) |
476 | { | 478 | { |
477 | struct tag *tag; | 479 | struct tag *tag; |
478 | struct taginfo *info; | 480 | struct taginfo *info; |
479 | struct object *obj; | 481 | struct object *obj; |
480 | char buf[256], *url; | 482 | char buf[256], *url; |
481 | unsigned char fileid[20]; | 483 | unsigned char fileid[20]; |
482 | int *header = (int *)cb_data; | 484 | int *header = (int *)cb_data; |
483 | 485 | ||
484 | if (prefixcmp(refname, "refs/archives")) | 486 | if (prefixcmp(refname, "refs/archives")) |
485 | return 0; | 487 | return 0; |
486 | strncpy(buf, refname+14, sizeof(buf)); | 488 | strncpy(buf, refname+14, sizeof(buf)); |
487 | obj = parse_object(sha1); | 489 | obj = parse_object(sha1); |
488 | if (!obj) | 490 | if (!obj) |
489 | return 1; | 491 | return 1; |
490 | if (obj->type == OBJ_TAG) { | 492 | if (obj->type == OBJ_TAG) { |
491 | tag = lookup_tag(sha1); | 493 | tag = lookup_tag(sha1); |
492 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 494 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
493 | return 0; | 495 | return 0; |
494 | hashcpy(fileid, tag->tagged->sha1); | 496 | hashcpy(fileid, tag->tagged->sha1); |
495 | } else if (obj->type != OBJ_BLOB) { | 497 | } else if (obj->type != OBJ_BLOB) { |
496 | return 0; | 498 | return 0; |
497 | } else { | 499 | } else { |
498 | hashcpy(fileid, sha1); | 500 | hashcpy(fileid, sha1); |
499 | } | 501 | } |
500 | if (!*header) { | 502 | if (!*header) { |
501 | html("<h1>download</h1>\n"); | 503 | html("<h1>download</h1>\n"); |
502 | *header = 1; | 504 | *header = 1; |
503 | } | 505 | } |
504 | url = cgit_pageurl(ctx.qry.repo, "blob", | 506 | url = cgit_pageurl(ctx.qry.repo, "blob", |
505 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 507 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
506 | buf)); | 508 | buf)); |
507 | html_link_open(url, NULL, "menu"); | 509 | html_link_open(url, NULL, "menu"); |
508 | html_txt(strlpart(buf, 20)); | 510 | html_txt(strlpart(buf, 20)); |
509 | html_link_close(); | 511 | html_link_close(); |
510 | return 0; | 512 | return 0; |
511 | } | 513 | } |
512 | 514 | ||
513 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 515 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
514 | { | 516 | { |
515 | char *url; | 517 | char *url; |
516 | 518 | ||
517 | if (!ctx.cfg.virtual_root) { | 519 | if (!ctx.cfg.virtual_root) { |
518 | url = fmt("%s/%s", ctx.qry.repo, page); | 520 | url = fmt("%s/%s", ctx.qry.repo, page); |
519 | if (ctx.qry.path) | 521 | if (ctx.qry.path) |
520 | url = fmt("%s/%s", url, ctx.qry.path); | 522 | url = fmt("%s/%s", url, ctx.qry.path); |
521 | html_hidden("url", url); | 523 | html_hidden("url", url); |
522 | } | 524 | } |
523 | 525 | ||
524 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && | 526 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && |
525 | strcmp(ctx.qry.head, ctx.repo->defbranch)) | 527 | strcmp(ctx.qry.head, ctx.repo->defbranch)) |
526 | html_hidden("h", ctx.qry.head); | 528 | html_hidden("h", ctx.qry.head); |
527 | 529 | ||
528 | if (ctx.qry.sha1) | 530 | if (ctx.qry.sha1) |
529 | html_hidden("id", ctx.qry.sha1); | 531 | html_hidden("id", ctx.qry.sha1); |
530 | if (ctx.qry.sha2) | 532 | if (ctx.qry.sha2) |
531 | html_hidden("id2", ctx.qry.sha2); | 533 | html_hidden("id2", ctx.qry.sha2); |
532 | 534 | ||
533 | if (incl_search) { | 535 | if (incl_search) { |
534 | if (ctx.qry.grep) | 536 | if (ctx.qry.grep) |
535 | html_hidden("qt", ctx.qry.grep); | 537 | html_hidden("qt", ctx.qry.grep); |
536 | if (ctx.qry.search) | 538 | if (ctx.qry.search) |
537 | html_hidden("q", ctx.qry.search); | 539 | html_hidden("q", ctx.qry.search); |
538 | } | 540 | } |
539 | } | 541 | } |
540 | 542 | ||
541 | char *hc(struct cgit_cmd *cmd, const char *page) | 543 | char *hc(struct cgit_cmd *cmd, const char *page) |
542 | { | 544 | { |
543 | return (strcmp(cmd->name, page) ? NULL : "active"); | 545 | return (strcmp(cmd->name, page) ? NULL : "active"); |
544 | } | 546 | } |
545 | 547 | ||
546 | void cgit_print_pageheader(struct cgit_context *ctx) | 548 | void cgit_print_pageheader(struct cgit_context *ctx) |
547 | { | 549 | { |
548 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 550 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
549 | 551 | ||
550 | html("<table id='header'>\n"); | 552 | html("<table id='header'>\n"); |
551 | html("<tr>\n"); | 553 | html("<tr>\n"); |
552 | html("<td class='logo' rowspan='2'><a href='"); | 554 | html("<td class='logo' rowspan='2'><a href='"); |
553 | if (ctx->cfg.logo_link) | 555 | if (ctx->cfg.logo_link) |
554 | html_attr(ctx->cfg.logo_link); | 556 | html_attr(ctx->cfg.logo_link); |
555 | else | 557 | else |
556 | html_attr(cgit_rooturl()); | 558 | html_attr(cgit_rooturl()); |
557 | html("'><img src='"); | 559 | html("'><img src='"); |
558 | html_attr(ctx->cfg.logo); | 560 | html_attr(ctx->cfg.logo); |
559 | html("' alt='cgit logo'/></a></td>\n"); | 561 | html("' alt='cgit logo'/></a></td>\n"); |
560 | 562 | ||
561 | html("<td class='main'>"); | 563 | html("<td class='main'>"); |
562 | if (ctx->repo) { | 564 | if (ctx->repo) { |
563 | cgit_index_link("index", NULL, NULL, NULL, 0); | 565 | cgit_index_link("index", NULL, NULL, NULL, 0); |
564 | html(" : "); | 566 | html(" : "); |
565 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), | 567 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), |
566 | ctx->qry.head, NULL, NULL); | 568 | ctx->qry.head, NULL, NULL); |
567 | html("</td><td class='form'>"); | 569 | html("</td><td class='form'>"); |
568 | html("<form method='get' action=''>\n"); | 570 | html("<form method='get' action=''>\n"); |
569 | add_hidden_formfields(0, 1, ctx->qry.page); | 571 | add_hidden_formfields(0, 1, ctx->qry.page); |
570 | html("<select name='h' onchange='this.form.submit();'>\n"); | 572 | html("<select name='h' onchange='this.form.submit();'>\n"); |
571 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 573 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
572 | html("</select> "); | 574 | html("</select> "); |
573 | html("<input type='submit' name='' value='switch'/>"); | 575 | html("<input type='submit' name='' value='switch'/>"); |
574 | html("</form>"); | 576 | html("</form>"); |
575 | } else | 577 | } else |
576 | html_txt(ctx->cfg.root_title); | 578 | html_txt(ctx->cfg.root_title); |
577 | html("</td></tr>\n"); | 579 | html("</td></tr>\n"); |
578 | 580 | ||
579 | html("<tr><td class='sub'>"); | 581 | html("<tr><td class='sub'>"); |
580 | if (ctx->repo) { | 582 | if (ctx->repo) { |
581 | html_txt(ctx->repo->desc); | 583 | html_txt(ctx->repo->desc); |
582 | html("</td><td class='sub right'>"); | 584 | html("</td><td class='sub right'>"); |
583 | html_txt(ctx->repo->owner); | 585 | html_txt(ctx->repo->owner); |
584 | } else { | 586 | } else { |
585 | if (ctx->cfg.root_desc) | 587 | if (ctx->cfg.root_desc) |
586 | html_txt(ctx->cfg.root_desc); | 588 | html_txt(ctx->cfg.root_desc); |
587 | else if (ctx->cfg.index_info) | 589 | else if (ctx->cfg.index_info) |
588 | html_include(ctx->cfg.index_info); | 590 | html_include(ctx->cfg.index_info); |
589 | } | 591 | } |
590 | html("</td></tr></table>\n"); | 592 | html("</td></tr></table>\n"); |
591 | 593 | ||
592 | html("<table class='tabs'><tr><td>\n"); | 594 | html("<table class='tabs'><tr><td>\n"); |
593 | if (ctx->repo) { | 595 | if (ctx->repo) { |
594 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 596 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), |
595 | ctx->qry.head, NULL, NULL); | 597 | ctx->qry.head, NULL, NULL); |
596 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 598 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
597 | ctx->qry.sha1, NULL); | 599 | ctx->qry.sha1, NULL); |
598 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 600 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
599 | NULL, NULL, 0, NULL, NULL); | 601 | NULL, NULL, 0, NULL, NULL); |
600 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 602 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
601 | ctx->qry.sha1, NULL); | 603 | ctx->qry.sha1, NULL); |
602 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 604 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
603 | ctx->qry.head, ctx->qry.sha1); | 605 | ctx->qry.head, ctx->qry.sha1); |
604 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 606 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
605 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 607 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
606 | if (ctx->repo->readme) | 608 | if (ctx->repo->readme) |
607 | reporevlink("about", "about", NULL, | 609 | reporevlink("about", "about", NULL, |
608 | hc(cmd, "about"), ctx->qry.head, NULL, | 610 | hc(cmd, "about"), ctx->qry.head, NULL, |
609 | NULL); | 611 | NULL); |
610 | html("</td><td class='form'>"); | 612 | html("</td><td class='form'>"); |
611 | html("<form class='right' method='get' action='"); | 613 | html("<form class='right' method='get' action='"); |
612 | if (ctx->cfg.virtual_root) | 614 | if (ctx->cfg.virtual_root) |
613 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 615 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
614 | ctx->qry.path, NULL)); | 616 | ctx->qry.path, NULL)); |
615 | html("'>\n"); | 617 | html("'>\n"); |
616 | add_hidden_formfields(1, 0, "log"); | 618 | add_hidden_formfields(1, 0, "log"); |
617 | html("<select name='qt'>\n"); | 619 | html("<select name='qt'>\n"); |
618 | html_option("grep", "log msg", ctx->qry.grep); | 620 | html_option("grep", "log msg", ctx->qry.grep); |
619 | html_option("author", "author", ctx->qry.grep); | 621 | html_option("author", "author", ctx->qry.grep); |
620 | html_option("committer", "committer", ctx->qry.grep); | 622 | html_option("committer", "committer", ctx->qry.grep); |
621 | html("</select>\n"); | 623 | html("</select>\n"); |
622 | html("<input class='txt' type='text' size='10' name='q' value='"); | 624 | html("<input class='txt' type='text' size='10' name='q' value='"); |
623 | html_attr(ctx->qry.search); | 625 | html_attr(ctx->qry.search); |
624 | html("'/>\n"); | 626 | html("'/>\n"); |
625 | html("<input type='submit' value='search'/>\n"); | 627 | html("<input type='submit' value='search'/>\n"); |
626 | html("</form>\n"); | 628 | html("</form>\n"); |
627 | } else { | 629 | } else { |
628 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); | 630 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); |
629 | if (ctx->cfg.root_readme) | 631 | if (ctx->cfg.root_readme) |
630 | site_link("about", "about", NULL, hc(cmd, "about"), | 632 | site_link("about", "about", NULL, hc(cmd, "about"), |
631 | NULL, 0); | 633 | NULL, 0); |
632 | html("</td><td class='form'>"); | 634 | html("</td><td class='form'>"); |
633 | html("<form method='get' action='"); | 635 | html("<form method='get' action='"); |
634 | html_attr(cgit_rooturl()); | 636 | html_attr(cgit_rooturl()); |
635 | html("'>\n"); | 637 | html("'>\n"); |
636 | html("<input type='text' name='q' size='10' value='"); | 638 | html("<input type='text' name='q' size='10' value='"); |
637 | html_attr(ctx->qry.search); | 639 | html_attr(ctx->qry.search); |
638 | html("'/>\n"); | 640 | html("'/>\n"); |
639 | html("<input type='submit' value='search'/>\n"); | 641 | html("<input type='submit' value='search'/>\n"); |
640 | html("</form>"); | 642 | html("</form>"); |
641 | } | 643 | } |
642 | html("</td></tr></table>\n"); | 644 | html("</td></tr></table>\n"); |
643 | html("<div class='content'>"); | 645 | html("<div class='content'>"); |
644 | } | 646 | } |
645 | 647 | ||
646 | void cgit_print_filemode(unsigned short mode) | 648 | void cgit_print_filemode(unsigned short mode) |
647 | { | 649 | { |
648 | if (S_ISDIR(mode)) | 650 | if (S_ISDIR(mode)) |
649 | html("d"); | 651 | html("d"); |
650 | else if (S_ISLNK(mode)) | 652 | else if (S_ISLNK(mode)) |
651 | html("l"); | 653 | html("l"); |
652 | else if (S_ISGITLINK(mode)) | 654 | else if (S_ISGITLINK(mode)) |
653 | html("m"); | 655 | html("m"); |
654 | else | 656 | else |
655 | html("-"); | 657 | html("-"); |
656 | html_fileperm(mode >> 6); | 658 | html_fileperm(mode >> 6); |
657 | html_fileperm(mode >> 3); | 659 | html_fileperm(mode >> 3); |
658 | html_fileperm(mode); | 660 | html_fileperm(mode); |
659 | } | 661 | } |
660 | 662 | ||
661 | void cgit_print_snapshot_links(const char *repo, const char *head, | 663 | void cgit_print_snapshot_links(const char *repo, const char *head, |
662 | const char *hex, int snapshots) | 664 | const char *hex, int snapshots) |
663 | { | 665 | { |
664 | const struct cgit_snapshot_format* f; | 666 | const struct cgit_snapshot_format* f; |
665 | char *filename; | 667 | char *filename; |
666 | 668 | ||
667 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 669 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
668 | if (!(snapshots & f->bit)) | 670 | if (!(snapshots & f->bit)) |
669 | continue; | 671 | continue; |
670 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, | 672 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, |
671 | f->suffix); | 673 | f->suffix); |
672 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, | 674 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, |
673 | (char *)hex, filename); | 675 | (char *)hex, filename); |
674 | html("<br/>"); | 676 | html("<br/>"); |
675 | } | 677 | } |
676 | } | 678 | } |