Diffstat (limited to 'ui-blob.c')
| -rw-r--r-- | ui-blob.c | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -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); } |