]> Sergey Matveev's repositories - public-inbox.git/commitdiff
view: fix solver links with multiple messages
authorEric Wong <e@80x24.org>
Sat, 10 Sep 2022 20:10:23 +0000 (20:10 +0000)
committerEric Wong <e@80x24.org>
Sun, 11 Sep 2022 19:25:46 +0000 (19:25 +0000)
For redundant messages sharing Message-IDs, the link to solver
(/$INBOX/$OID/s/) was going up too many levels for /$INBOX/$MSGID/
when there were multiple messages sharing the same $MSGID.

Unfortunately, redundant messages are common with /all/
due to signature trailers.  So dynamically assigning {-spfx}
is tricky and error prone from counting `/'.

So simplify the code a bit by setting {-spfx} once per HTTP
request, instead of every single message.

lib/PublicInbox/Feed.pm
lib/PublicInbox/View.pm
lib/PublicInbox/WwwAtomStream.pm

index affe0fb6229ebf8b4fa5d54c604e75481b1d7e6a..de1e7dfeb584a5631acb8704d909b51ceedc2223 100644 (file)
@@ -70,6 +70,7 @@ sub new_html {
        }
        $ctx->{-html_tip} = '<pre>';
        $ctx->{-upfx} = '';
+       $ctx->{-spfx} = '' if $ctx->{ibx}->{coderepo};
        $ctx->{-hr} = 1;
        PublicInbox::WwwStream::aresponse($ctx, \&new_html_i);
 }
index 0753c06ee4f81b4a4494ab05210b6bc60e71073a..01c086bf0676bb4904387f0de45aa619c687b3dc 100644 (file)
@@ -80,6 +80,7 @@ sub msg_page {
        # allow user to easily browse the range around this message if
        # they have ->over
        $ctx->{-t_max} = $smsg->{ts};
+       $ctx->{-spfx} = '../' if $ibx->{coderepo};
        PublicInbox::WwwStream::aresponse($ctx, \&msg_page_i);
 }
 
@@ -441,6 +442,7 @@ sub thread_html {
        my $ibx = $ctx->{ibx};
        my ($nr, $msgs) = $ibx->over->get_thread($mid);
        return missing_thread($ctx) if $nr == 0;
+       $ctx->{-spfx} = '../../' if $ibx->{coderepo};
 
        # link $INBOX_DIR/description text to "index_topics" view around
        # the newest message in this thread
@@ -584,24 +586,6 @@ sub add_text_body { # callback for each_part
                $ctx->{-anchors} = {} if $s =~ /^diff --git /sm;
                $diff = 1;
                delete $ctx->{-long_path};
-               my $spfx;
-               # absolute URL (Atom feeds)
-               if ($ibx->{coderepo}) {
-                       if (index($upfx, '//') >= 0) {
-                               $spfx = $upfx;
-                               $spfx =~ s!/([^/]*)/\z!/!;
-                       } else {
-                               my $n_slash = $upfx =~ tr!/!/!;
-                               if ($n_slash == 0) {
-                                       $spfx = '../';
-                               } elsif ($n_slash == 1) {
-                                       $spfx = '';
-                               } else { # nslash == 2
-                                       $spfx = '../../';
-                               }
-                       }
-               }
-               $ctx->{-spfx} = $spfx;
        };
 
        # split off quoted and unquoted blocks:
index 33da32443c0f941cb01ce6de07a625b03d176097..83a8818e5fb1e517a085d3541df14a727882886d 100644 (file)
@@ -16,6 +16,7 @@ use PublicInbox::MsgTime qw(msg_timestamp);
 sub new {
        my ($class, $ctx, $cb) = @_;
        $ctx->{feed_base_url} = $ctx->{ibx}->base_url($ctx->{env});
+       $ctx->{-spfx} = $ctx->{feed_base_url} if $ctx->{ibx}->{coderepo};
        $ctx->{cb} = $cb || \&PublicInbox::GzipFilter::close;
        $ctx->{emit_header} = 1;
        bless $ctx, $class;