gitweb: fallback to system-wide config file (fixup)
[gitweb.git] / builtin-archive.c
index faccce302a5ca3104aa89020c89694e682ef0ba6..c2e0c1ea5a676f30baa52151d9e6a2a94d4cd091 100644 (file)
@@ -30,7 +30,7 @@ static int run_remote_archiver(const char *remote, int argc,
 {
        char *url, buf[LARGE_PACKET_MAX];
        int fd[2], i, len, rv;
-       pid_t pid;
+       struct child_process *conn;
        const char *exec = "git-upload-archive";
        int exec_at = 0;
 
@@ -46,9 +46,7 @@ static int run_remote_archiver(const char *remote, int argc,
        }
 
        url = xstrdup(remote);
-       pid = git_connect(fd, url, exec, 0);
-       if (pid < 0)
-               return pid;
+       conn = git_connect(fd, url, exec, 0);
 
        for (i = 1; i < argc; i++) {
                if (i == exec_at)
@@ -76,62 +74,11 @@ static int run_remote_archiver(const char *remote, int argc,
        rv = recv_sideband("archive", fd[0], 1, 2);
        close(fd[0]);
        close(fd[1]);
-       rv |= finish_connect(pid);
+       rv |= finish_connect(conn);
 
        return !!rv;
 }
 
-static void *convert_to_archive(const char *path,
-                                const void *src, unsigned long *sizep,
-                                const struct commit *commit)
-{
-       static struct git_attr *attr_specfile;
-       struct git_attr_check check[1];
-       char *interpolated = NULL;
-       unsigned long allocated = 0;
-
-       if (!commit)
-               return NULL;
-
-        if (!attr_specfile)
-                attr_specfile = git_attr("specfile", 8);
-
-       check[0].attr = attr_specfile;
-       if (git_checkattr(path, ARRAY_SIZE(check), check))
-               return NULL;
-       if (!ATTR_TRUE(check[0].value))
-               return NULL;
-
-       *sizep = format_commit_message(commit, src, &interpolated, &allocated);
-
-       return interpolated;
-}
-
-void *sha1_file_to_archive(const char *path, const unsigned char *sha1,
-                           unsigned int mode, enum object_type *type,
-                           unsigned long *size,
-                           const struct commit *commit)
-{
-       void *buffer, *converted;
-
-       buffer = read_sha1_file(sha1, type, size);
-       if (buffer && S_ISREG(mode)) {
-               converted = convert_to_working_tree(path, buffer, size);
-               if (converted) {
-                       free(buffer);
-                       buffer = converted;
-               }
-
-               converted = convert_to_archive(path, buffer, size, commit);
-               if (converted) {
-                       free(buffer);
-                       buffer = converted;
-               }
-       }
-
-       return buffer;
-}
-
 static int init_archiver(const char *name, struct archiver *ar)
 {
        int rv = -1, i;