]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwStream.pm
wwwstream: show relative coderepo URLs correctly
[public-inbox.git] / lib / PublicInbox / WwwStream.pm
index 49940262eeb6469fbc0cf3a82970ece740440dcd..958251a347d55edc89a8501773e325c90460749e 100644 (file)
@@ -12,7 +12,8 @@ our @EXPORT_OK = qw(html_oneshot);
 use bytes (); # length
 use PublicInbox::Hval qw(ascii_html prurl ts2str);
 our $TOR_URL = 'https://www.torproject.org/';
-our $CODE_URL = 'https://public-inbox.org/public-inbox.git';
+our $CODE_URL = [ qw(http://ou63pmih66umazou.onion/public-inbox.git
+       https://public-inbox.org/public-inbox.git) ];
 
 sub base_url ($) {
        my $ctx = shift;
@@ -80,13 +81,17 @@ sub coderepos ($) {
        my ($ctx) = @_;
        my $cr = $ctx->{ibx}->{coderepo} // return ();
        my $cfg = $ctx->{www}->{pi_cfg};
+       my $upfx = ($ctx->{-upfx} // ''). '../';
        my @ret;
        for my $cr_name (@$cr) {
                my $urls = $cfg->{"coderepo.$cr_name.cgiturl"} // next;
                $ret[0] //= <<EOF;
 code repositories for the project(s) associated with this inbox:
 EOF
-               for my $u (@$urls) {
+               for (@$urls) {
+                       # relative or absolute URL?, prefix relative "foo.git"
+                       # with appropriate number of "../"
+                       my $u = m!\A(?:[a-z\+]+:)?//! ? $_ : $upfx.$_;
                        $u = ascii_html(prurl($ctx->{env}, $u));
                        $ret[0] .= qq(\n\t<a\nhref="$u">$u</a>);
                }