author | Diego Ongaro <ongardie@gmail.com> | 2009-06-10 23:18:34 (UTC) |
---|---|---|
committer | Diego Ongaro <ongardie@gmail.com> | 2009-06-11 05:01:32 (UTC) |
commit | 694dd43886f23723f415aed3afb62131cdbcaa51 (patch) (unidiff) | |
tree | 891ce59bcac2673e9ca294cfa83e69eec23ccbd5 /ui-shared.c | |
parent | 87a89aed41136d388537b146000c4af6c1135a8c (diff) | |
download | cgit-694dd43886f23723f415aed3afb62131cdbcaa51.zip cgit-694dd43886f23723f415aed3afb62131cdbcaa51.tar.gz cgit-694dd43886f23723f415aed3afb62131cdbcaa51.tar.bz2 |
use cgit_httpscheme() for atom feed
-rw-r--r-- | ui-shared.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 749ea35..5ce2bc5 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -314,385 +314,386 @@ void cgit_log_link(char *name, char *title, char *class, char *head, | |||
314 | html_url_arg(pattern); | 314 | html_url_arg(pattern); |
315 | } | 315 | } |
316 | if (ofs > 0) { | 316 | if (ofs > 0) { |
317 | html(delim); | 317 | html(delim); |
318 | html("ofs="); | 318 | html("ofs="); |
319 | htmlf("%d", ofs); | 319 | htmlf("%d", ofs); |
320 | delim = "&"; | 320 | delim = "&"; |
321 | } | 321 | } |
322 | if (showmsg) { | 322 | if (showmsg) { |
323 | html(delim); | 323 | html(delim); |
324 | html("showmsg=1"); | 324 | html("showmsg=1"); |
325 | } | 325 | } |
326 | html("'>"); | 326 | html("'>"); |
327 | html_txt(name); | 327 | html_txt(name); |
328 | html("</a>"); | 328 | html("</a>"); |
329 | } | 329 | } |
330 | 330 | ||
331 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 331 | void cgit_commit_link(char *name, char *title, char *class, char *head, |
332 | char *rev) | 332 | char *rev) |
333 | { | 333 | { |
334 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 334 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
335 | name[ctx.cfg.max_msg_len] = '\0'; | 335 | name[ctx.cfg.max_msg_len] = '\0'; |
336 | name[ctx.cfg.max_msg_len - 1] = '.'; | 336 | name[ctx.cfg.max_msg_len - 1] = '.'; |
337 | name[ctx.cfg.max_msg_len - 2] = '.'; | 337 | name[ctx.cfg.max_msg_len - 2] = '.'; |
338 | name[ctx.cfg.max_msg_len - 3] = '.'; | 338 | name[ctx.cfg.max_msg_len - 3] = '.'; |
339 | } | 339 | } |
340 | reporevlink("commit", name, title, class, head, rev, NULL); | 340 | reporevlink("commit", name, title, class, head, rev, NULL); |
341 | } | 341 | } |
342 | 342 | ||
343 | void cgit_refs_link(char *name, char *title, char *class, char *head, | 343 | void cgit_refs_link(char *name, char *title, char *class, char *head, |
344 | char *rev, char *path) | 344 | char *rev, char *path) |
345 | { | 345 | { |
346 | reporevlink("refs", name, title, class, head, rev, path); | 346 | reporevlink("refs", name, title, class, head, rev, path); |
347 | } | 347 | } |
348 | 348 | ||
349 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 349 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
350 | char *rev, char *archivename) | 350 | char *rev, char *archivename) |
351 | { | 351 | { |
352 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 352 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
353 | } | 353 | } |
354 | 354 | ||
355 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 355 | void cgit_diff_link(char *name, char *title, char *class, char *head, |
356 | char *new_rev, char *old_rev, char *path) | 356 | char *new_rev, char *old_rev, char *path) |
357 | { | 357 | { |
358 | char *delim; | 358 | char *delim; |
359 | 359 | ||
360 | delim = repolink(title, class, "diff", head, path); | 360 | delim = repolink(title, class, "diff", head, path); |
361 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { | 361 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { |
362 | html(delim); | 362 | html(delim); |
363 | html("id="); | 363 | html("id="); |
364 | html_url_arg(new_rev); | 364 | html_url_arg(new_rev); |
365 | delim = "&"; | 365 | delim = "&"; |
366 | } | 366 | } |
367 | if (old_rev) { | 367 | if (old_rev) { |
368 | html(delim); | 368 | html(delim); |
369 | html("id2="); | 369 | html("id2="); |
370 | html_url_arg(old_rev); | 370 | html_url_arg(old_rev); |
371 | } | 371 | } |
372 | html("'>"); | 372 | html("'>"); |
373 | html_txt(name); | 373 | html_txt(name); |
374 | html("</a>"); | 374 | html("</a>"); |
375 | } | 375 | } |
376 | 376 | ||
377 | void cgit_patch_link(char *name, char *title, char *class, char *head, | 377 | void cgit_patch_link(char *name, char *title, char *class, char *head, |
378 | char *rev) | 378 | char *rev) |
379 | { | 379 | { |
380 | reporevlink("patch", name, title, class, head, rev, NULL); | 380 | reporevlink("patch", name, title, class, head, rev, NULL); |
381 | } | 381 | } |
382 | 382 | ||
383 | void cgit_stats_link(char *name, char *title, char *class, char *head, | 383 | void cgit_stats_link(char *name, char *title, char *class, char *head, |
384 | char *path) | 384 | char *path) |
385 | { | 385 | { |
386 | reporevlink("stats", name, title, class, head, NULL, path); | 386 | reporevlink("stats", name, title, class, head, NULL, path); |
387 | } | 387 | } |
388 | 388 | ||
389 | void cgit_object_link(struct object *obj) | 389 | void cgit_object_link(struct object *obj) |
390 | { | 390 | { |
391 | char *page, *shortrev, *fullrev, *name; | 391 | char *page, *shortrev, *fullrev, *name; |
392 | 392 | ||
393 | fullrev = sha1_to_hex(obj->sha1); | 393 | fullrev = sha1_to_hex(obj->sha1); |
394 | shortrev = xstrdup(fullrev); | 394 | shortrev = xstrdup(fullrev); |
395 | shortrev[10] = '\0'; | 395 | shortrev[10] = '\0'; |
396 | if (obj->type == OBJ_COMMIT) { | 396 | if (obj->type == OBJ_COMMIT) { |
397 | cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL, | 397 | cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL, |
398 | ctx.qry.head, fullrev); | 398 | ctx.qry.head, fullrev); |
399 | return; | 399 | return; |
400 | } else if (obj->type == OBJ_TREE) | 400 | } else if (obj->type == OBJ_TREE) |
401 | page = "tree"; | 401 | page = "tree"; |
402 | else if (obj->type == OBJ_TAG) | 402 | else if (obj->type == OBJ_TAG) |
403 | page = "tag"; | 403 | page = "tag"; |
404 | else | 404 | else |
405 | page = "blob"; | 405 | page = "blob"; |
406 | name = fmt("%s %s...", typename(obj->type), shortrev); | 406 | name = fmt("%s %s...", typename(obj->type), shortrev); |
407 | reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL); | 407 | reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL); |
408 | } | 408 | } |
409 | 409 | ||
410 | void cgit_print_date(time_t secs, char *format, int local_time) | 410 | void cgit_print_date(time_t secs, char *format, int local_time) |
411 | { | 411 | { |
412 | char buf[64]; | 412 | char buf[64]; |
413 | struct tm *time; | 413 | struct tm *time; |
414 | 414 | ||
415 | if (!secs) | 415 | if (!secs) |
416 | return; | 416 | return; |
417 | if(local_time) | 417 | if(local_time) |
418 | time = localtime(&secs); | 418 | time = localtime(&secs); |
419 | else | 419 | else |
420 | time = gmtime(&secs); | 420 | time = gmtime(&secs); |
421 | strftime(buf, sizeof(buf)-1, format, time); | 421 | strftime(buf, sizeof(buf)-1, format, time); |
422 | html_txt(buf); | 422 | html_txt(buf); |
423 | } | 423 | } |
424 | 424 | ||
425 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 425 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
426 | { | 426 | { |
427 | time_t now, secs; | 427 | time_t now, secs; |
428 | 428 | ||
429 | if (!t) | 429 | if (!t) |
430 | return; | 430 | return; |
431 | time(&now); | 431 | time(&now); |
432 | secs = now - t; | 432 | secs = now - t; |
433 | 433 | ||
434 | if (secs > max_relative && max_relative >= 0) { | 434 | if (secs > max_relative && max_relative >= 0) { |
435 | cgit_print_date(t, format, ctx.cfg.local_time); | 435 | cgit_print_date(t, format, ctx.cfg.local_time); |
436 | return; | 436 | return; |
437 | } | 437 | } |
438 | 438 | ||
439 | if (secs < TM_HOUR * 2) { | 439 | if (secs < TM_HOUR * 2) { |
440 | htmlf("<span class='age-mins'>%.0f min.</span>", | 440 | htmlf("<span class='age-mins'>%.0f min.</span>", |
441 | secs * 1.0 / TM_MIN); | 441 | secs * 1.0 / TM_MIN); |
442 | return; | 442 | return; |
443 | } | 443 | } |
444 | if (secs < TM_DAY * 2) { | 444 | if (secs < TM_DAY * 2) { |
445 | htmlf("<span class='age-hours'>%.0f hours</span>", | 445 | htmlf("<span class='age-hours'>%.0f hours</span>", |
446 | secs * 1.0 / TM_HOUR); | 446 | secs * 1.0 / TM_HOUR); |
447 | return; | 447 | return; |
448 | } | 448 | } |
449 | if (secs < TM_WEEK * 2) { | 449 | if (secs < TM_WEEK * 2) { |
450 | htmlf("<span class='age-days'>%.0f days</span>", | 450 | htmlf("<span class='age-days'>%.0f days</span>", |
451 | secs * 1.0 / TM_DAY); | 451 | secs * 1.0 / TM_DAY); |
452 | return; | 452 | return; |
453 | } | 453 | } |
454 | if (secs < TM_MONTH * 2) { | 454 | if (secs < TM_MONTH * 2) { |
455 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 455 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
456 | secs * 1.0 / TM_WEEK); | 456 | secs * 1.0 / TM_WEEK); |
457 | return; | 457 | return; |
458 | } | 458 | } |
459 | if (secs < TM_YEAR * 2) { | 459 | if (secs < TM_YEAR * 2) { |
460 | htmlf("<span class='age-months'>%.0f months</span>", | 460 | htmlf("<span class='age-months'>%.0f months</span>", |
461 | secs * 1.0 / TM_MONTH); | 461 | secs * 1.0 / TM_MONTH); |
462 | return; | 462 | return; |
463 | } | 463 | } |
464 | htmlf("<span class='age-years'>%.0f years</span>", | 464 | htmlf("<span class='age-years'>%.0f years</span>", |
465 | secs * 1.0 / TM_YEAR); | 465 | secs * 1.0 / TM_YEAR); |
466 | } | 466 | } |
467 | 467 | ||
468 | void cgit_print_http_headers(struct cgit_context *ctx) | 468 | void cgit_print_http_headers(struct cgit_context *ctx) |
469 | { | 469 | { |
470 | if (ctx->page.mimetype && ctx->page.charset) | 470 | if (ctx->page.mimetype && ctx->page.charset) |
471 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, | 471 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, |
472 | ctx->page.charset); | 472 | ctx->page.charset); |
473 | else if (ctx->page.mimetype) | 473 | else if (ctx->page.mimetype) |
474 | htmlf("Content-Type: %s\n", ctx->page.mimetype); | 474 | htmlf("Content-Type: %s\n", ctx->page.mimetype); |
475 | if (ctx->page.size) | 475 | if (ctx->page.size) |
476 | htmlf("Content-Length: %ld\n", ctx->page.size); | 476 | htmlf("Content-Length: %ld\n", ctx->page.size); |
477 | if (ctx->page.filename) | 477 | if (ctx->page.filename) |
478 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", | 478 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", |
479 | ctx->page.filename); | 479 | ctx->page.filename); |
480 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); | 480 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); |
481 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); | 481 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); |
482 | html("\n"); | 482 | html("\n"); |
483 | } | 483 | } |
484 | 484 | ||
485 | void cgit_print_docstart(struct cgit_context *ctx) | 485 | void cgit_print_docstart(struct cgit_context *ctx) |
486 | { | 486 | { |
487 | char *host = cgit_hosturl(); | 487 | char *host = cgit_hosturl(); |
488 | html(cgit_doctype); | 488 | html(cgit_doctype); |
489 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 489 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
490 | html("<head>\n"); | 490 | html("<head>\n"); |
491 | html("<title>"); | 491 | html("<title>"); |
492 | html_txt(ctx->page.title); | 492 | html_txt(ctx->page.title); |
493 | html("</title>\n"); | 493 | html("</title>\n"); |
494 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 494 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
495 | if (ctx->cfg.robots && *ctx->cfg.robots) | 495 | if (ctx->cfg.robots && *ctx->cfg.robots) |
496 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); | 496 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); |
497 | html("<link rel='stylesheet' type='text/css' href='"); | 497 | html("<link rel='stylesheet' type='text/css' href='"); |
498 | html_attr(ctx->cfg.css); | 498 | html_attr(ctx->cfg.css); |
499 | html("'/>\n"); | 499 | html("'/>\n"); |
500 | if (ctx->cfg.favicon) { | 500 | if (ctx->cfg.favicon) { |
501 | html("<link rel='shortcut icon' href='"); | 501 | html("<link rel='shortcut icon' href='"); |
502 | html_attr(ctx->cfg.favicon); | 502 | html_attr(ctx->cfg.favicon); |
503 | html("'/>\n"); | 503 | html("'/>\n"); |
504 | } | 504 | } |
505 | if (host && ctx->repo) { | 505 | if (host && ctx->repo) { |
506 | html("<link rel='alternate' title='Atom feed' href='http://"); | 506 | html("<link rel='alternate' title='Atom feed' href='"); |
507 | html(cgit_httpscheme()); | ||
507 | html_attr(cgit_hosturl()); | 508 | html_attr(cgit_hosturl()); |
508 | html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path, | 509 | html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path, |
509 | fmt("h=%s", ctx->qry.head))); | 510 | fmt("h=%s", ctx->qry.head))); |
510 | html("' type='application/atom+xml'/>"); | 511 | html("' type='application/atom+xml'/>"); |
511 | } | 512 | } |
512 | html("</head>\n"); | 513 | html("</head>\n"); |
513 | html("<body>\n"); | 514 | html("<body>\n"); |
514 | if (ctx->cfg.header) | 515 | if (ctx->cfg.header) |
515 | html_include(ctx->cfg.header); | 516 | html_include(ctx->cfg.header); |
516 | } | 517 | } |
517 | 518 | ||
518 | void cgit_print_docend() | 519 | void cgit_print_docend() |
519 | { | 520 | { |
520 | html("</div>"); | 521 | html("</div>"); |
521 | if (ctx.cfg.footer) | 522 | if (ctx.cfg.footer) |
522 | html_include(ctx.cfg.footer); | 523 | html_include(ctx.cfg.footer); |
523 | else { | 524 | else { |
524 | htmlf("<div class='footer'>generated by cgit %s at ", | 525 | htmlf("<div class='footer'>generated by cgit %s at ", |
525 | cgit_version); | 526 | cgit_version); |
526 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); | 527 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); |
527 | html("</div>\n"); | 528 | html("</div>\n"); |
528 | } | 529 | } |
529 | html("</body>\n</html>\n"); | 530 | html("</body>\n</html>\n"); |
530 | } | 531 | } |
531 | 532 | ||
532 | int print_branch_option(const char *refname, const unsigned char *sha1, | 533 | int print_branch_option(const char *refname, const unsigned char *sha1, |
533 | int flags, void *cb_data) | 534 | int flags, void *cb_data) |
534 | { | 535 | { |
535 | char *name = (char *)refname; | 536 | char *name = (char *)refname; |
536 | html_option(name, name, ctx.qry.head); | 537 | html_option(name, name, ctx.qry.head); |
537 | return 0; | 538 | return 0; |
538 | } | 539 | } |
539 | 540 | ||
540 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 541 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
541 | int flags, void *cb_data) | 542 | int flags, void *cb_data) |
542 | { | 543 | { |
543 | struct tag *tag; | 544 | struct tag *tag; |
544 | struct taginfo *info; | 545 | struct taginfo *info; |
545 | struct object *obj; | 546 | struct object *obj; |
546 | char buf[256], *url; | 547 | char buf[256], *url; |
547 | unsigned char fileid[20]; | 548 | unsigned char fileid[20]; |
548 | int *header = (int *)cb_data; | 549 | int *header = (int *)cb_data; |
549 | 550 | ||
550 | if (prefixcmp(refname, "refs/archives")) | 551 | if (prefixcmp(refname, "refs/archives")) |
551 | return 0; | 552 | return 0; |
552 | strncpy(buf, refname+14, sizeof(buf)); | 553 | strncpy(buf, refname+14, sizeof(buf)); |
553 | obj = parse_object(sha1); | 554 | obj = parse_object(sha1); |
554 | if (!obj) | 555 | if (!obj) |
555 | return 1; | 556 | return 1; |
556 | if (obj->type == OBJ_TAG) { | 557 | if (obj->type == OBJ_TAG) { |
557 | tag = lookup_tag(sha1); | 558 | tag = lookup_tag(sha1); |
558 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 559 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
559 | return 0; | 560 | return 0; |
560 | hashcpy(fileid, tag->tagged->sha1); | 561 | hashcpy(fileid, tag->tagged->sha1); |
561 | } else if (obj->type != OBJ_BLOB) { | 562 | } else if (obj->type != OBJ_BLOB) { |
562 | return 0; | 563 | return 0; |
563 | } else { | 564 | } else { |
564 | hashcpy(fileid, sha1); | 565 | hashcpy(fileid, sha1); |
565 | } | 566 | } |
566 | if (!*header) { | 567 | if (!*header) { |
567 | html("<h1>download</h1>\n"); | 568 | html("<h1>download</h1>\n"); |
568 | *header = 1; | 569 | *header = 1; |
569 | } | 570 | } |
570 | url = cgit_pageurl(ctx.qry.repo, "blob", | 571 | url = cgit_pageurl(ctx.qry.repo, "blob", |
571 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 572 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
572 | buf)); | 573 | buf)); |
573 | html_link_open(url, NULL, "menu"); | 574 | html_link_open(url, NULL, "menu"); |
574 | html_txt(strlpart(buf, 20)); | 575 | html_txt(strlpart(buf, 20)); |
575 | html_link_close(); | 576 | html_link_close(); |
576 | return 0; | 577 | return 0; |
577 | } | 578 | } |
578 | 579 | ||
579 | void cgit_add_hidden_formfields(int incl_head, int incl_search, char *page) | 580 | void cgit_add_hidden_formfields(int incl_head, int incl_search, char *page) |
580 | { | 581 | { |
581 | char *url; | 582 | char *url; |
582 | 583 | ||
583 | if (!ctx.cfg.virtual_root) { | 584 | if (!ctx.cfg.virtual_root) { |
584 | url = fmt("%s/%s", ctx.qry.repo, page); | 585 | url = fmt("%s/%s", ctx.qry.repo, page); |
585 | if (ctx.qry.path) | 586 | if (ctx.qry.path) |
586 | url = fmt("%s/%s", url, ctx.qry.path); | 587 | url = fmt("%s/%s", url, ctx.qry.path); |
587 | html_hidden("url", url); | 588 | html_hidden("url", url); |
588 | } | 589 | } |
589 | 590 | ||
590 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && | 591 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && |
591 | strcmp(ctx.qry.head, ctx.repo->defbranch)) | 592 | strcmp(ctx.qry.head, ctx.repo->defbranch)) |
592 | html_hidden("h", ctx.qry.head); | 593 | html_hidden("h", ctx.qry.head); |
593 | 594 | ||
594 | if (ctx.qry.sha1) | 595 | if (ctx.qry.sha1) |
595 | html_hidden("id", ctx.qry.sha1); | 596 | html_hidden("id", ctx.qry.sha1); |
596 | if (ctx.qry.sha2) | 597 | if (ctx.qry.sha2) |
597 | html_hidden("id2", ctx.qry.sha2); | 598 | html_hidden("id2", ctx.qry.sha2); |
598 | if (ctx.qry.showmsg) | 599 | if (ctx.qry.showmsg) |
599 | html_hidden("showmsg", "1"); | 600 | html_hidden("showmsg", "1"); |
600 | 601 | ||
601 | if (incl_search) { | 602 | if (incl_search) { |
602 | if (ctx.qry.grep) | 603 | if (ctx.qry.grep) |
603 | html_hidden("qt", ctx.qry.grep); | 604 | html_hidden("qt", ctx.qry.grep); |
604 | if (ctx.qry.search) | 605 | if (ctx.qry.search) |
605 | html_hidden("q", ctx.qry.search); | 606 | html_hidden("q", ctx.qry.search); |
606 | } | 607 | } |
607 | } | 608 | } |
608 | 609 | ||
609 | const char *fallback_cmd = "repolist"; | 610 | const char *fallback_cmd = "repolist"; |
610 | 611 | ||
611 | char *hc(struct cgit_cmd *cmd, const char *page) | 612 | char *hc(struct cgit_cmd *cmd, const char *page) |
612 | { | 613 | { |
613 | return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active"); | 614 | return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active"); |
614 | } | 615 | } |
615 | 616 | ||
616 | void cgit_print_pageheader(struct cgit_context *ctx) | 617 | void cgit_print_pageheader(struct cgit_context *ctx) |
617 | { | 618 | { |
618 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 619 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
619 | 620 | ||
620 | if (!cmd && ctx->repo) | 621 | if (!cmd && ctx->repo) |
621 | fallback_cmd = "summary"; | 622 | fallback_cmd = "summary"; |
622 | 623 | ||
623 | html("<table id='header'>\n"); | 624 | html("<table id='header'>\n"); |
624 | html("<tr>\n"); | 625 | html("<tr>\n"); |
625 | html("<td class='logo' rowspan='2'><a href='"); | 626 | html("<td class='logo' rowspan='2'><a href='"); |
626 | if (ctx->cfg.logo_link) | 627 | if (ctx->cfg.logo_link) |
627 | html_attr(ctx->cfg.logo_link); | 628 | html_attr(ctx->cfg.logo_link); |
628 | else | 629 | else |
629 | html_attr(cgit_rooturl()); | 630 | html_attr(cgit_rooturl()); |
630 | html("'><img src='"); | 631 | html("'><img src='"); |
631 | html_attr(ctx->cfg.logo); | 632 | html_attr(ctx->cfg.logo); |
632 | html("' alt='cgit logo'/></a></td>\n"); | 633 | html("' alt='cgit logo'/></a></td>\n"); |
633 | 634 | ||
634 | html("<td class='main'>"); | 635 | html("<td class='main'>"); |
635 | if (ctx->repo) { | 636 | if (ctx->repo) { |
636 | cgit_index_link("index", NULL, NULL, NULL, 0); | 637 | cgit_index_link("index", NULL, NULL, NULL, 0); |
637 | html(" : "); | 638 | html(" : "); |
638 | cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL); | 639 | cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL); |
639 | html("</td><td class='form'>"); | 640 | html("</td><td class='form'>"); |
640 | html("<form method='get' action=''>\n"); | 641 | html("<form method='get' action=''>\n"); |
641 | cgit_add_hidden_formfields(0, 1, ctx->qry.page); | 642 | cgit_add_hidden_formfields(0, 1, ctx->qry.page); |
642 | html("<select name='h' onchange='this.form.submit();'>\n"); | 643 | html("<select name='h' onchange='this.form.submit();'>\n"); |
643 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 644 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
644 | html("</select> "); | 645 | html("</select> "); |
645 | html("<input type='submit' name='' value='switch'/>"); | 646 | html("<input type='submit' name='' value='switch'/>"); |
646 | html("</form>"); | 647 | html("</form>"); |
647 | } else | 648 | } else |
648 | html_txt(ctx->cfg.root_title); | 649 | html_txt(ctx->cfg.root_title); |
649 | html("</td></tr>\n"); | 650 | html("</td></tr>\n"); |
650 | 651 | ||
651 | html("<tr><td class='sub'>"); | 652 | html("<tr><td class='sub'>"); |
652 | if (ctx->repo) { | 653 | if (ctx->repo) { |
653 | html_txt(ctx->repo->desc); | 654 | html_txt(ctx->repo->desc); |
654 | html("</td><td class='sub right'>"); | 655 | html("</td><td class='sub right'>"); |
655 | html_txt(ctx->repo->owner); | 656 | html_txt(ctx->repo->owner); |
656 | } else { | 657 | } else { |
657 | if (ctx->cfg.root_desc) | 658 | if (ctx->cfg.root_desc) |
658 | html_txt(ctx->cfg.root_desc); | 659 | html_txt(ctx->cfg.root_desc); |
659 | else if (ctx->cfg.index_info) | 660 | else if (ctx->cfg.index_info) |
660 | html_include(ctx->cfg.index_info); | 661 | html_include(ctx->cfg.index_info); |
661 | } | 662 | } |
662 | html("</td></tr></table>\n"); | 663 | html("</td></tr></table>\n"); |
663 | 664 | ||
664 | html("<table class='tabs'><tr><td>\n"); | 665 | html("<table class='tabs'><tr><td>\n"); |
665 | if (ctx->repo) { | 666 | if (ctx->repo) { |
666 | cgit_summary_link("summary", NULL, hc(cmd, "summary"), | 667 | cgit_summary_link("summary", NULL, hc(cmd, "summary"), |
667 | ctx->qry.head); | 668 | ctx->qry.head); |
668 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 669 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
669 | ctx->qry.sha1, NULL); | 670 | ctx->qry.sha1, NULL); |
670 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 671 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
671 | NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg); | 672 | NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg); |
672 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 673 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
673 | ctx->qry.sha1, NULL); | 674 | ctx->qry.sha1, NULL); |
674 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 675 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
675 | ctx->qry.head, ctx->qry.sha1); | 676 | ctx->qry.head, ctx->qry.sha1); |
676 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 677 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
677 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 678 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
678 | if (ctx->repo->max_stats) | 679 | if (ctx->repo->max_stats) |
679 | cgit_stats_link("stats", NULL, hc(cmd, "stats"), | 680 | cgit_stats_link("stats", NULL, hc(cmd, "stats"), |
680 | ctx->qry.head, NULL); | 681 | ctx->qry.head, NULL); |
681 | if (ctx->repo->readme) | 682 | if (ctx->repo->readme) |
682 | reporevlink("about", "about", NULL, | 683 | reporevlink("about", "about", NULL, |
683 | hc(cmd, "about"), ctx->qry.head, NULL, | 684 | hc(cmd, "about"), ctx->qry.head, NULL, |
684 | NULL); | 685 | NULL); |
685 | html("</td><td class='form'>"); | 686 | html("</td><td class='form'>"); |
686 | html("<form class='right' method='get' action='"); | 687 | html("<form class='right' method='get' action='"); |
687 | if (ctx->cfg.virtual_root) | 688 | if (ctx->cfg.virtual_root) |
688 | html_url_path(cgit_fileurl(ctx->qry.repo, "log", | 689 | html_url_path(cgit_fileurl(ctx->qry.repo, "log", |
689 | ctx->qry.path, NULL)); | 690 | ctx->qry.path, NULL)); |
690 | html("'>\n"); | 691 | html("'>\n"); |
691 | cgit_add_hidden_formfields(1, 0, "log"); | 692 | cgit_add_hidden_formfields(1, 0, "log"); |
692 | html("<select name='qt'>\n"); | 693 | html("<select name='qt'>\n"); |
693 | html_option("grep", "log msg", ctx->qry.grep); | 694 | html_option("grep", "log msg", ctx->qry.grep); |
694 | html_option("author", "author", ctx->qry.grep); | 695 | html_option("author", "author", ctx->qry.grep); |
695 | html_option("committer", "committer", ctx->qry.grep); | 696 | html_option("committer", "committer", ctx->qry.grep); |
696 | html("</select>\n"); | 697 | html("</select>\n"); |
697 | html("<input class='txt' type='text' size='10' name='q' value='"); | 698 | html("<input class='txt' type='text' size='10' name='q' value='"); |
698 | html_attr(ctx->qry.search); | 699 | html_attr(ctx->qry.search); |