]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-clone.c
Support unannotated tags in git-clone.
[cgit.git] / ui-clone.c
index 3a037ad9a7a9d1f49fe6a4e5b0c8a446f31ce837..fdea24f3fdf070b883f13357ce003d4ac4da892e 100644 (file)
@@ -19,12 +19,10 @@ static int print_ref_info(const char *refname, const unsigned char *sha1,
        if (!(obj = parse_object(sha1)))
                return 0;
 
-       if (!strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/"))
-               htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
-       else if (!prefixcmp(refname, "refs/tags") && obj->type == OBJ_TAG) {
+       htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
+       if (obj->type == OBJ_TAG) {
                if (!(obj = deref_tag(obj, refname, 0)))
                        return 0;
-               htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
                htmlf("%s\t%s^{}\n", sha1_to_hex(obj->sha1), refname);
        }
        return 0;
@@ -48,20 +46,18 @@ static void print_pack_info(struct cgit_context *ctx)
 static void send_file(struct cgit_context *ctx, char *path)
 {
        struct stat st;
-       int err;
 
        if (stat(path, &st)) {
                switch (errno) {
                case ENOENT:
-                       err = 404;
+                       html_status(404, "Not found", 0);
                        break;
                case EACCES:
-                       err = 403;
+                       html_status(403, "Forbidden", 0);
                        break;
                default:
-                       err = 400;
+                       html_status(400, "Bad request", 0);
                }
-               html_status(err, 0);
                return;
        }
        ctx->page.mimetype = "application/octet-stream";
@@ -86,7 +82,7 @@ void cgit_clone_info(struct cgit_context *ctx)
 void cgit_clone_objects(struct cgit_context *ctx)
 {
        if (!ctx->qry.path) {
-               html_status(400, 0);
+               html_status(400, "Bad request", 0);
                return;
        }