|
diff --git a/ui-tree.c b/ui-tree.c index c138877..9be3140 100644 --- a/ ui-tree.c+++ b/ ui-tree.c |
|
@@ -9,2 +9,4 @@ |
9 | #include "cgit.h" |
9 | #include "cgit.h" |
| |
10 | #include "html.h" |
| |
11 | #include "ui-shared.h" |
10 | |
12 | |
@@ -36,3 +38,3 @@ static void print_object(const unsigned char *sha1, char *path) |
36 | html(" blob: <a href='"); |
38 | html(" blob: <a href='"); |
37 | html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); |
39 | html_attr(cgit_pageurl(ctx.qry.repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); |
38 | htmlf("'>%s</a>",sha1_to_hex(sha1)); |
40 | htmlf("'>%s</a>",sha1_to_hex(sha1)); |
@@ -69,4 +71,4 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
69 | name = xstrdup(pathname); |
71 | name = xstrdup(pathname); |
70 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", |
72 | fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "", |
71 | cgit_query_path ? "/" : "", name); |
73 | ctx.qry.path ? "/" : "", name); |
72 | |
74 | |
@@ -81,3 +83,3 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
81 | html("<tr><td class='ls-mode'>"); |
83 | html("<tr><td class='ls-mode'>"); |
82 | html_filemode(mode); |
84 | cgit_print_filemode(mode); |
83 | html("</td><td>"); |
85 | html("</td><td>"); |
@@ -85,3 +87,3 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
85 | htmlf("<a class='ls-mod' href='"); |
87 | htmlf("<a class='ls-mod' href='"); |
86 | html_attr(fmt(cgit_repo->module_link, |
88 | html_attr(fmt(ctx.repo->module_link, |
87 | name, |
89 | name, |
@@ -92,6 +94,6 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
92 | } else if (S_ISDIR(mode)) { |
94 | } else if (S_ISDIR(mode)) { |
93 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
95 | cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head, |
94 | curr_rev, fullpath); |
96 | curr_rev, fullpath); |
95 | } else { |
97 | } else { |
96 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
98 | cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head, |
97 | curr_rev, fullpath); |
99 | curr_rev, fullpath); |
@@ -101,3 +103,3 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
101 | html("<td>"); |
103 | html("<td>"); |
102 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, |
104 | cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev, |
103 | fullpath, 0, NULL, NULL); |
105 | fullpath, 0, NULL, NULL); |
@@ -155,6 +157,6 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
155 | strcpy(buffer+baselen, pathname); |
157 | strcpy(buffer+baselen, pathname); |
156 | url = cgit_pageurl(cgit_query_repo, "tree", |
158 | url = cgit_pageurl(ctx.qry.repo, "tree", |
157 | fmt("h=%s&path=%s", curr_rev, buffer)); |
159 | fmt("h=%s&path=%s", curr_rev, buffer)); |
158 | html("/"); |
160 | html("/"); |
159 | cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, |
161 | cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head, |
160 | curr_rev, buffer); |
162 | curr_rev, buffer); |
@@ -190,3 +192,3 @@ void cgit_print_tree(const char *rev, char *path) |
190 | if (!rev) |
192 | if (!rev) |
191 | rev = cgit_query_head; |
193 | rev = ctx.qry.head; |
192 | |
194 | |
@@ -204,3 +206,3 @@ void cgit_print_tree(const char *rev, char *path) |
204 | html("path: <a href='"); |
206 | html("path: <a href='"); |
205 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); |
207 | html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev))); |
206 | html("'>root</a>"); |
208 | html("'>root</a>"); |
|