summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 8a00099..6f83d2a 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -248,384 +248,389 @@ void cgit_log_link(char *name, char *title, char *class, char *head,
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
277void cgit_commit_link(char *name, char *title, char *class, char *head, 277void 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
289void cgit_refs_link(char *name, char *title, char *class, char *head, 289void 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
295void cgit_snapshot_link(char *name, char *title, char *class, char *head, 295void 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
301void cgit_diff_link(char *name, char *title, char *class, char *head, 301void 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 = "&amp;"; 311 delim = "&amp;";
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
323void cgit_patch_link(char *name, char *title, char *class, char *head, 323void 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
329void cgit_object_link(struct object *obj) 329void 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
356void cgit_print_date(time_t secs, char *format) 356void 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
368void cgit_print_age(time_t t, time_t max_relative, char *format) 368void 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
411void cgit_print_http_headers(struct cgit_context *ctx) 411void 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
426void cgit_print_docstart(struct cgit_context *ctx) 426void 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 if (ctx->cfg.favicon) {
441 html("<link rel='shortcut icon' href='");
442 html_attr(ctx->cfg.favicon);
443 html("'/>\n");
444 }
440 html("</head>\n"); 445 html("</head>\n");
441 html("<body>\n"); 446 html("<body>\n");
442} 447}
443 448
444void cgit_print_docend() 449void cgit_print_docend()
445{ 450{
446 html("</div>"); 451 html("</div>");
447 if (ctx.cfg.footer) 452 if (ctx.cfg.footer)
448 html_include(ctx.cfg.footer); 453 html_include(ctx.cfg.footer);
449 else { 454 else {
450 html("<div class='footer'>generated "); 455 html("<div class='footer'>generated ");
451 cgit_print_date(time(NULL), FMT_LONGDATE); 456 cgit_print_date(time(NULL), FMT_LONGDATE);
452 htmlf(" by cgit %s", cgit_version); 457 htmlf(" by cgit %s", cgit_version);
453 html("</div>\n"); 458 html("</div>\n");
454 } 459 }
455 html("</body>\n</html>\n"); 460 html("</body>\n</html>\n");
456} 461}
457 462
458int print_branch_option(const char *refname, const unsigned char *sha1, 463int print_branch_option(const char *refname, const unsigned char *sha1,
459 int flags, void *cb_data) 464 int flags, void *cb_data)
460{ 465{
461 char *name = (char *)refname; 466 char *name = (char *)refname;
462 html_option(name, name, ctx.qry.head); 467 html_option(name, name, ctx.qry.head);
463 return 0; 468 return 0;
464} 469}
465 470
466int print_archive_ref(const char *refname, const unsigned char *sha1, 471int print_archive_ref(const char *refname, const unsigned char *sha1,
467 int flags, void *cb_data) 472 int flags, void *cb_data)
468{ 473{
469 struct tag *tag; 474 struct tag *tag;
470 struct taginfo *info; 475 struct taginfo *info;
471 struct object *obj; 476 struct object *obj;
472 char buf[256], *url; 477 char buf[256], *url;
473 unsigned char fileid[20]; 478 unsigned char fileid[20];
474 int *header = (int *)cb_data; 479 int *header = (int *)cb_data;
475 480
476 if (prefixcmp(refname, "refs/archives")) 481 if (prefixcmp(refname, "refs/archives"))
477 return 0; 482 return 0;
478 strncpy(buf, refname+14, sizeof(buf)); 483 strncpy(buf, refname+14, sizeof(buf));
479 obj = parse_object(sha1); 484 obj = parse_object(sha1);
480 if (!obj) 485 if (!obj)
481 return 1; 486 return 1;
482 if (obj->type == OBJ_TAG) { 487 if (obj->type == OBJ_TAG) {
483 tag = lookup_tag(sha1); 488 tag = lookup_tag(sha1);
484 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 489 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
485 return 0; 490 return 0;
486 hashcpy(fileid, tag->tagged->sha1); 491 hashcpy(fileid, tag->tagged->sha1);
487 } else if (obj->type != OBJ_BLOB) { 492 } else if (obj->type != OBJ_BLOB) {
488 return 0; 493 return 0;
489 } else { 494 } else {
490 hashcpy(fileid, sha1); 495 hashcpy(fileid, sha1);
491 } 496 }
492 if (!*header) { 497 if (!*header) {
493 html("<h1>download</h1>\n"); 498 html("<h1>download</h1>\n");
494 *header = 1; 499 *header = 1;
495 } 500 }
496 url = cgit_pageurl(ctx.qry.repo, "blob", 501 url = cgit_pageurl(ctx.qry.repo, "blob",
497 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 502 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
498 buf)); 503 buf));
499 html_link_open(url, NULL, "menu"); 504 html_link_open(url, NULL, "menu");
500 html_txt(strlpart(buf, 20)); 505 html_txt(strlpart(buf, 20));
501 html_link_close(); 506 html_link_close();
502 return 0; 507 return 0;
503} 508}
504 509
505void add_hidden_formfields(int incl_head, int incl_search, char *page) 510void add_hidden_formfields(int incl_head, int incl_search, char *page)
506{ 511{
507 char *url; 512 char *url;
508 513
509 if (!ctx.cfg.virtual_root) { 514 if (!ctx.cfg.virtual_root) {
510 url = fmt("%s/%s", ctx.qry.repo, page); 515 url = fmt("%s/%s", ctx.qry.repo, page);
511 if (ctx.qry.path) 516 if (ctx.qry.path)
512 url = fmt("%s/%s", url, ctx.qry.path); 517 url = fmt("%s/%s", url, ctx.qry.path);
513 html_hidden("url", url); 518 html_hidden("url", url);
514 } 519 }
515 520
516 if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) 521 if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch))
517 html_hidden("h", ctx.qry.head); 522 html_hidden("h", ctx.qry.head);
518 523
519 if (ctx.qry.sha1) 524 if (ctx.qry.sha1)
520 html_hidden("id", ctx.qry.sha1); 525 html_hidden("id", ctx.qry.sha1);
521 if (ctx.qry.sha2) 526 if (ctx.qry.sha2)
522 html_hidden("id2", ctx.qry.sha2); 527 html_hidden("id2", ctx.qry.sha2);
523 528
524 if (incl_search) { 529 if (incl_search) {
525 if (ctx.qry.grep) 530 if (ctx.qry.grep)
526 html_hidden("qt", ctx.qry.grep); 531 html_hidden("qt", ctx.qry.grep);
527 if (ctx.qry.search) 532 if (ctx.qry.search)
528 html_hidden("q", ctx.qry.search); 533 html_hidden("q", ctx.qry.search);
529 } 534 }
530} 535}
531 536
532char *hc(struct cgit_cmd *cmd, const char *page) 537char *hc(struct cgit_cmd *cmd, const char *page)
533{ 538{
534 return (strcmp(cmd->name, page) ? NULL : "active"); 539 return (strcmp(cmd->name, page) ? NULL : "active");
535} 540}
536 541
537void cgit_print_pageheader(struct cgit_context *ctx) 542void cgit_print_pageheader(struct cgit_context *ctx)
538{ 543{
539 struct cgit_cmd *cmd = cgit_get_cmd(ctx); 544 struct cgit_cmd *cmd = cgit_get_cmd(ctx);
540 545
541 html("<table id='header'>\n"); 546 html("<table id='header'>\n");
542 html("<tr>\n"); 547 html("<tr>\n");
543 html("<td class='logo' rowspan='2'><a href='"); 548 html("<td class='logo' rowspan='2'><a href='");
544 if (ctx->cfg.logo_link) 549 if (ctx->cfg.logo_link)
545 html_attr(ctx->cfg.logo_link); 550 html_attr(ctx->cfg.logo_link);
546 else 551 else
547 html_attr(cgit_rooturl()); 552 html_attr(cgit_rooturl());
548 html("'><img src='"); 553 html("'><img src='");
549 html_attr(ctx->cfg.logo); 554 html_attr(ctx->cfg.logo);
550 html("' alt='cgit logo'/></a></td>\n"); 555 html("' alt='cgit logo'/></a></td>\n");
551 556
552 html("<td class='main'>"); 557 html("<td class='main'>");
553 if (ctx->repo) { 558 if (ctx->repo) {
554 cgit_index_link("index", NULL, NULL, NULL, 0); 559 cgit_index_link("index", NULL, NULL, NULL, 0);
555 html(" : "); 560 html(" : ");
556 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), 561 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"),
557 ctx->qry.head, NULL, NULL); 562 ctx->qry.head, NULL, NULL);
558 html("</td><td class='form'>"); 563 html("</td><td class='form'>");
559 html("<form method='get' action=''>\n"); 564 html("<form method='get' action=''>\n");
560 add_hidden_formfields(0, 1, ctx->qry.page); 565 add_hidden_formfields(0, 1, ctx->qry.page);
561 html("<select name='h' onchange='this.form.submit();'>\n"); 566 html("<select name='h' onchange='this.form.submit();'>\n");
562 for_each_branch_ref(print_branch_option, ctx->qry.head); 567 for_each_branch_ref(print_branch_option, ctx->qry.head);
563 html("</select> "); 568 html("</select> ");
564 html("<input type='submit' name='' value='switch'/>"); 569 html("<input type='submit' name='' value='switch'/>");
565 html("</form>"); 570 html("</form>");
566 } else 571 } else
567 html_txt(ctx->cfg.root_title); 572 html_txt(ctx->cfg.root_title);
568 html("</td></tr>\n"); 573 html("</td></tr>\n");
569 574
570 html("<tr><td class='sub'"); 575 html("<tr><td class='sub'");
571 if (ctx->repo) { 576 if (ctx->repo) {
572 html(" colspan='2'>"); 577 html(" colspan='2'>");
573 html_txt(ctx->repo->desc); 578 html_txt(ctx->repo->desc);
574 } else { 579 } else {
575 html(">"); 580 html(">");
576 if (ctx->cfg.root_desc) 581 if (ctx->cfg.root_desc)
577 html_txt(ctx->cfg.root_desc); 582 html_txt(ctx->cfg.root_desc);
578 else if (ctx->cfg.index_info) 583 else if (ctx->cfg.index_info)
579 html_include(ctx->cfg.index_info); 584 html_include(ctx->cfg.index_info);
580 } 585 }
581 html("</td></tr></table>\n"); 586 html("</td></tr></table>\n");
582 587
583 html("<table class='tabs'><tr><td>\n"); 588 html("<table class='tabs'><tr><td>\n");
584 if (ctx->repo) { 589 if (ctx->repo) {
585 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), 590 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"),
586 ctx->qry.head, NULL, NULL); 591 ctx->qry.head, NULL, NULL);
587 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, 592 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,
588 ctx->qry.sha1, NULL); 593 ctx->qry.sha1, NULL);
589 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, 594 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
590 NULL, NULL, 0, NULL, NULL); 595 NULL, NULL, 0, NULL, NULL);
591 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, 596 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head,
592 ctx->qry.sha1, NULL); 597 ctx->qry.sha1, NULL);
593 cgit_commit_link("commit", NULL, hc(cmd, "commit"), 598 cgit_commit_link("commit", NULL, hc(cmd, "commit"),
594 ctx->qry.head, ctx->qry.sha1); 599 ctx->qry.head, ctx->qry.sha1);
595 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, 600 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head,
596 ctx->qry.sha1, ctx->qry.sha2, NULL); 601 ctx->qry.sha1, ctx->qry.sha2, NULL);
597 if (ctx->repo->readme) 602 if (ctx->repo->readme)
598 reporevlink("about", "about", NULL, 603 reporevlink("about", "about", NULL,
599 hc(cmd, "about"), ctx->qry.head, NULL, 604 hc(cmd, "about"), ctx->qry.head, NULL,
600 NULL); 605 NULL);
601 html("</td><td class='form'>"); 606 html("</td><td class='form'>");
602 html("<form class='right' method='get' action='"); 607 html("<form class='right' method='get' action='");
603 if (ctx->cfg.virtual_root) 608 if (ctx->cfg.virtual_root)
604 html_attr(cgit_fileurl(ctx->qry.repo, "log", 609 html_attr(cgit_fileurl(ctx->qry.repo, "log",
605 ctx->qry.path, NULL)); 610 ctx->qry.path, NULL));
606 html("'>\n"); 611 html("'>\n");
607 add_hidden_formfields(1, 0, "log"); 612 add_hidden_formfields(1, 0, "log");
608 html("<select name='qt'>\n"); 613 html("<select name='qt'>\n");
609 html_option("grep", "log msg", ctx->qry.grep); 614 html_option("grep", "log msg", ctx->qry.grep);
610 html_option("author", "author", ctx->qry.grep); 615 html_option("author", "author", ctx->qry.grep);
611 html_option("committer", "committer", ctx->qry.grep); 616 html_option("committer", "committer", ctx->qry.grep);
612 html("</select>\n"); 617 html("</select>\n");
613 html("<input class='txt' type='text' size='10' name='q' value='"); 618 html("<input class='txt' type='text' size='10' name='q' value='");
614 html_attr(ctx->qry.search); 619 html_attr(ctx->qry.search);
615 html("'/>\n"); 620 html("'/>\n");
616 html("<input type='submit' value='search'/>\n"); 621 html("<input type='submit' value='search'/>\n");
617 html("</form>\n"); 622 html("</form>\n");
618 } else { 623 } else {
619 site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); 624 site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0);
620 if (ctx->cfg.root_readme) 625 if (ctx->cfg.root_readme)
621 site_link("about", "about", NULL, hc(cmd, "about"), 626 site_link("about", "about", NULL, hc(cmd, "about"),
622 NULL, 0); 627 NULL, 0);
623 html("</td><td class='form'>"); 628 html("</td><td class='form'>");
624 html("<form method='get' action='"); 629 html("<form method='get' action='");
625 html_attr(cgit_rooturl()); 630 html_attr(cgit_rooturl());
626 html("'>\n"); 631 html("'>\n");
627 html("<input type='text' name='q' size='10' value='"); 632 html("<input type='text' name='q' size='10' value='");
628 html_attr(ctx->qry.search); 633 html_attr(ctx->qry.search);
629 html("'/>\n"); 634 html("'/>\n");
630 html("<input type='submit' value='search'/>\n"); 635 html("<input type='submit' value='search'/>\n");
631 html("</form>"); 636 html("</form>");