cgit

commit 5632ba35d133ee29d46c031cdd4b4a37097b8ca1

Author: Lars Hjemli <hjemli@gmail.com>

Add cgit_query.nohead flag

This flag is set when no HEAD is specified in the querystring. Currently
it has no users, but it will be used by ui-snapshot to invoke a DWIM-mode
where the revision is extracted from the snapshot name.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 cgit.c | 1 +
 cgit.h | 1 +


diff --git a/cgit.c b/cgit.c
index 5a93fcdc6376a9a1ad7ac1f7090988c624481294..c82587b68b8cc5169f4265eaad98fbc938aa0b8e 100644
--- a/cgit.c
+++ b/cgit.c
@@ -254,6 +254,7 @@ 	}
 	ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc);
 
 	if (!ctx->qry.head) {
+		ctx->qry.nohead = 1;
 		ctx->qry.head = find_default_branch(ctx->repo);
 		ctx->repo->defbranch = ctx->qry.head;
 	}




diff --git a/cgit.h b/cgit.h
index d07185cf6c16ff6aa1d0e64256e78fd625dcd8e0..91db98aa900061046fa342935f78bd82a89b665b 100644
--- a/cgit.h
+++ b/cgit.h
@@ -120,6 +120,7 @@ 	char *name;
 	char *mimetype;
 	char *url;
 	int   ofs;
+	int nohead;
 };
 
 struct cgit_config {