about summary refs log tree commit homepage
path: root/lib/PublicInbox/WwwStream.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-08-20 08:01:34 +0000
committerEric Wong <e@80x24.org>2022-08-20 18:30:57 +0000
commit038d977cc25177759537a89ca078701f14d3ace0 (patch)
treebcbd6964fe3b17c471b3be444b5df7f94cb67a18 /lib/PublicInbox/WwwStream.pm
parent63cafb59760fdb73a15c22210c59fe0f13d79e88 (diff)
downloadpublic-inbox-038d977cc25177759537a89ca078701f14d3ace0.tar.gz
Showing "../../foo.git" looks awkward and isn't conducive to
users who want to "git clone" a URL.
Diffstat (limited to 'lib/PublicInbox/WwwStream.pm')
-rw-r--r--lib/PublicInbox/WwwStream.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm
index aee78170..0416db0b 100644
--- a/lib/PublicInbox/WwwStream.pm
+++ b/lib/PublicInbox/WwwStream.pm
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # HTML body stream for which yields getline+close methods for
@@ -86,17 +86,17 @@ sub coderepos ($) {
         my $cr = $ctx->{ibx}->{coderepo} // return ();
         my $cfg = $ctx->{www}->{pi_cfg};
         my $upfx = ($ctx->{-upfx} // ''). '../';
-        my @ret;
+        my $pfx = $ctx->{base_url} //= $ctx->base_url;
+        my $up = $upfx =~ tr!/!/!;
+        $pfx =~ s!/[^/]+\z!/! for (1..$up);
+        my @ret = ('<a id=code>' .
+                'Code repositories for project(s) associated with this '.
+                $ctx->{ibx}->thing_type . "\n");
         for my $cr_name (@$cr) {
-                $ret[0] //= <<EOF;
-<a id=code>Code repositories for project(s) associated with this inbox:
-EOF
                 my $urls = $cfg->get_all("coderepo.$cr_name.cgiturl");
                 if ($urls) {
                         for (@$urls) {
-                                # relative or absolute URL?, prefix relative
-                                # "foo.git" with appropriate number of "../"
-                                my $u = m!\A(?:[a-z\+]+:)?//! ? $_ : $upfx.$_;
+                                my $u = m!\A(?:[a-z\+]+:)?//! ? $_ : $pfx.$_;
                                 $u = ascii_html(prurl($ctx->{env}, $u));
                                 $ret[0] .= qq(\n\t<a\nhref="$u">$u</a>);
                         }