]> Sergey Matveev's repositories - public-inbox.git/commitdiff
www_stream: note existence of IMAP and NNTP URLs
authorEric Wong <e@80x24.org>
Thu, 16 Sep 2021 00:26:53 +0000 (00:26 +0000)
committerEric Wong <e@80x24.org>
Thu, 16 Sep 2021 04:29:13 +0000 (04:29 +0000)
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 :>).

lib/PublicInbox/WwwStream.pm

index a88ff9721e941898932d02a9b7f560acdc7fc018..5be5ed0cad59988572a2499f5262a3d1c8c50dc7 100644 (file)
@@ -116,8 +116,26 @@ sub _html_end {
                $x = <<EOF;
 This is a public inbox, see <a
 href="$m">mirroring instructions</a>
                $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
 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,
        } else {
                $x = <<EOF;
 This is an external index of several public inboxes,