]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/View.pm
view: fix link to top-level ghost parent
[public-inbox.git] / lib / PublicInbox / View.pm
index ad03cfe22efbc874e045bcff8d97dc362296ad3b..8af51adfd6bc88f50b55f4cfb3b94877705551dd 100644 (file)
@@ -140,8 +140,8 @@ sub index_entry {
                }
                $rv .= " <a\nhref=\"$parent_anchor\">parent</a>";
        }
-       if (my $pct = $state->{pct}) {
-               $rv .= " [$pct->{$mid_raw}%]";
+       if (my $pct = $state->{pct}) { # used by SearchView.pm
+               $rv .= " [relevance $pct->{$mid_raw}%]";
        } elsif ($srch) {
                if ($ctx->{flat}) {
                        $rv .= " [<a\nhref=\"${path}$href/t/#u\">threaded</a>" .
@@ -176,7 +176,7 @@ sub emit_thread_html {
                seen => $seen,
                root_anchor => anchor_for($mid),
                anchor_idx => 0,
-               max_level => 0,
+               cur_level => 0,
        };
 
        require PublicInbox::Git;
@@ -187,9 +187,8 @@ sub emit_thread_html {
        } else {
                my $th = thread_results($msgs);
                thread_entry(\$cb, $git, $state, $_, 0) for $th->rootset;
-               if (my $max = $state->{max_level}) {
-                       my $x = $max > 1 ? ('</ul></li>' x ($max-1)) : '';
-                       $cb->write($x . '</ul>');
+               if (my $max = $state->{cur_level}) {
+                       $cb->write(('</ul></li>' x ($max - 1)) . '</ul>');
                }
        }
        $git = undef;
@@ -315,6 +314,9 @@ sub linkify_2 {
 sub flush_quote {
        my ($quot, $n, $part_nr, $full_pfx, $final, $do_anchor) = @_;
 
+       # n.b.: do not use <blockquote> since it screws up alignment
+       # w.r.t. unquoted text.  Repliers may rely on pre-formatted
+       # alignment to point out a certain word in quoted text.
        if ($full_pfx) {
                if (!$final && scalar(@$quot) <= MAX_INLINE_QUOTED) {
                        # show quote inline
@@ -467,14 +469,22 @@ sub thread_inline {
        $$dst .= 'Thread: ';
        my $parent = in_reply_to($cur);
        if ($nr <= 1) {
-               $$dst .= "[no followups, yet] ($expand)\n";
+               if (defined $parent) {
+                       $$dst .= "($expand)\n ";
+                       $$dst .= ghost_parent("$upfx../", $parent) . "\n";
+               } else {
+                       $$dst .= "[no followups, yet] ($expand)\n";
+               }
                $ctx->{next_msg} = undef;
                $ctx->{parent_msg} = $parent;
                return;
        }
 
-       $$dst .= "~$nr messages (<a\nhref=\"#b\">skip</a> / " .
-                $expand . ")\n";
+       $$dst .= "~$nr messages ($expand";
+       if ($nr > MAX_INLINE_QUOTED) {
+               $$dst .= qq! / <a\nhref="#b">[scroll down]</a>!;
+       }
+       $$dst .= ")\n";
 
        my $subj = $srch->subject_path($cur->header('Subject'));
        my $state = {
@@ -559,10 +569,11 @@ sub html_footer {
 
        my $srch = $ctx->{srch} if $ctx;
        my $upfx = $full_pfx ? '../' : '../../';
+       my $tpfx = $full_pfx ? '' : '../';
        my $idx = $standalone ? " <a\nhref=\"$upfx\">index</a>" : '';
 
        if ($srch && $standalone) {
-               $idx .= qq{ / follow: <a\nhref="t.atom">Atom feed</a>\n};
+               $idx .= qq{ / follow: <a\nhref="${tpfx}t.atom">Atom feed</a>\n};
        }
        if ($idx && $srch) {
                my $p = $ctx->{parent_msg};
@@ -580,7 +591,7 @@ sub html_footer {
                        $irt .= ' ' x length('next ');
                }
                if ($p || $next) {
-                       $irt .= "<a\nhref=\"#r\">thread</a> ";
+                       $irt .= "<a\nhref=\"${tpfx}t/#u\">thread</a> ";
                } else {
                        $irt .= ' ' x length('thread ');
                }
@@ -637,25 +648,37 @@ sub ghost_parent {
        qq{[parent not found: &lt;<a\nhref="$upfx$href/">$html</a>&gt;]};
 }
 
-sub __thread_adj_level {
-       my ($cb, $state, $level) = @_;
+sub thread_adj_level {
+       my ($fh, $state, $level) = @_;
 
-       return if $level <= 0; # flat output
-       my $max = $state->{max_level};
-       if ($level > $max) {
-               $state->{max_level} = $level;
-               $$cb->write(($max ? '<li>' : ''). '<ul><li>');
-       } else {
-               $$cb->write('<li>');
+       my $max = $state->{cur_level};
+       if ($level <= 0) {
+               return '' if $max == 0; # flat output
+
+               # reset existing lists
+               my $x = $max > 1 ? ('</ul></li>' x ($max - 1)) : '';
+               $fh->write($x . '</ul>');
+               $state->{cur_level} = 0;
+               return '';
+       }
+       if ($level == $max) { # continue existing list
+               $fh->write('<li>');
+       } elsif ($level < $max) {
+               my $x = $max > 1 ? ('</ul></li>' x ($max - $level)) : '';
+               $fh->write($x .= '<li>');
+               $state->{cur_level} = $level;
+       } else { # ($level > $max) # start a new level
+               $state->{cur_level} = $level;
+               $fh->write(($max ? '<li>' : '') . '<ul><li>');
        }
+       '</li>';
 }
 
-sub __ghost_flush {
-       my ($cb, $state, $upfx, $mid, $level) = @_;
+sub ghost_flush {
+       my ($fh, $state, $upfx, $mid, $level) = @_;
 
-       __thread_adj_level($cb, $state, $level);
-       $$cb->write('<pre>'. ghost_parent($upfx, $mid) .  '</pre>' .
-                       ($level > 0 ? '</li>' : ''));
+       my $end = thread_adj_level($fh, $state, $level);
+       $fh->write('<pre>'. ghost_parent($upfx, $mid) .  '</pre>' . $end);
 }
 
 sub __thread_entry {
@@ -670,16 +693,16 @@ sub __thread_entry {
        if ($state->{anchor_idx} == 0) {
                thread_html_head($cb, $mime, $state, $level);
        }
-
+       my $fh = $$cb;
        if (my $ghost = delete $state->{ghost}) {
                # n.b. ghost messages may only be parents, not children
                foreach my $g (@$ghost) {
-                       __ghost_flush($cb, $state, '../../', @$g);
+                       ghost_flush($fh, $state, '../../', @$g);
                }
        }
-       __thread_adj_level($cb, $state, $level);
-       index_entry($$cb, $mime, $level, $state);
-       $$cb->write('</li>') if $level > 0;
+       my $end = thread_adj_level($fh, $state, $level);
+       index_entry($fh, $mime, $level, $state);
+       $fh->write($end) if $end;
 
        1;
 }
@@ -756,8 +779,7 @@ sub _inline_header {
        my $mid = mid_clean($mime->header('Message-ID'));
        my $f = $mime->header('X-PI-From');
        my $d = _msg_date($mime);
-       $f = PublicInbox::Hval->new($f)->as_html;
-       $d = PublicInbox::Hval->new($d)->as_html;
+       $f = PublicInbox::Hval->new_oneline($f)->as_html;
        my $pfx = ' ' . $d . ' ' . indent_for($level);
        my $attr = $f;
        $state->{first_level} ||= $level;
@@ -845,27 +867,21 @@ sub add_topic {
 
        if (my $x = $node->message) {
                $x = $x->header_obj;
-               my ($topic, $subj);
+               my $subj;
 
                $subj = $x->header('Subject');
                $subj = $state->{srch}->subject_normalized($subj);
-               $topic = $subj;
-
-               # kill "[PATCH v2]" etc. for summarization
-               unless ($level == 0) {
-                       $topic =~ s/\A\s*\[[^\]]+\]\s*//g;
-               }
 
-               if (++$state->{subjs}->{$topic} == 1) {
-                       push @{$state->{order}}, [ $level, $subj, $topic ];
+               if (++$state->{subjs}->{$subj} == 1) {
+                       push @{$state->{order}}, [ $level, $subj ];
                }
 
                my $mid = mid_clean($x->header('Message-ID'));
 
                my $ts = $x->header('X-PI-TS');
-               my $exist = $state->{latest}->{$topic};
+               my $exist = $state->{latest}->{$subj};
                if (!$exist || $exist->[1] < $ts) {
-                       $state->{latest}->{$topic} = [ $mid, $ts ];
+                       $state->{latest}->{$subj} = [ $mid, $ts ];
                }
        } else {
                # ghost message, do not bump level
@@ -887,10 +903,10 @@ sub dump_topics {
        my $prev = 0;
        my $prev_attr = '';
        while (defined(my $info = shift @$order)) {
-               my ($level, $subj, $topic) = @$info;
-               my $n = delete $subjs->{$topic};
-               my ($mid, $ts) = @{delete $latest->{$topic}};
-               $mid = PublicInbox::Hval->new($mid)->as_href;
+               my ($level, $subj) = @$info;
+               my $n = delete $subjs->{$subj};
+               my ($mid, $ts) = @{delete $latest->{$subj}};
+               $mid = PublicInbox::Hval->new_msgid($mid)->as_href;
                $subj = PublicInbox::Hval->new($subj)->as_html;
                $pfx = indent_for($level);
                my $nl = $level == $prev ? "\n" : '';