diff options
| author | 2008-02-16 19:53:40 (JST) | |
|---|---|---|
| committer | 2008-02-16 20:07:28 (JST) | |
| commit | d14d77fe95c3b6224b40df9b101dded0deea913c (patch) | |
| tree | 7e0d9c8f2c0f86b8946aea0bb823085c33b164b3 /ui-shared.c | |
| parent | e5ed227ef0da561e2bde8646ec816842392377ee (diff) | |
| download | cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.zip cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.tar.gz | |
Introduce struct cgit_context
This struct will hold all the cgit runtime information currently found in
a multitude of global variables.
The first cleanup removes all querystring-related variables.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c')
| -rw-r--r-- | ui-shared.c | 86 |
1 files changed, 43 insertions, 43 deletions
diff --git a/ui-shared.c b/ui-shared.c index 60aa2e3..6a41fb0 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
| @@ -112,10 +112,10 @@ char *cgit_currurl() | |||
| 112 | { | 112 | { |
| 113 | if (!cgit_virtual_root) | 113 | if (!cgit_virtual_root) |
| 114 | return cgit_script_name; | 114 | return cgit_script_name; |
| 115 | else if (cgit_query_page) | 115 | else if (ctx.qry.page) |
| 116 | return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); | 116 | return fmt("%s/%s/%s/", cgit_virtual_root, ctx.qry.repo, ctx.qry.page); |
| 117 | else if (cgit_query_repo) | 117 | else if (ctx.qry.repo) |
| 118 | return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); | 118 | return fmt("%s/%s/", cgit_virtual_root, ctx.qry.repo); |
| 119 | else | 119 | else |
| 120 | return fmt("%s/", cgit_virtual_root); | 120 | return fmt("%s/", cgit_virtual_root); |
| 121 | } | 121 | } |
| @@ -179,7 +179,7 @@ static void reporevlink(char *page, char *name, char *title, char *class, | |||
| 179 | char *delim; | 179 | char *delim; |
| 180 | 180 | ||
| 181 | delim = repolink(title, class, page, head, path); | 181 | delim = repolink(title, class, page, head, path); |
| 182 | if (rev && strcmp(rev, cgit_query_head)) { | 182 | if (rev && strcmp(rev, ctx.qry.head)) { |
| 183 | html(delim); | 183 | html(delim); |
| 184 | html("id="); | 184 | html("id="); |
| 185 | html_attr(rev); | 185 | html_attr(rev); |
| @@ -201,7 +201,7 @@ void cgit_log_link(char *name, char *title, char *class, char *head, | |||
| 201 | char *delim; | 201 | char *delim; |
| 202 | 202 | ||
| 203 | delim = repolink(title, class, "log", head, path); | 203 | delim = repolink(title, class, "log", head, path); |
| 204 | if (rev && strcmp(rev, cgit_query_head)) { | 204 | if (rev && strcmp(rev, ctx.qry.head)) { |
| 205 | html(delim); | 205 | html(delim); |
| 206 | html("id="); | 206 | html("id="); |
| 207 | html_attr(rev); | 207 | html_attr(rev); |
| @@ -256,7 +256,7 @@ void cgit_diff_link(char *name, char *title, char *class, char *head, | |||
| 256 | char *delim; | 256 | char *delim; |
| 257 | 257 | ||
| 258 | delim = repolink(title, class, "diff", head, path); | 258 | delim = repolink(title, class, "diff", head, path); |
| 259 | if (new_rev && strcmp(new_rev, cgit_query_head)) { | 259 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { |
| 260 | html(delim); | 260 | html(delim); |
| 261 | html("id="); | 261 | html("id="); |
| 262 | html_attr(new_rev); | 262 | html_attr(new_rev); |
| @@ -284,7 +284,7 @@ void cgit_object_link(struct object *obj) | |||
| 284 | 284 | ||
| 285 | if (obj->type == OBJ_COMMIT) { | 285 | if (obj->type == OBJ_COMMIT) { |
| 286 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, | 286 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, |
| 287 | cgit_query_head, sha1_to_hex(obj->sha1)); | 287 | ctx.qry.head, sha1_to_hex(obj->sha1)); |
| 288 | return; | 288 | return; |
| 289 | } else if (obj->type == OBJ_TREE) { | 289 | } else if (obj->type == OBJ_TREE) { |
| 290 | page = "tree"; | 290 | page = "tree"; |
| @@ -297,7 +297,7 @@ void cgit_object_link(struct object *obj) | |||
| 297 | arg = "id"; | 297 | arg = "id"; |
| 298 | } | 298 | } |
| 299 | 299 | ||
| 300 | url = cgit_pageurl(cgit_query_repo, page, | 300 | url = cgit_pageurl(ctx.qry.repo, page, |
| 301 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); | 301 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); |
| 302 | html_link_open(url, NULL, NULL); | 302 | html_link_open(url, NULL, NULL); |
| 303 | htmlf("%s %s", typename(obj->type), | 303 | htmlf("%s %s", typename(obj->type), |
| @@ -392,7 +392,7 @@ int print_branch_option(const char *refname, const unsigned char *sha1, | |||
| 392 | int flags, void *cb_data) | 392 | int flags, void *cb_data) |
| 393 | { | 393 | { |
| 394 | char *name = (char *)refname; | 394 | char *name = (char *)refname; |
| 395 | html_option(name, name, cgit_query_head); | 395 | html_option(name, name, ctx.qry.head); |
| 396 | return 0; | 396 | return 0; |
| 397 | } | 397 | } |
| 398 | 398 | ||
| @@ -426,7 +426,7 @@ int print_archive_ref(const char *refname, const unsigned char *sha1, | |||
| 426 | html("<h1>download</h1>\n"); | 426 | html("<h1>download</h1>\n"); |
| 427 | *header = 1; | 427 | *header = 1; |
| 428 | } | 428 | } |
| 429 | url = cgit_pageurl(cgit_query_repo, "blob", | 429 | url = cgit_pageurl(ctx.qry.repo, "blob", |
| 430 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 430 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
| 431 | buf)); | 431 | buf)); |
| 432 | html_link_open(url, NULL, "menu"); | 432 | html_link_open(url, NULL, "menu"); |
| @@ -440,25 +440,25 @@ void add_hidden_formfields(int incl_head, int incl_search, char *page) | |||
| 440 | char *url; | 440 | char *url; |
| 441 | 441 | ||
| 442 | if (!cgit_virtual_root) { | 442 | if (!cgit_virtual_root) { |
| 443 | url = fmt("%s/%s", cgit_query_repo, page); | 443 | url = fmt("%s/%s", ctx.qry.repo, page); |
| 444 | if (cgit_query_path) | 444 | if (ctx.qry.path) |
| 445 | url = fmt("%s/%s", url, cgit_query_path); | 445 | url = fmt("%s/%s", url, ctx.qry.path); |
| 446 | html_hidden("url", url); | 446 | html_hidden("url", url); |
| 447 | } | 447 | } |
| 448 | 448 | ||
| 449 | if (incl_head && strcmp(cgit_query_head, cgit_repo->defbranch)) | 449 | if (incl_head && strcmp(ctx.qry.head, cgit_repo->defbranch)) |
| 450 | html_hidden("h", cgit_query_head); | 450 | html_hidden("h", ctx.qry.head); |
| 451 | 451 | ||
| 452 | if (cgit_query_sha1) | 452 | if (ctx.qry.sha1) |
| 453 | html_hidden("id", cgit_query_sha1); | 453 | html_hidden("id", ctx.qry.sha1); |
| 454 | if (cgit_query_sha2) | 454 | if (ctx.qry.sha2) |
| 455 | html_hidden("id2", cgit_query_sha2); | 455 | html_hidden("id2", ctx.qry.sha2); |
| 456 | 456 | ||
| 457 | if (incl_search) { | 457 | if (incl_search) { |
| 458 | if (cgit_query_grep) | 458 | if (ctx.qry.grep) |
| 459 | html_hidden("qt", cgit_query_grep); | 459 | html_hidden("qt", ctx.qry.grep); |
| 460 | if (cgit_query_search) | 460 | if (ctx.qry.search) |
| 461 | html_hidden("q", cgit_query_search); | 461 | html_hidden("q", ctx.qry.search); |
| 462 | } | 462 | } |
| 463 | } | 463 | } |
| 464 | 464 | ||
| @@ -476,7 +476,7 @@ void cgit_print_pageheader(char *title, int show_search) | |||
| 476 | htmlf("'><img src='%s' alt='cgit'/></a>\n", | 476 | htmlf("'><img src='%s' alt='cgit'/></a>\n", |
| 477 | cgit_logo); | 477 | cgit_logo); |
| 478 | html("</td></tr>\n<tr><td class='sidebar'>\n"); | 478 | html("</td></tr>\n<tr><td class='sidebar'>\n"); |
| 479 | if (cgit_query_repo) { | 479 | if (ctx.qry.repo) { |
| 480 | html("<h1 class='first'>"); | 480 | html("<h1 class='first'>"); |
| 481 | html_txt(strrpart(cgit_repo->name, 20)); | 481 | html_txt(strrpart(cgit_repo->name, 20)); |
| 482 | html("</h1>\n"); | 482 | html("</h1>\n"); |
| @@ -486,18 +486,18 @@ void cgit_print_pageheader(char *title, int show_search) | |||
| 486 | html_txt(cgit_repo->owner); | 486 | html_txt(cgit_repo->owner); |
| 487 | } | 487 | } |
| 488 | html("<h1>navigate</h1>\n"); | 488 | html("<h1>navigate</h1>\n"); |
| 489 | reporevlink(NULL, "summary", NULL, "menu", cgit_query_head, | 489 | reporevlink(NULL, "summary", NULL, "menu", ctx.qry.head, |
| 490 | NULL, NULL); | 490 | NULL, NULL); |
| 491 | cgit_log_link("log", NULL, "menu", cgit_query_head, NULL, NULL, | 491 | cgit_log_link("log", NULL, "menu", ctx.qry.head, NULL, NULL, |
| 492 | 0, NULL, NULL); | 492 | 0, NULL, NULL); |
| 493 | cgit_tree_link("tree", NULL, "menu", cgit_query_head, | 493 | cgit_tree_link("tree", NULL, "menu", ctx.qry.head, |
| 494 | cgit_query_sha1, NULL); | 494 | ctx.qry.sha1, NULL); |
| 495 | cgit_commit_link("commit", NULL, "menu", cgit_query_head, | 495 | cgit_commit_link("commit", NULL, "menu", ctx.qry.head, |
| 496 | cgit_query_sha1); | 496 | ctx.qry.sha1); |
| 497 | cgit_diff_link("diff", NULL, "menu", cgit_query_head, | 497 | cgit_diff_link("diff", NULL, "menu", ctx.qry.head, |
| 498 | cgit_query_sha1, cgit_query_sha2, NULL); | 498 | ctx.qry.sha1, ctx.qry.sha2, NULL); |
| 499 | cgit_patch_link("patch", NULL, "menu", cgit_query_head, | 499 | cgit_patch_link("patch", NULL, "menu", ctx.qry.head, |
| 500 | cgit_query_sha1); | 500 | ctx.qry.sha1); |
| 501 | 501 | ||
| 502 | for_each_ref(print_archive_ref, &header); | 502 | for_each_ref(print_archive_ref, &header); |
| 503 | 503 | ||
| @@ -519,10 +519,10 @@ void cgit_print_pageheader(char *title, int show_search) | |||
| 519 | 519 | ||
| 520 | html("<h1>branch</h1>\n"); | 520 | html("<h1>branch</h1>\n"); |
| 521 | html("<form method='get' action=''>\n"); | 521 | html("<form method='get' action=''>\n"); |
| 522 | add_hidden_formfields(0, 1, cgit_query_page); | 522 | add_hidden_formfields(0, 1, ctx.qry.page); |
| 523 | // html("<table summary='branch selector' class='grid'><tr><td id='branch-dropdown-cell'>"); | 523 | // html("<table summary='branch selector' class='grid'><tr><td id='branch-dropdown-cell'>"); |
| 524 | html("<select name='h' onchange='this.form.submit();'>\n"); | 524 | html("<select name='h' onchange='this.form.submit();'>\n"); |
| 525 | for_each_branch_ref(print_branch_option, cgit_query_head); | 525 | for_each_branch_ref(print_branch_option, ctx.qry.head); |
| 526 | html("</select>\n"); | 526 | html("</select>\n"); |
| 527 | // html("</td><td>"); | 527 | // html("</td><td>"); |
| 528 | html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); | 528 | html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); |
| @@ -532,17 +532,17 @@ void cgit_print_pageheader(char *title, int show_search) | |||
| 532 | html("<h1>search</h1>\n"); | 532 | html("<h1>search</h1>\n"); |
| 533 | html("<form method='get' action='"); | 533 | html("<form method='get' action='"); |
| 534 | if (cgit_virtual_root) | 534 | if (cgit_virtual_root) |
| 535 | html_attr(cgit_fileurl(cgit_query_repo, "log", | 535 | html_attr(cgit_fileurl(ctx.qry.repo, "log", |
| 536 | cgit_query_path, NULL)); | 536 | ctx.qry.path, NULL)); |
| 537 | html("'>\n"); | 537 | html("'>\n"); |
| 538 | add_hidden_formfields(1, 0, "log"); | 538 | add_hidden_formfields(1, 0, "log"); |
| 539 | html("<select name='qt'>\n"); | 539 | html("<select name='qt'>\n"); |
| 540 | html_option("grep", "log msg", cgit_query_grep); | 540 | html_option("grep", "log msg", ctx.qry.grep); |
| 541 | html_option("author", "author", cgit_query_grep); | 541 | html_option("author", "author", ctx.qry.grep); |
| 542 | html_option("committer", "committer", cgit_query_grep); | 542 | html_option("committer", "committer", ctx.qry.grep); |
| 543 | html("</select>\n"); | 543 | html("</select>\n"); |
| 544 | html("<input class='txt' type='text' name='q' value='"); | 544 | html("<input class='txt' type='text' name='q' value='"); |
| 545 | html_attr(cgit_query_search); | 545 | html_attr(ctx.qry.search); |
| 546 | html("'/>\n"); | 546 | html("'/>\n"); |
| 547 | html("</form>\n"); | 547 | html("</form>\n"); |
| 548 | } else { | 548 | } else { |
