about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-09-16 00:26:53 +0000
committerEric Wong <e@80x24.org>2021-09-16 04:29:13 +0000
commit58e0608d40856ec81d330d57d8f474a184a91529 (patch)
tree7248640276c9c7931ae9348acb98dd4e7263048a
parent3690f0625fbfb75dcc73986d78abba738e9113a4 (diff)
downloadpublic-inbox-58e0608d40856ec81d330d57d8f474a184a91529.tar.gz
The "mirror" link may not clue users into the existence of
NNTP and IMAP servers, so add a note about them (but don't
list them, in case there are dozens of URLs :>).
-rw-r--r--lib/PublicInbox/WwwStream.pm20
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm
index a88ff972..5be5ed0c 100644
--- a/lib/PublicInbox/WwwStream.pm
+++ b/lib/PublicInbox/WwwStream.pm
@@ -116,8 +116,26 @@ sub _html_end {
                 $x = <<EOF;
 This is a public inbox, see <a
 href="$m">mirroring instructions</a>
-on how to clone and mirror all data and code used for this inbox
+for how to clone and mirror all data and code used for this inbox
 EOF
+                my $has_nntp = @{$ctx->{ibx}->nntp_url($ctx)};
+                my $has_imap = @{$ctx->{ibx}->imap_url($ctx)};
+                if ($has_nntp || $has_imap) {
+                        substr($x, -1, 1) = ";\n"; # s/\n/;\n
+                        if ($has_nntp && $has_imap) {
+                                $x .= <<EOM;
+as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).
+EOM
+                        } elsif ($has_nntp) {
+                                $x .= <<EOM;
+as well as URLs for NNTP newsgroup(s).
+EOM
+                        } else {
+                                $x .= <<EOM;
+as well as URLs for IMAP folder(s).
+EOM
+                        }
+                }
         } else {
                 $x = <<EOF;
 This is an external index of several public inboxes,