]> git.cameronkatri.com Git - cgit.git/commitdiff
Add cgit_query.nohead flag
authorLars Hjemli <hjemli@gmail.com>
Sat, 11 Oct 2008 17:05:50 +0000 (19:05 +0200)
committerLars Hjemli <hjemli@gmail.com>
Sat, 11 Oct 2008 17:05:50 +0000 (19:05 +0200)
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
cgit.h

diff --git a/cgit.c b/cgit.c
index 5a93fcdc6376a9a1ad7ac1f7090988c624481294..c82587b68b8cc5169f4265eaad98fbc938aa0b8e 100644 (file)
--- a/cgit.c
+++ b/cgit.c
@@ -254,6 +254,7 @@ static int prepare_repo_cmd(struct cgit_context *ctx)
        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 (file)
--- a/cgit.h
+++ b/cgit.h
@@ -120,6 +120,7 @@ struct cgit_query {
        char *mimetype;
        char *url;
        int   ofs;
+       int nohead;
 };
 
 struct cgit_config {