]> Sergey Matveev's repositories - public-inbox.git/commitdiff
linkify: move to_html over from ViewDiff
authorEric Wong <e@yhbt.net>
Sat, 25 Jan 2020 04:45:04 +0000 (04:45 +0000)
committerEric Wong <e@yhbt.net>
Mon, 27 Jan 2020 02:59:09 +0000 (02:59 +0000)
We use the same idiom in many places for doing two-step
linkification and HTML escaping.  Get rid of an outdated
comment in flush_quote while we're at it.

lib/PublicInbox/Linkify.pm
lib/PublicInbox/View.pm
lib/PublicInbox/ViewDiff.pm
lib/PublicInbox/ViewVCS.pm
lib/PublicInbox/WwwListing.pm

index 77b94f56af4fc104789ed76ce58483afbd98fd38..199457af351910c0a16b6250c74a48ee90e23c86 100644 (file)
@@ -120,4 +120,6 @@ sub linkify_mids {
        !ge;
 }
 
+sub to_html { linkify_2($_[0], ascii_html(linkify_1(@_))) }
+
 1;
index fd1bd7e2add29f423398dc6b32b6093a820537ea..e604aee0d84106d83ce487c119d79e662400c268 100644 (file)
@@ -496,13 +496,10 @@ sub multipart_text_as_html {
 sub flush_quote {
        my ($s, $l, $quot) = @_;
 
-       # show everything in the full version with anchor from
-       # short version (see above)
-       my $rv = $l->linkify_1($$quot);
+       my $rv = $l->to_html($$quot);
 
        # we use a <span> here to allow users to specify their own
        # color for quoted text
-       $rv = $l->linkify_2(ascii_html($rv));
        $$quot = undef;
        $$s .= qq(<span\nclass="q">) . $rv . '</span>'
 }
@@ -608,8 +605,7 @@ sub add_text_body { # callback for msg_iter
                        flush_diff($rv, $ctx, $l);
                } else {
                        # regular lines, OK
-                       $l->linkify_1($cur);
-                       $$rv .= $l->linkify_2(ascii_html($cur));
+                       $$rv .= $l->to_html($cur);
                        $cur = undef;
                }
        }
index 10d71004caab28e1d9920dff3e0c11714126756e..be0c0452d198112599fa593f9aab368097ad1103 100644 (file)
@@ -44,11 +44,6 @@ my $PATH_B = '"?b/.+|/dev/null';
 # cf. git diff.c :: get_compact_summary
 my $DIFFSTAT_COMMENT = qr/\((?:new|gone|(?:(?:new|mode) [\+\-][lx]))\)/;
 
-sub to_html ($$) {
-       $_[0]->linkify_1($_[1]);
-       $_[0]->linkify_2(ascii_html($_[1]));
-}
-
 # link to line numbers in blobs
 sub diff_hunk ($$$$) {
        my ($dctx, $spfx, $ca, $cb) = @_;
@@ -107,7 +102,7 @@ sub anchor0 ($$$$$) {
                my $spaces = ($orig =~ s/( +)\z//) ? $1 : '';
                $$dst .= " <a\nid=i$attr\nhref=#$attr>" .
                        ascii_html($orig) . '</a>' . $spaces .
-                       to_html($linkify, $rest);
+                       $linkify->to_html($rest);
                return 1;
        }
        undef;
@@ -116,7 +111,7 @@ sub anchor0 ($$$$$) {
 sub anchor1 ($$$$$) {
        my ($dst, $ctx, $linkify, $pb, $s) = @_;
        my $attr = to_attr($ctx->{-apfx}.$pb) or return;
-       my $line = to_html($linkify, $s);
+       my $line = $linkify->to_html($s);
 
        my $ok = delete $ctx->{-anchors}->{$attr};
 
@@ -158,7 +153,7 @@ sub flush_diff ($$$) {
                        } elsif ($state2class[$state]) {
                                to_state($dst, $state, DSTATE_CTX);
                        }
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ /^-- $/) { # email signature begins
                        $state == DSTATE_INIT or
                                to_state($dst, $state, DSTATE_INIT);
@@ -178,53 +173,53 @@ sub flush_diff ($$$) {
                                        uri_escape_utf8($pa, UNSAFE);
                        }
                        anchor1($dst, $ctx, $linkify, $pb, $s) and next;
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ s/^(index $OID_NULL\.\.)($OID_BLOB)\b//o) {
                        $$dst .= $1 . oid($dctx, $spfx, $2);
                        $dctx = { Q => '' };
-                       $$dst .= to_html($linkify, $s) ;
+                       $$dst .= $linkify->to_html($s) ;
                } elsif ($s =~ s/^index ($OID_BLOB)(\.\.$OID_NULL)\b//o) {
                        $$dst .= 'index ' . oid($dctx, $spfx, $1) . $2;
                        $dctx = { Q => '' };
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ /^index ($OID_BLOB)\.\.($OID_BLOB)/o) {
                        $dctx->{oid_a} = $1;
                        $dctx->{oid_b} = $2;
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ s/^@@ (\S+) (\S+) @@//) {
                        $$dst .= '</span>' if $state2class[$state];
                        $$dst .= qq(<span\nclass="hunk">);
                        $$dst .= diff_hunk($dctx, $spfx, $1, $2);
                        $$dst .= '</span>';
                        $state = DSTATE_CTX;
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ m!^--- (?:$PATH_A)!o ||
                         $s =~ m!^\+{3} (?:$PATH_B)!o)  {
                        # color only (no oid link) if missing dctx->{oid_*}
                        $state <= DSTATE_STAT and
                                to_state($dst, $state, DSTATE_HEAD);
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ /^\+/) {
                        if ($state != DSTATE_ADD && $state > DSTATE_STAT) {
                                to_state($dst, $state, DSTATE_ADD);
                        }
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } elsif ($s =~ /^-/) {
                        if ($state != DSTATE_DEL && $state > DSTATE_STAT) {
                                to_state($dst, $state, DSTATE_DEL);
                        }
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                # ignore the following lines in headers:
                } elsif ($s =~ /^(?:dis)similarity index/ ||
                         $s =~ /^(?:old|new) mode/ ||
                         $s =~ /^(?:deleted|new) file mode/ ||
                         $s =~ /^(?:copy|rename) (?:from|to) / ||
                         $s =~ /^(?:dis)?similarity index /) {
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                } else {
                        $state <= DSTATE_STAT or
                                to_state($dst, $state, DSTATE_INIT);
-                       $$dst .= to_html($linkify, $s);
+                       $$dst .= $linkify->to_html($s);
                }
        }
        @$diff = ();
index fdca70cb283fbc20bc9d67361ed4699edd3e79ce..77b3ca2814e104aea306c19e179ceece1167d7ef 100644 (file)
@@ -90,8 +90,7 @@ sub show_other_result ($$) {
        }
        my $l = PublicInbox::Linkify->new;
        utf8::decode($$bref);
-       $l->linkify_1($$bref);
-       $$bref = '<pre>'. $l->linkify_2(ascii_html($$bref));
+       $$bref = '<pre>'. $l->to_html($$bref);
        $$bref .= '</pre><hr>' . $$logref;
        html_page($ctx, 200, $bref);
 }
@@ -125,9 +124,8 @@ sub solve_result {
 
        my $ref = ref($res);
        my $l = PublicInbox::Linkify->new;
-       $l->linkify_1($log);
        $log = '<pre>debug log:</pre><hr /><pre>' .
-               $l->linkify_2(ascii_html($log)) . '</pre>';
+               $l->to_html($log) . '</pre>';
 
        $res or return html_page($ctx, 404, \$log);
        $ref eq 'ARRAY' or return html_page($ctx, 500, \$log);
index 8d6100375e65df772fbe7f0733716b51ddfa5dab..37ffffc1c3f48684de525806cda82329a54f08d2 100644 (file)
@@ -111,8 +111,7 @@ sub html ($$) {
 
                my $tmp = join("\n", map { ibx_entry(@$_, $env) } @$list);
                my $l = PublicInbox::Linkify->new;
-               $l->linkify_1($tmp);
-               $out = '<pre>'.$l->linkify_2(ascii_html($tmp)).'</pre><hr>';
+               $out = '<pre>'.$l->to_html($tmp).'</pre><hr>';
        }
        $out = "<html><head><title>$title</title></head><body>" . $out;
        $out .= '<pre>'. PublicInbox::WwwStream::code_footer($env) .