git - 404 Not Found - 缺少一个 blob diff 参数

标签 git wiki gitweb

在我本地的 ikiwiki 上,我使用 gitweb 浏览文件历史记录。如果我在我的 ikiwiki 中单击 history,然后在 gitweb 中单击 diff to current,它会指向如下 URL:

http://localhost/gitweb/gitweb.cgi?p=.git;a=blobdiff;f=index.mdwn;h=0622da9b56b6a4f79388f3dc539d4c7d603ae4e9;hp=619d6d14eaf36b6bff80f7b68ce4f139fa0de9b2;hpb=000825c005ffc4c62279509119d80f1262023338

并显示错误信息:

404 Not Found - Missing one of the blob diff parameters

但是 blob 和 commitdiff 是有效的。

有什么办法解决这个问题吗?

最佳答案

以下是来自最新来源的代码片段 root/gitweb/gitweb.perl

# preparing $fd and %diffinfo for git_patchset_body
# new style URI
if (defined $hash_base && defined $hash_parent_base) {
    if (defined $file_name) {
        # read raw output
        open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
            $hash_parent_base, $hash_base,
            "--", (defined $file_parent ? $file_parent : ()), $file_name
            or die_error(500, "Open git-diff-tree failed");
        @difftree = map { chomp; $_ } <$fd>;
        close $fd
            or die_error(404, "Reading git-diff-tree failed");
        @difftree
            or die_error(404, "Blob diff not found");

    } elsif (defined $hash &&
             $hash =~ /[0-9a-fA-F]{40}/) {
        # try to find filename from $hash

        # read filtered raw output
        open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
            $hash_parent_base, $hash_base, "--"
            or die_error(500, "Open git-diff-tree failed");
        @difftree =
            # ':100644 100644 03b21826... 3b93d5e7... M    ls-files.c'
            # $hash == to_id
            grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
            map { chomp; $_ } <$fd>;
        close $fd
            or die_error(404, "Reading git-diff-tree failed");
        @difftree
            or die_error(404, "Blob diff not found");

    } else {
        die_error(400, "Missing one of the blob diff parameters");
    }

    if (@difftree > 1) {
        die_error(400, "Ambiguous blob diff specification");
    }

    %diffinfo = parse_difftree_raw_line($difftree[0]);
    $file_parent ||= $diffinfo{'from_file'} || $file_name;
    $file_name   ||= $diffinfo{'to_file'};

    $hash_parent ||= $diffinfo{'from_id'};
    $hash        ||= $diffinfo{'to_id'};

    # non-textual hash id's can be cached
    if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
        $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
        $expires = '+1d';
    }

    # open patch output
    open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
        '-p', ($format eq 'html' ? "--full-index" : ()),
        $hash_parent_base, $hash_base,
        "--", (defined $file_parent ? $file_parent : ()), $file_name
        or die_error(500, "Open git-diff-tree failed");
}

# old/legacy style URI
if (!%diffinfo && # if new style URI failed
    defined $hash && defined $hash_parent) {
    # fake git-diff-tree raw output
    $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
    $diffinfo{'from_id'} = $hash_parent;
    $diffinfo{'to_id'}   = $hash;
    if (defined $file_name) {
        if (defined $file_parent) {
            $diffinfo{'status'} = '2';
            $diffinfo{'from_file'} = $file_parent;
            $diffinfo{'to_file'}   = $file_name;
        } else { # assume not renamed
            $diffinfo{'status'} = '1';
            $diffinfo{'from_file'} = $file_name;
            $diffinfo{'to_file'}   = $file_name;
        }
    } else { # no filename given
        $diffinfo{'status'} = '2';
        $diffinfo{'from_file'} = $hash_parent;
        $diffinfo{'to_file'}   = $hash;
    }

    # non-textual hash id's can be cached
    if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
        $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
        $expires = '+1d';
    }

    # open patch output
    open $fd, "-|", git_cmd(), "diff", @diff_opts,
        '-p', ($format eq 'html' ? "--full-index" : ()),
        $hash_parent, $hash, "--"
        or die_error(500, "Open git-diff failed");
} else  {
    die_error(400, "Missing one of the blob diff parameters")
        unless %diffinfo;
}

以及下面的其他代码片段(无关代码省略)用于参数解析:

our $file_name = $cgi->param('f');
our $hash = $cgi->param('h');
our $hash_parent = $cgi->param('hp');
our $hash_base = $cgi->param('hb');
our $hash_parent_base = $cgi->param('hpb');

因此以下是错误的:

defined $hash_base 

不幸的是,这些都是我得到的。
从上面的这些代码来看,不会出现异常。
但是,您的 gitweb 可能不是最新的。我建议你检查你的来源。

关于git - 404 Not Found - 缺少一个 blob diff 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9932198/

相关文章:

svn - Google Code Hosting 上是否有类似的 wiki 提交 subversion 存储库中的所有更改?

Python Wiki 样式文档生成器

git - 使用 nginx 设置 git instaweb

Git 列出所有分支标签和 Remote ,以及提交哈希和日期?

macos - 更新了 Git 但仍然显示旧版本

linux - 找到新安装的应用程序的可执行文件 "Beyond Compare"

git - 如何在 GitHub ref/pull/*/merge 分支事件上触发 Google Cloud Build

linux - 如何创建外部 wiki 的转储/镜像?

git - 从 gitolite 迁移到另一个托管的 GIT 存储库

git - 从 gitweb 克隆存储库