diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-07-25 11:59:22 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-07-25 11:59:22 +0200 |
commit | 681fdc45473143de3f3c5f69fbc7b94f5d6b0b75 (patch) | |
tree | 3bfca05875524bee0e5444fb791707bc3e593dbd /ui-plain.c | |
parent | Merge branch 'rt/plain-binary' (diff) | |
parent | Add support for HEAD requests (diff) | |
download | cgit-pink-681fdc45473143de3f3c5f69fbc7b94f5d6b0b75.tar.gz cgit-pink-681fdc45473143de3f3c5f69fbc7b94f5d6b0b75.zip |
Merge branch 'plain-etag'
Conflicts: ui-shared.c
Diffstat (limited to '')
-rw-r--r-- | ui-plain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui-plain.c b/ui-plain.c index 9a9ae7d..93a3a05 100644 --- a/ui-plain.c +++ b/ui-plain.c @@ -37,6 +37,7 @@ static void print_object(const unsigned char *sha1, const char *path) ctx.page.mimetype = "text/plain"; ctx.page.filename = fmt("%s", path); ctx.page.size = size; + ctx.page.etag = sha1_to_hex(sha1); cgit_print_http_headers(&ctx); html_raw(buf, size); match = 1; |