summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-11-03 10:15:56 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-11-03 10:15:56 (UTC)
commit68cf9b4f853177544a5d1c7b4a9eea4d2f5749d5 (patch) (unidiff)
treed5f4a784477c714e81ca3a4d675ce640a5989b94
parent51140311bb3b0d4d0e859d5045ffe4c74478f5fe (diff)
downloadcgit-68cf9b4f853177544a5d1c7b4a9eea4d2f5749d5.zip
cgit-68cf9b4f853177544a5d1c7b4a9eea4d2f5749d5.tar.gz
cgit-68cf9b4f853177544a5d1c7b4a9eea4d2f5749d5.tar.bz2
Fix search form action/hidden fields
The search form didn't properly honor the current path, so this commit fixes cgit_fileurl() and add_hidden_formfields() to make the issue go away. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c42
1 files changed, 24 insertions, 18 deletions
diff --git a/ui-shared.c b/ui-shared.c
index a03661a..88dd6b8 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -39,61 +39,63 @@ void cgit_print_error(char *msg)
39 html_txt(msg); 39 html_txt(msg);
40 html("</div>\n"); 40 html("</div>\n");
41} 41}
42 42
43char *cgit_rooturl() 43char *cgit_rooturl()
44{ 44{
45 if (cgit_virtual_root) 45 if (cgit_virtual_root)
46 return fmt("%s/", cgit_virtual_root); 46 return fmt("%s/", cgit_virtual_root);
47 else 47 else
48 return cgit_script_name; 48 return cgit_script_name;
49} 49}
50 50
51char *cgit_repourl(const char *reponame) 51char *cgit_repourl(const char *reponame)
52{ 52{
53 if (cgit_virtual_root) { 53 if (cgit_virtual_root) {
54 return fmt("%s/%s/", cgit_virtual_root, reponame); 54 return fmt("%s/%s/", cgit_virtual_root, reponame);
55 } else { 55 } else {
56 return fmt("?r=%s", reponame); 56 return fmt("?r=%s", reponame);
57 } 57 }
58} 58}
59 59
60char *cgit_fileurl(const char *reponame, const char *pagename, 60char *cgit_fileurl(const char *reponame, const char *pagename,
61 const char *filename, const char *query) 61 const char *filename, const char *query)
62{ 62{
63 char *tmp;
64 char *delim;
65
63 if (cgit_virtual_root) { 66 if (cgit_virtual_root) {
64 if (query) 67 tmp = fmt("%s/%s/%s/%s", cgit_virtual_root, reponame,
65 return fmt("%s/%s/%s/%s?%s", cgit_virtual_root, reponame, 68 pagename, (filename ? filename:""));
66 pagename, filename?filename:"", query); 69 delim = "?";
67 else
68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame,
69 pagename);
70 } else { 70 } else {
71 if (query) 71 tmp = fmt("?url=%s/%s/%s", reponame, pagename,
72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query); 72 (filename ? filename : ""));
73 else 73 delim = "&";
74 return fmt("?r=%s&amp;p=%s", reponame, pagename);
75 } 74 }
75 if (query)
76 tmp = fmt("%s%s%s", tmp, delim, query);
77 return tmp;
76} 78}
77 79
78char *cgit_pageurl(const char *reponame, const char *pagename, 80char *cgit_pageurl(const char *reponame, const char *pagename,
79 const char *query) 81 const char *query)
80{ 82{
81 return cgit_fileurl(reponame,pagename,0,query); 83 return cgit_fileurl(reponame,pagename,0,query);
82} 84}
83 85
84const char *cgit_repobasename(const char *reponame) 86const char *cgit_repobasename(const char *reponame)
85{ 87{
86 /* I assume we don't need to store more than one repo basename */ 88 /* I assume we don't need to store more than one repo basename */
87 static char rvbuf[1024]; 89 static char rvbuf[1024];
88 int p; 90 int p;
89 const char *rv; 91 const char *rv;
90 strncpy(rvbuf,reponame,sizeof(rvbuf)); 92 strncpy(rvbuf,reponame,sizeof(rvbuf));
91 if(rvbuf[sizeof(rvbuf)-1]) 93 if(rvbuf[sizeof(rvbuf)-1])
92 die("cgit_repobasename: truncated repository name '%s'", reponame); 94 die("cgit_repobasename: truncated repository name '%s'", reponame);
93 p = strlen(rvbuf)-1; 95 p = strlen(rvbuf)-1;
94 /* strip trailing slashes */ 96 /* strip trailing slashes */
95 while(p && rvbuf[p]=='/') rvbuf[p--]=0; 97 while(p && rvbuf[p]=='/') rvbuf[p--]=0;
96 /* strip trailing .git */ 98 /* strip trailing .git */
97 if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { 99 if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) {
98 p -= 3; rvbuf[p--] = 0; 100 p -= 3; rvbuf[p--] = 0;
99 } 101 }
@@ -400,55 +402,57 @@ int print_archive_ref(const char *refname, const unsigned char *sha1,
400 return 1; 402 return 1;
401 if (obj->type == OBJ_TAG) { 403 if (obj->type == OBJ_TAG) {
402 tag = lookup_tag(sha1); 404 tag = lookup_tag(sha1);
403 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 405 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
404 return 0; 406 return 0;
405 hashcpy(fileid, tag->tagged->sha1); 407 hashcpy(fileid, tag->tagged->sha1);
406 } else if (obj->type != OBJ_BLOB) { 408 } else if (obj->type != OBJ_BLOB) {
407 return 0; 409 return 0;
408 } else { 410 } else {
409 hashcpy(fileid, sha1); 411 hashcpy(fileid, sha1);
410 } 412 }
411 if (!*header) { 413 if (!*header) {
412 html("<p><h1>download</h1>"); 414 html("<p><h1>download</h1>");
413 *header = 1; 415 *header = 1;
414 } 416 }
415 url = cgit_pageurl(cgit_query_repo, "blob", 417 url = cgit_pageurl(cgit_query_repo, "blob",
416 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 418 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
417 buf)); 419 buf));
418 html_link_open(url, NULL, "menu"); 420 html_link_open(url, NULL, "menu");
419 html_txt(strlpart(buf, 20)); 421 html_txt(strlpart(buf, 20));
420 html_link_close(); 422 html_link_close();
421 return 0; 423 return 0;
422} 424}
423 425
424void add_hidden_formfields(int incl_head, int incl_search) 426void add_hidden_formfields(int incl_head, int incl_search, char *page)
425{ 427{
428 char *url;
429
426 if (!cgit_virtual_root) { 430 if (!cgit_virtual_root) {
427 if (cgit_query_repo) 431 url = fmt("%s/%s", cgit_query_repo, page);
428 html_hidden("r", cgit_query_repo); 432 if (cgit_query_path)
429 if (cgit_query_page) 433 url = fmt("%s/%s", url, cgit_query_path);
430 html_hidden("p", cgit_query_page); 434 html_hidden("url", url);
431 } 435 }
432 436
433 if (incl_head && strcmp(cgit_query_head, cgit_repo->defbranch)) 437 if (incl_head && strcmp(cgit_query_head, cgit_repo->defbranch))
434 html_hidden("h", cgit_query_head); 438 html_hidden("h", cgit_query_head);
435 439
436 if (cgit_query_sha1) 440 if (cgit_query_sha1)
437 html_hidden("id", cgit_query_sha1); 441 html_hidden("id", cgit_query_sha1);
438 if (cgit_query_sha2) 442 if (cgit_query_sha2)
439 html_hidden("id2", cgit_query_sha2); 443 html_hidden("id2", cgit_query_sha2);
440 444
441 if (incl_search) { 445 if (incl_search) {
442 if (cgit_query_grep) 446 if (cgit_query_grep)
443 html_hidden("qt", cgit_query_grep); 447 html_hidden("qt", cgit_query_grep);
444 if (cgit_query_search) 448 if (cgit_query_search)
445 html_hidden("q", cgit_query_search); 449 html_hidden("q", cgit_query_search);
446 } 450 }
447} 451}
448 452
449void cgit_print_pageheader(char *title, int show_search) 453void cgit_print_pageheader(char *title, int show_search)
450{ 454{
451 static const char *default_info = "This is cgit, a fast webinterface for git repositories"; 455 static const char *default_info = "This is cgit, a fast webinterface for git repositories";
452 int header = 0; 456 int header = 0;
453 457
454 html("<div id='sidebar'>\n"); 458 html("<div id='sidebar'>\n");
@@ -462,59 +466,61 @@ void cgit_print_pageheader(char *title, int show_search)
462 html_txt(strrpart(cgit_repo->name, 20)); 466 html_txt(strrpart(cgit_repo->name, 20));
463 html("</h1>\n"); 467 html("</h1>\n");
464 html_txt(cgit_repo->desc); 468 html_txt(cgit_repo->desc);
465 if (cgit_repo->owner) { 469 if (cgit_repo->owner) {
466 html("<p>\n<h1>owner</h1>\n"); 470 html("<p>\n<h1>owner</h1>\n");
467 html_txt(cgit_repo->owner); 471 html_txt(cgit_repo->owner);
468 } 472 }
469 html("<p>\n<h1>navigate</h1>\n"); 473 html("<p>\n<h1>navigate</h1>\n");
470 reporevlink(NULL, "summary", NULL, "menu", cgit_query_head, 474 reporevlink(NULL, "summary", NULL, "menu", cgit_query_head,
471 NULL, NULL); 475 NULL, NULL);
472 cgit_log_link("log", NULL, "menu", cgit_query_head, 476 cgit_log_link("log", NULL, "menu", cgit_query_head,
473 cgit_query_sha1, cgit_query_path, 0, NULL, NULL); 477 cgit_query_sha1, cgit_query_path, 0, NULL, NULL);
474 cgit_tree_link("tree", NULL, "menu", cgit_query_head, 478 cgit_tree_link("tree", NULL, "menu", cgit_query_head,
475 cgit_query_sha1, NULL); 479 cgit_query_sha1, NULL);
476 cgit_commit_link("commit", NULL, "menu", cgit_query_head, 480 cgit_commit_link("commit", NULL, "menu", cgit_query_head,
477 cgit_query_sha1); 481 cgit_query_sha1);
478 cgit_diff_link("diff", NULL, "menu", cgit_query_head, 482 cgit_diff_link("diff", NULL, "menu", cgit_query_head,
479 cgit_query_sha1, cgit_query_sha2, 483 cgit_query_sha1, cgit_query_sha2,
480 cgit_query_path); 484 cgit_query_path);
481 485
482 for_each_ref(print_archive_ref, &header); 486 for_each_ref(print_archive_ref, &header);
483 487
484 html("<p>\n<h1>branch</h1>\n"); 488 html("<p>\n<h1>branch</h1>\n");
485 html("<form method='get' action=''>\n"); 489 html("<form method='get' action=''>\n");
486 add_hidden_formfields(0, 1); 490 add_hidden_formfields(0, 1, cgit_query_page);
487 html("<select name='h' onchange='this.form.submit();'>\n"); 491 html("<select name='h' onchange='this.form.submit();'>\n");
488 for_each_branch_ref(print_branch_option, cgit_query_head); 492 for_each_branch_ref(print_branch_option, cgit_query_head);
489 html("</select>\n"); 493 html("</select>\n");
490 html("</form>\n"); 494 html("</form>\n");
491 495
492 html("<p>\n<h1>search</h1>\n"); 496 html("<p>\n<h1>search</h1>\n");
493 html("<form method='get' action='"); 497 html("<form method='get' action='");
494 html_attr(cgit_pageurl(cgit_query_repo, "log", NULL)); 498 if (cgit_virtual_root)
499 html_attr(cgit_fileurl(cgit_query_repo, "log",
500 cgit_query_path, NULL));
495 html("'>\n"); 501 html("'>\n");
496 add_hidden_formfields(1, 0); 502 add_hidden_formfields(1, 0, "log");
497 html("<select name='qt'>\n"); 503 html("<select name='qt'>\n");
498 html_option("grep", "log msg", cgit_query_grep); 504 html_option("grep", "log msg", cgit_query_grep);
499 html_option("author", "author", cgit_query_grep); 505 html_option("author", "author", cgit_query_grep);
500 html_option("committer", "committer", cgit_query_grep); 506 html_option("committer", "committer", cgit_query_grep);
501 html("</select>\n"); 507 html("</select>\n");
502 html("<input class='txt' type='text' name='q' value='"); 508 html("<input class='txt' type='text' name='q' value='");
503 html_attr(cgit_query_search); 509 html_attr(cgit_query_search);
504 html("'/>\n"); 510 html("'/>\n");
505 html("</form>\n"); 511 html("</form>\n");
506 } else { 512 } else {
507 if (!cgit_index_info || html_include(cgit_index_info)) 513 if (!cgit_index_info || html_include(cgit_index_info))
508 html(default_info); 514 html(default_info);
509 } 515 }
510 516
511 html("</div>\n"); 517 html("</div>\n");
512 518
513 html("</div>\n<table class='grid'><tr><td id='content'>\n"); 519 html("</div>\n<table class='grid'><tr><td id='content'>\n");
514} 520}
515 521
516 522
517void cgit_print_snapshot_start(const char *mimetype, const char *filename, 523void cgit_print_snapshot_start(const char *mimetype, const char *filename,
518 struct cacheitem *item) 524 struct cacheitem *item)
519{ 525{
520 htmlf("Content-Type: %s\n", mimetype); 526 htmlf("Content-Type: %s\n", mimetype);