all repos — cgit @ e429fb0cca1e8c78da0ec38fe578bafdeec65534

a hyperfast web frontend for git written in c

Return http statuscode 404 on unknown branch

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Sun, 07 Jun 2009 20:43:08 +0200
commit

e429fb0cca1e8c78da0ec38fe578bafdeec65534

parent

45e7fcecc1117440e6274ce3c6ab7d893c4986ee

3 files changed, 6 insertions(+), 0 deletions(-)

jump to
M cgit.ccgit.c

@@ -285,6 +285,8 @@

if (get_sha1(ctx->qry.head, sha1)) { tmp = xstrdup(ctx->qry.head); ctx->qry.head = ctx->repo->defbranch; + ctx->page.status = 404; + ctx->page.statusmsg = "not found"; cgit_print_http_headers(ctx); cgit_print_docstart(ctx); cgit_print_pageheader(ctx);
M cgit.hcgit.h

@@ -181,6 +181,8 @@ char *mimetype;

char *charset; char *filename; char *title; + int status; + char *statusmsg; }; struct cgit_context {
M ui-shared.cui-shared.c

@@ -456,6 +456,8 @@ }

void cgit_print_http_headers(struct cgit_context *ctx) { + if (ctx->page.status) + htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg); if (ctx->page.mimetype && ctx->page.charset) htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, ctx->page.charset);