From: Eric Wong Date: Tue, 15 Sep 2020 20:15:24 +0000 (+0000) Subject: wwwstream: link to cgit URLs for coderepo X-Git-Tag: v1.6.0~3 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=eed1a9ccb1b0bb9699aba70286e8189de5841ec4 wwwstream: link to cgit URLs for coderepo Hopefully this reduces the ambiguity between code for the project(s) using public-inbox and the code for public-inbox itself. --- diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm index f7e09c24..638f4e27 100644 --- a/lib/PublicInbox/WwwStream.pm +++ b/lib/PublicInbox/WwwStream.pm @@ -76,6 +76,26 @@ sub html_top ($) { ''. $top . (delete($ctx->{-html_tip}) // ''); } +sub coderepos ($) { + my ($ctx) = @_; + my $ibx = $ctx->{-inbox}; + my @ret; + if (defined(my $cr = $ibx->{coderepo})) { + my $cfg = $ctx->{www}->{pi_config}; + my $env = $ctx->{env}; + for my $cr_name (@$cr) { + my $urls = $cfg->{"coderepo.$cr_name.cgiturl"}; + if ($urls) { + $ret[0] //= <
'.join("\n\n",
 		$desc,
 		$urls,
+		coderepos($ctx),
 		code_footer($ctx->{env})
 	).'
'; }