-rw-r--r-- | ui-shared.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index f366354..44269a7 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -254,384 +254,387 @@ void cgit_log_link(char *name, char *title, char *class, char *head, | |||
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) | 356 | void cgit_print_date(time_t secs, char *format) |
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 | time = gmtime(&secs); | 363 | time = gmtime(&secs); |
364 | strftime(buf, sizeof(buf)-1, format, time); | 364 | strftime(buf, sizeof(buf)-1, format, time); |
365 | html_txt(buf); | 365 | html_txt(buf); |
366 | } | 366 | } |
367 | 367 | ||
368 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 368 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
369 | { | 369 | { |
370 | time_t now, secs; | 370 | time_t now, secs; |
371 | 371 | ||
372 | if (!t) | 372 | if (!t) |
373 | return; | 373 | return; |
374 | time(&now); | 374 | time(&now); |
375 | secs = now - t; | 375 | secs = now - t; |
376 | 376 | ||
377 | if (secs > max_relative && max_relative >= 0) { | 377 | if (secs > max_relative && max_relative >= 0) { |
378 | cgit_print_date(t, format); | 378 | cgit_print_date(t, format); |
379 | return; | 379 | return; |
380 | } | 380 | } |
381 | 381 | ||
382 | if (secs < TM_HOUR * 2) { | 382 | if (secs < TM_HOUR * 2) { |
383 | htmlf("<span class='age-mins'>%.0f min.</span>", | 383 | htmlf("<span class='age-mins'>%.0f min.</span>", |
384 | secs * 1.0 / TM_MIN); | 384 | secs * 1.0 / TM_MIN); |
385 | return; | 385 | return; |
386 | } | 386 | } |
387 | if (secs < TM_DAY * 2) { | 387 | if (secs < TM_DAY * 2) { |
388 | htmlf("<span class='age-hours'>%.0f hours</span>", | 388 | htmlf("<span class='age-hours'>%.0f hours</span>", |
389 | secs * 1.0 / TM_HOUR); | 389 | secs * 1.0 / TM_HOUR); |
390 | return; | 390 | return; |
391 | } | 391 | } |
392 | if (secs < TM_WEEK * 2) { | 392 | if (secs < TM_WEEK * 2) { |
393 | htmlf("<span class='age-days'>%.0f days</span>", | 393 | htmlf("<span class='age-days'>%.0f days</span>", |
394 | secs * 1.0 / TM_DAY); | 394 | secs * 1.0 / TM_DAY); |
395 | return; | 395 | return; |
396 | } | 396 | } |
397 | if (secs < TM_MONTH * 2) { | 397 | if (secs < TM_MONTH * 2) { |
398 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 398 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
399 | secs * 1.0 / TM_WEEK); | 399 | secs * 1.0 / TM_WEEK); |
400 | return; | 400 | return; |
401 | } | 401 | } |
402 | if (secs < TM_YEAR * 2) { | 402 | if (secs < TM_YEAR * 2) { |
403 | htmlf("<span class='age-months'>%.0f months</span>", | 403 | htmlf("<span class='age-months'>%.0f months</span>", |
404 | secs * 1.0 / TM_MONTH); | 404 | secs * 1.0 / TM_MONTH); |
405 | return; | 405 | return; |
406 | } | 406 | } |
407 | htmlf("<span class='age-years'>%.0f years</span>", | 407 | htmlf("<span class='age-years'>%.0f years</span>", |
408 | secs * 1.0 / TM_YEAR); | 408 | secs * 1.0 / TM_YEAR); |
409 | } | 409 | } |
410 | 410 | ||
411 | void cgit_print_http_headers(struct cgit_context *ctx) | 411 | void cgit_print_http_headers(struct cgit_context *ctx) |
412 | { | 412 | { |
413 | if (ctx->page.mimetype && ctx->page.charset) | 413 | if (ctx->page.mimetype && ctx->page.charset) |
414 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, | 414 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, |
415 | ctx->page.charset); | 415 | ctx->page.charset); |
416 | else if (ctx->page.mimetype) | 416 | else if (ctx->page.mimetype) |
417 | htmlf("Content-Type: %s\n", ctx->page.mimetype); | 417 | htmlf("Content-Type: %s\n", ctx->page.mimetype); |
418 | if (ctx->page.filename) | 418 | if (ctx->page.filename) |
419 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", | 419 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", |
420 | ctx->page.filename); | 420 | ctx->page.filename); |
421 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); | 421 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); |
422 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); | 422 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); |
423 | html("\n"); | 423 | html("\n"); |
424 | } | 424 | } |
425 | 425 | ||
426 | void cgit_print_docstart(struct cgit_context *ctx) | 426 | void cgit_print_docstart(struct cgit_context *ctx) |
427 | { | 427 | { |
428 | html(cgit_doctype); | 428 | html(cgit_doctype); |
429 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 429 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
430 | html("<head>\n"); | 430 | html("<head>\n"); |
431 | html("<title>"); | 431 | html("<title>"); |
432 | html_txt(ctx->page.title); | 432 | html_txt(ctx->page.title); |
433 | html("</title>\n"); | 433 | html("</title>\n"); |
434 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 434 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
435 | if (ctx->cfg.robots && *ctx->cfg.robots) | 435 | if (ctx->cfg.robots && *ctx->cfg.robots) |
436 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); | 436 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); |
437 | html("<link rel='stylesheet' type='text/css' href='"); | 437 | html("<link rel='stylesheet' type='text/css' href='"); |
438 | html_attr(ctx->cfg.css); | 438 | html_attr(ctx->cfg.css); |
439 | html("'/>\n"); | 439 | html("'/>\n"); |
440 | html("</head>\n"); | 440 | html("</head>\n"); |
441 | html("<body>\n"); | 441 | html("<body>\n"); |
442 | } | 442 | } |
443 | 443 | ||
444 | void cgit_print_docend() | 444 | void cgit_print_docend() |
445 | { | 445 | { |
446 | html("</div><div class='footer'>generated "); | ||
447 | cgit_print_date(time(NULL), FMT_LONGDATE); | ||
448 | htmlf(" by cgit %s", cgit_version); | ||
446 | html("</div>\n</body>\n</html>\n"); | 449 | html("</div>\n</body>\n</html>\n"); |
447 | } | 450 | } |
448 | 451 | ||
449 | int print_branch_option(const char *refname, const unsigned char *sha1, | 452 | int print_branch_option(const char *refname, const unsigned char *sha1, |
450 | int flags, void *cb_data) | 453 | int flags, void *cb_data) |
451 | { | 454 | { |
452 | char *name = (char *)refname; | 455 | char *name = (char *)refname; |
453 | html_option(name, name, ctx.qry.head); | 456 | html_option(name, name, ctx.qry.head); |
454 | return 0; | 457 | return 0; |
455 | } | 458 | } |
456 | 459 | ||
457 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 460 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
458 | int flags, void *cb_data) | 461 | int flags, void *cb_data) |
459 | { | 462 | { |
460 | struct tag *tag; | 463 | struct tag *tag; |
461 | struct taginfo *info; | 464 | struct taginfo *info; |
462 | struct object *obj; | 465 | struct object *obj; |
463 | char buf[256], *url; | 466 | char buf[256], *url; |
464 | unsigned char fileid[20]; | 467 | unsigned char fileid[20]; |
465 | int *header = (int *)cb_data; | 468 | int *header = (int *)cb_data; |
466 | 469 | ||
467 | if (prefixcmp(refname, "refs/archives")) | 470 | if (prefixcmp(refname, "refs/archives")) |
468 | return 0; | 471 | return 0; |
469 | strncpy(buf, refname+14, sizeof(buf)); | 472 | strncpy(buf, refname+14, sizeof(buf)); |
470 | obj = parse_object(sha1); | 473 | obj = parse_object(sha1); |
471 | if (!obj) | 474 | if (!obj) |
472 | return 1; | 475 | return 1; |
473 | if (obj->type == OBJ_TAG) { | 476 | if (obj->type == OBJ_TAG) { |
474 | tag = lookup_tag(sha1); | 477 | tag = lookup_tag(sha1); |
475 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 478 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
476 | return 0; | 479 | return 0; |
477 | hashcpy(fileid, tag->tagged->sha1); | 480 | hashcpy(fileid, tag->tagged->sha1); |
478 | } else if (obj->type != OBJ_BLOB) { | 481 | } else if (obj->type != OBJ_BLOB) { |
479 | return 0; | 482 | return 0; |
480 | } else { | 483 | } else { |
481 | hashcpy(fileid, sha1); | 484 | hashcpy(fileid, sha1); |
482 | } | 485 | } |
483 | if (!*header) { | 486 | if (!*header) { |
484 | html("<h1>download</h1>\n"); | 487 | html("<h1>download</h1>\n"); |
485 | *header = 1; | 488 | *header = 1; |
486 | } | 489 | } |
487 | url = cgit_pageurl(ctx.qry.repo, "blob", | 490 | url = cgit_pageurl(ctx.qry.repo, "blob", |
488 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 491 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
489 | buf)); | 492 | buf)); |
490 | html_link_open(url, NULL, "menu"); | 493 | html_link_open(url, NULL, "menu"); |
491 | html_txt(strlpart(buf, 20)); | 494 | html_txt(strlpart(buf, 20)); |
492 | html_link_close(); | 495 | html_link_close(); |
493 | return 0; | 496 | return 0; |
494 | } | 497 | } |
495 | 498 | ||
496 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 499 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
497 | { | 500 | { |
498 | char *url; | 501 | char *url; |
499 | 502 | ||
500 | if (!ctx.cfg.virtual_root) { | 503 | if (!ctx.cfg.virtual_root) { |
501 | url = fmt("%s/%s", ctx.qry.repo, page); | 504 | url = fmt("%s/%s", ctx.qry.repo, page); |
502 | if (ctx.qry.path) | 505 | if (ctx.qry.path) |
503 | url = fmt("%s/%s", url, ctx.qry.path); | 506 | url = fmt("%s/%s", url, ctx.qry.path); |
504 | html_hidden("url", url); | 507 | html_hidden("url", url); |
505 | } | 508 | } |
506 | 509 | ||
507 | if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) | 510 | if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) |
508 | html_hidden("h", ctx.qry.head); | 511 | html_hidden("h", ctx.qry.head); |
509 | 512 | ||
510 | if (ctx.qry.sha1) | 513 | if (ctx.qry.sha1) |
511 | html_hidden("id", ctx.qry.sha1); | 514 | html_hidden("id", ctx.qry.sha1); |
512 | if (ctx.qry.sha2) | 515 | if (ctx.qry.sha2) |
513 | html_hidden("id2", ctx.qry.sha2); | 516 | html_hidden("id2", ctx.qry.sha2); |
514 | 517 | ||
515 | if (incl_search) { | 518 | if (incl_search) { |
516 | if (ctx.qry.grep) | 519 | if (ctx.qry.grep) |
517 | html_hidden("qt", ctx.qry.grep); | 520 | html_hidden("qt", ctx.qry.grep); |
518 | if (ctx.qry.search) | 521 | if (ctx.qry.search) |
519 | html_hidden("q", ctx.qry.search); | 522 | html_hidden("q", ctx.qry.search); |
520 | } | 523 | } |
521 | } | 524 | } |
522 | 525 | ||
523 | char *hc(struct cgit_cmd *cmd, const char *page) | 526 | char *hc(struct cgit_cmd *cmd, const char *page) |
524 | { | 527 | { |
525 | return (strcmp(cmd->name, page) ? NULL : "active"); | 528 | return (strcmp(cmd->name, page) ? NULL : "active"); |
526 | } | 529 | } |
527 | 530 | ||
528 | void cgit_print_pageheader(struct cgit_context *ctx) | 531 | void cgit_print_pageheader(struct cgit_context *ctx) |
529 | { | 532 | { |
530 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 533 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
531 | 534 | ||
532 | html("<table id='header'>\n"); | 535 | html("<table id='header'>\n"); |
533 | html("<tr>\n"); | 536 | html("<tr>\n"); |
534 | html("<td class='logo' rowspan='2'><a href='"); | 537 | html("<td class='logo' rowspan='2'><a href='"); |
535 | if (ctx->cfg.logo_link) | 538 | if (ctx->cfg.logo_link) |
536 | html_attr(ctx->cfg.logo_link); | 539 | html_attr(ctx->cfg.logo_link); |
537 | else | 540 | else |
538 | html_attr(cgit_rooturl()); | 541 | html_attr(cgit_rooturl()); |
539 | html("'><img src='"); | 542 | html("'><img src='"); |
540 | html_attr(ctx->cfg.logo); | 543 | html_attr(ctx->cfg.logo); |
541 | html("' alt='cgit logo'/></a></td>\n"); | 544 | html("' alt='cgit logo'/></a></td>\n"); |
542 | 545 | ||
543 | html("<td class='main'>"); | 546 | html("<td class='main'>"); |
544 | if (ctx->repo) { | 547 | if (ctx->repo) { |
545 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), | 548 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), |
546 | ctx->qry.head, NULL, NULL); | 549 | ctx->qry.head, NULL, NULL); |
547 | html(" : "); | 550 | html(" : "); |
548 | html_txt(ctx->qry.page); | 551 | html_txt(ctx->qry.page); |
549 | html("</td><td class='form'>"); | 552 | html("</td><td class='form'>"); |
550 | html("<form method='get' action=''>\n"); | 553 | html("<form method='get' action=''>\n"); |
551 | add_hidden_formfields(0, 1, ctx->qry.page); | 554 | add_hidden_formfields(0, 1, ctx->qry.page); |
552 | html("<select name='h' onchange='this.form.submit();'>\n"); | 555 | html("<select name='h' onchange='this.form.submit();'>\n"); |
553 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 556 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
554 | html("</select> "); | 557 | html("</select> "); |
555 | html("<input type='submit' name='' value='switch'/>"); | 558 | html("<input type='submit' name='' value='switch'/>"); |
556 | html("</form>"); | 559 | html("</form>"); |
557 | } else | 560 | } else |
558 | html_txt(ctx->cfg.root_title); | 561 | html_txt(ctx->cfg.root_title); |
559 | html("</td></tr>\n"); | 562 | html("</td></tr>\n"); |
560 | 563 | ||
561 | html("<tr><td class='sub'"); | 564 | html("<tr><td class='sub'"); |
562 | if (ctx->repo) { | 565 | if (ctx->repo) { |
563 | html(" colspan='2'>"); | 566 | html(" colspan='2'>"); |
564 | html_txt(ctx->repo->desc); | 567 | html_txt(ctx->repo->desc); |
565 | } else { | 568 | } else { |
566 | html(">"); | 569 | html(">"); |
567 | if (ctx->cfg.root_desc) | 570 | if (ctx->cfg.root_desc) |
568 | html_txt(ctx->cfg.root_desc); | 571 | html_txt(ctx->cfg.root_desc); |
569 | else if (ctx->cfg.index_info) | 572 | else if (ctx->cfg.index_info) |
570 | html_include(ctx->cfg.index_info); | 573 | html_include(ctx->cfg.index_info); |
571 | } | 574 | } |
572 | html("</td></tr></table>\n"); | 575 | html("</td></tr></table>\n"); |
573 | 576 | ||
574 | html("<table class='tabs'><tr><td>\n"); | 577 | html("<table class='tabs'><tr><td>\n"); |
575 | if (ctx->repo) { | 578 | if (ctx->repo) { |
576 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 579 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), |
577 | ctx->qry.head, NULL, NULL); | 580 | ctx->qry.head, NULL, NULL); |
578 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 581 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
579 | ctx->qry.sha1, NULL); | 582 | ctx->qry.sha1, NULL); |
580 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 583 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
581 | NULL, NULL, 0, NULL, NULL); | 584 | NULL, NULL, 0, NULL, NULL); |
582 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 585 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
583 | ctx->qry.sha1, NULL); | 586 | ctx->qry.sha1, NULL); |
584 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 587 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
585 | ctx->qry.head, ctx->qry.sha1); | 588 | ctx->qry.head, ctx->qry.sha1); |
586 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 589 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
587 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 590 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
588 | if (ctx->repo->readme) | 591 | if (ctx->repo->readme) |
589 | reporevlink("about", "about", NULL, | 592 | reporevlink("about", "about", NULL, |
590 | hc(cmd, "about"), ctx->qry.head, NULL, | 593 | hc(cmd, "about"), ctx->qry.head, NULL, |
591 | NULL); | 594 | NULL); |
592 | html("</td><td class='form'>"); | 595 | html("</td><td class='form'>"); |
593 | html("<form class='right' method='get' action='"); | 596 | html("<form class='right' method='get' action='"); |
594 | if (ctx->cfg.virtual_root) | 597 | if (ctx->cfg.virtual_root) |
595 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 598 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
596 | ctx->qry.path, NULL)); | 599 | ctx->qry.path, NULL)); |
597 | html("'>\n"); | 600 | html("'>\n"); |
598 | add_hidden_formfields(1, 0, "log"); | 601 | add_hidden_formfields(1, 0, "log"); |
599 | html("<select name='qt'>\n"); | 602 | html("<select name='qt'>\n"); |
600 | html_option("grep", "log msg", ctx->qry.grep); | 603 | html_option("grep", "log msg", ctx->qry.grep); |
601 | html_option("author", "author", ctx->qry.grep); | 604 | html_option("author", "author", ctx->qry.grep); |
602 | html_option("committer", "committer", ctx->qry.grep); | 605 | html_option("committer", "committer", ctx->qry.grep); |
603 | html("</select>\n"); | 606 | html("</select>\n"); |
604 | html("<input class='txt' type='text' size='10' name='q' value='"); | 607 | html("<input class='txt' type='text' size='10' name='q' value='"); |
605 | html_attr(ctx->qry.search); | 608 | html_attr(ctx->qry.search); |
606 | html("'/>\n"); | 609 | html("'/>\n"); |
607 | html("<input type='submit' value='search'/>\n"); | 610 | html("<input type='submit' value='search'/>\n"); |
608 | html("</form>\n"); | 611 | html("</form>\n"); |
609 | } else { | 612 | } else { |
610 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); | 613 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); |
611 | if (ctx->cfg.root_readme) | 614 | if (ctx->cfg.root_readme) |
612 | site_link("about", "about", NULL, hc(cmd, "about"), | 615 | site_link("about", "about", NULL, hc(cmd, "about"), |
613 | NULL, 0); | 616 | NULL, 0); |
614 | html("</td><td class='form'>"); | 617 | html("</td><td class='form'>"); |
615 | html("<form method='get' action='"); | 618 | html("<form method='get' action='"); |
616 | html_attr(cgit_rooturl()); | 619 | html_attr(cgit_rooturl()); |
617 | html("'>\n"); | 620 | html("'>\n"); |
618 | html("<input type='text' name='q' size='10' value='"); | 621 | html("<input type='text' name='q' size='10' value='"); |
619 | html_attr(ctx->qry.search); | 622 | html_attr(ctx->qry.search); |
620 | html("'/>\n"); | 623 | html("'/>\n"); |
621 | html("<input type='submit' value='search'/>\n"); | 624 | html("<input type='submit' value='search'/>\n"); |
622 | html("</form>"); | 625 | html("</form>"); |
623 | } | 626 | } |
624 | html("</td></tr></table>\n"); | 627 | html("</td></tr></table>\n"); |
625 | html("<div class='content'>"); | 628 | html("<div class='content'>"); |
626 | } | 629 | } |
627 | 630 | ||
628 | void cgit_print_filemode(unsigned short mode) | 631 | void cgit_print_filemode(unsigned short mode) |
629 | { | 632 | { |
630 | if (S_ISDIR(mode)) | 633 | if (S_ISDIR(mode)) |
631 | html("d"); | 634 | html("d"); |
632 | else if (S_ISLNK(mode)) | 635 | else if (S_ISLNK(mode)) |
633 | html("l"); | 636 | html("l"); |
634 | else if (S_ISGITLINK(mode)) | 637 | else if (S_ISGITLINK(mode)) |
635 | html("m"); | 638 | html("m"); |
636 | else | 639 | else |
637 | html("-"); | 640 | html("-"); |