aboutsummaryrefslogtreecommitdiff
path: root/ui-blob.c
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'ui-blob.c')
-rw-r--r--ui-blob.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/ui-blob.c b/ui-blob.c
index 11589db..f5b844b 100644
--- a/ui-blob.c
+++ b/ui-blob.c
@@ -1,16 +1,6 @@
-/* ui-blob.c: show blob content
- *
- * Copyright (C) 2008 Lars Hjemli
- *
- * Licensed under GNU General Public License v2
- * (see COPYING for full license text)
- */
-
#include "cgit.h"
-#include "html.h"
-#include "ui-shared.h"
-void cgit_print_blob(const char *hex, char *path)
+void cgit_print_blob(struct cacheitem *item, const char *hex, char *path)
{
unsigned char sha1[20];
@@ -36,8 +26,6 @@ void cgit_print_blob(const char *hex, char *path)
}
buf[size] = '\0';
- ctx.page.mimetype = "text/plain";
- ctx.page.filename = path;
- cgit_print_http_headers(&ctx);
+ cgit_print_snapshot_start("text/plain", path, item);
write(htmlfd, buf, size);
}