]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
www: more descriptive pagination
[public-inbox.git] / lib / PublicInbox / Feed.pm
index 476d946f515d2882e881d61ab3c0117c38042721..cbdf5db99f8b8486e8a14caff84259c63e560fd9 100644 (file)
@@ -51,8 +51,7 @@ sub new_html_i {
        my ($ctx, $eml) = @_;
        $ctx->zmore($ctx->html_top) if exists $ctx->{-html_tip};
 
-       $eml and return PublicInbox::View::eml_entry($ctx, $eml,
-                                               scalar @{$ctx->{msgs}});
+       $eml and return PublicInbox::View::eml_entry($ctx, $eml);
        my $smsg = shift @{$ctx->{msgs}} or
                $ctx->zmore(PublicInbox::View::pagination_footer(
                                                $ctx, './new.html'));
@@ -134,7 +133,10 @@ sub recent_msgs {
                }
        }
 
-       $ctx->{next_page} = "r=$last_commit" if $last_commit;
+       $last_commit and
+               $ctx->{next_page} = qq[<a\nhref="?r=$last_commit"\nrel=next>] .
+                                       'next (older)</a>';
+
        [ map { bless {blob => $_ }, 'PublicInbox::Smsg' } @oids ];
 }