X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/3f1ebd3565afa33196dfc3e8584e04564987e33c..5f323c1ff45c10d8f8b0a673d2fe7e98272f5d78:/ui-tree.c?ds=sidebyside diff --git a/ui-tree.c b/ui-tree.c index 442b6be..b692b56 100644 --- a/ui-tree.c +++ b/ui-tree.c @@ -11,9 +11,11 @@ #include "html.h" #include "ui-shared.h" -char *curr_rev; -char *match_path; -int header = 0; +struct walk_tree_context { + char *curr_rev; + char *match_path; + int state; +}; static void print_text_buffer(const char *name, char *buf, unsigned long size) { @@ -27,10 +29,10 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size) html("
");
idx = 0;
lineno = 0;
-
+
if (size) {
htmlf(numberfmt, ++lineno);
- while(idx < size - 1) { // skip absolute last newline
+ while (idx < size - 1) { // skip absolute last newline
if (buf[idx] == '\n')
htmlf(numberfmt, ++lineno);
idx++;
@@ -84,7 +86,7 @@ static void print_binary_buffer(char *buf, unsigned long size)
html("\n");
}
-static void print_object(const unsigned char *sha1, char *path, const char *basename)
+static void print_object(const unsigned char *sha1, char *path, const char *basename, const char *rev)
{
enum object_type type;
char *buf;
@@ -106,7 +108,7 @@ static void print_object(const unsigned char *sha1, char *path, const char *base
htmlf("blob: %s (", sha1_to_hex(sha1));
cgit_plain_link("plain", NULL, NULL, ctx.qry.head,
- curr_rev, path);
+ rev, path);
html(")\n");
if (ctx.cfg.max_blob_size && size / 1024 > ctx.cfg.max_blob_size) {
@@ -126,6 +128,7 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
const char *pathname, unsigned int mode, int stage,
void *cbdata)
{
+ struct walk_tree_context *walk_tree_ctx = cbdata;
char *name;
char *fullpath;
char *class;
@@ -150,16 +153,10 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
cgit_print_filemode(mode);
html("