X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FRepoTree.pm;h=4c6ed840ee5e7e9a04859a4315cf52e0632b6a2e;hb=ca8cb3b274e017cdc40f69585ecba40fcfa33f8e;hp=84e2058983027a1ad2c3a5e63682168c3494e930;hpb=16f317f32bd5306d852b7d079b20cd0e4f2b4ff9;p=public-inbox.git diff --git a/lib/PublicInbox/RepoTree.pm b/lib/PublicInbox/RepoTree.pm index 84e20589..4c6ed840 100644 --- a/lib/PublicInbox/RepoTree.pm +++ b/lib/PublicInbox/RepoTree.pm @@ -5,7 +5,6 @@ package PublicInbox::RepoTree; use v5.12; use PublicInbox::ViewDiff qw(uri_escape_path); -use PublicInbox::GitAsyncCat; use PublicInbox::WwwStatic qw(r); use PublicInbox::Qspawn; use PublicInbox::WwwStream qw(html_oneshot); @@ -57,6 +56,8 @@ sub tree_show { # git check_async callback my ($bn) = ($ctx->{-path} =~ m!/?([^/]+)\z!); if ($type eq 'blob') { my $obj = ascii_html($ctx->{-obj}); + $ctx->{-q_value_html} = 'dfn:'.ascii_html($ctx->{-path}) . + ' dfpost:'.substr($oid, 0, 7); $ctx->{-paths} = [ $bn, qq[(raw) \$ git show $obj\t# shows this blob on the CLI] ]; @@ -78,12 +79,7 @@ sub srv_tree { return if index($obj, "\n") >= 0; sub { $ctx->{-wcb} = $_[0]; # HTTP::{Chunked,Identity} - if ($ctx->{env}->{'pi-httpd.async'}) { - async_check($ctx, $obj, \&tree_show, $ctx); - } else { - $ctx->{git}->check_async($obj, \&tree_show, $ctx); - $ctx->{git}->async_wait_all; - } + PublicInbox::ViewVCS::do_check_async($ctx, \&tree_show, $obj); }; }