]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwStream.pm
$INBOX/_/text/color/ and sample user-side CSS
[public-inbox.git] / lib / PublicInbox / WwwStream.pm
index 76317544b9c2ee74b496770d63d2ba71d36ff970..8ae35c73931f19f947b0f99a076db6f832ec6e35 100644 (file)
@@ -2,6 +2,10 @@
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # HTML body stream for which yields getline+close methods
+#
+# public-inbox-httpd favors "getline" response bodies to take a
+# "pull"-based approach to feeding slow clients (as opposed to a
+# more common "push" model)
 package PublicInbox::WwwStream;
 use strict;
 use warnings;
@@ -34,10 +38,12 @@ sub _html_top ($) {
        my $title = $ctx->{-title_html} || $desc;
        my $upfx = $ctx->{-upfx} || '';
        my $help = $upfx.'_/text/help';
+       my $color = $upfx.'_/text/color';
        my $atom = $ctx->{-atom} || $upfx.'new.atom';
        my $tip = $ctx->{-html_tip} || '';
        my $top = "<b>$desc</b>";
        my $links = "<a\nhref=\"$help\">help</a> / ".
+                       "<a\nhref=\"$color\">color</a> / ".
                        "<a\nhref=\"$atom\">Atom feed</a>";
        if ($obj->search) {
                my $q_val = $ctx->{-q_value_html};
@@ -61,7 +67,7 @@ sub _html_top ($) {
        "<html><head><title>$title</title>" .
                "<link\nrel=alternate\ntitle=\"Atom feed\"\n".
                "href=\"$atom\"\ntype=\"application/atom+xml\"/>" .
-               PublicInbox::Hval::STYLE .
+               $ctx->{www}->style($upfx) .
                "</head><body>". $top . $tip;
 }
 
@@ -74,14 +80,17 @@ sub _html_end {
 
        my (%seen, @urls);
        my $http = $obj->base_url($ctx->{env});
-       chop $http; # no trailing slash
+       chop $http; # no trailing slash for clone
        my $part = $obj->max_git_part;
+       my $dir = (split(m!/!, $http))[-1];
        if (defined($part)) { # v2
-               # most recent partition first:
-               for (; $part >= 0; $part--) {
-                       my $url = "$http/$part";
+               $seen{$http} = 1;
+               for my $i (0..$part) {
+                       # old parts my be deleted:
+                       -d "$obj->{mainrepo}/git/$i.git" or next;
+                       my $url = "$http/$i";
                        $seen{$url} = 1;
-                       push @urls, $url;
+                       push @urls, "$url $dir/git/$i.git";
                }
        } else { # v1
                $seen{$http} = 1;
@@ -96,13 +105,25 @@ sub _html_end {
                push @urls, $u =~ /\Ahttps?:/ ? qq(<a\nhref="$u">$u</a>) : $u;
        }
 
-       if (scalar(@urls) == 1) {
-               $urls .= " git clone --mirror $urls[0]";
-       } else {
+       if (defined($part) || scalar(@urls) > 1) {
                $urls .= "\n" .
                        join("\n", map { "\tgit clone --mirror $_" } @urls);
+       } else {
+               $urls .= " git clone --mirror $urls[0]";
        }
+       if (defined $part) {
+               my $addrs = $obj->{address};
+               $addrs = join(' ', @$addrs) if ref($addrs) eq 'ARRAY';
+               $urls .=  <<EOF
 
+
+       # If you have public-inbox 1.1+ installed, you may
+       # initialize and index your mirror using the following commands:
+       public-inbox-init -V2 $obj->{name} $dir/ $http \\
+               $addrs
+       public-inbox-index $dir
+EOF
+       }
        my @nntp = map { qq(<a\nhref="$_">$_</a>) } @{$obj->nntp_url};
        if (@nntp) {
                $urls .= "\n\n";