]> Sergey Matveev's repositories - public-inbox.git/commitdiff
viewvcs: wire up syntax-highlighting for blobs
authorEric Wong <e@80x24.org>
Sun, 27 Jan 2019 11:38:42 +0000 (11:38 +0000)
committerEric Wong <e@80x24.org>
Sun, 27 Jan 2019 11:43:34 +0000 (11:43 +0000)
And update 216dark.css to match a color scheme I'm used to;
which is fairly minimal and doesn't use all the classes
"highlight" provides.

contrib/css/216dark.css
lib/PublicInbox/UserContent.pm
lib/PublicInbox/ViewVCS.pm

index 2fd85d0815fef6ae4ac8dfec2131ca2c1d437159..35ef7aa5a7fef1f76b05164c57f604519b11f37e 100644 (file)
@@ -24,3 +24,23 @@ a:visited { color:#96f }
 *.del { color:#f0f }
 *.head { color:#fff }
 *.hunk { color:#c93 }
+
+/*
+ * highlight 3.x colors (tested 3.18)
+ * this doesn't use most of the colors available (I find too many
+ * colors overwhelming).  So the #ccc default is commented out.
+ */
+.hl.num { color:#f30 }
+.hl.esc { color:#f0f }
+.hl.str { color:#f30 }
+.hl.pps { color:#f30 }
+/* .hl.slc { color:#ccc } */
+.hl.com { color:#09f }
+.hl.ppc { color:#f0f }
+/* .hl.opt { color:#ccc } */
+/* .hl.ipl { color:#ccc } */
+/* .hl.lin { color:#ccc } */
+.hl.kwa { color:#ff0 }
+.hl.kwb { color:#0ff }
+.hl.kwc { color:#ff0 }
+/* .hl.kwd { color:#ccc } */
index b34ebf91b0caa9649bdf071180bd69fea5049126..514cd952c6d2f0e3f0b67963557805e7ac4053de 100644 (file)
@@ -36,6 +36,26 @@ sub CSS () {
        *.del { color:#f0f }
        *.head { color:#fff }
        *.hunk { color:#c93 }
+
+       /*
+        * highlight 3.x colors (tested 3.18)
+        * this doesn't use most of the colors available (I find too many
+        * colors overwhelming).  So the #ccc default is commented out.
+        */
+       .hl.num { color:#f30 }
+       .hl.esc { color:#f0f }
+       .hl.str { color:#f30 }
+       .hl.pps { color:#f30 }
+       /* .hl.slc { color:#ccc } */
+       .hl.com { color:#09f }
+       .hl.ppc { color:#f0f }
+       /* .hl.opt { color:#ccc } */
+       /* .hl.ipl { color:#ccc } */
+       /* .hl.lin { color:#ccc } */
+       .hl.kwa { color:#ff0 }
+       .hl.kwb { color:#0ff }
+       .hl.kwc { color:#ff0 }
+       /* .hl.kwd { color:#ccc } */
 _
 }
 # end of auto-updated sub
index 5de37ee6afba06b28c94499db2a69d8354e1d166..a8aa0b61e2934b96b3fd4eff8fdba151017a074d 100644 (file)
@@ -21,6 +21,11 @@ use PublicInbox::SolverGit;
 use PublicInbox::WwwStream;
 use PublicInbox::Linkify;
 use PublicInbox::Hval qw(ascii_html to_filename);
+my $hl = eval {
+       require PublicInbox::HlMod;
+       PublicInbox::HlMod->new;
+};
+
 my %QP_MAP = ( A => 'oid_a', B => 'oid_b', a => 'path_a', b => 'path_b' );
 my $max_size = 1024 * 1024; # TODO: configurable
 my $enc_utf8 = find_encoding('UTF-8');
@@ -88,6 +93,14 @@ sub solve_result {
        my $nl = ($$blob =~ tr/\n/\n/);
        my $pad = length($nl);
 
+       $l->linkify_1($$blob);
+       my $ok = $hl->do_hl($blob, $path) if $hl;
+       if ($ok) {
+               $blob = $ok;
+       } else {
+               $$blob = ascii_html($$blob);
+       }
+
        # using some of the same CSS class names and ids as cgit
        $log = "<pre>$oid $type $size bytes $raw_link</pre>" .
                "<hr /><table\nclass=blob>".
@@ -96,7 +109,7 @@ sub solve_result {
                } (1..$nl)) . '</pre></td>' .
                '<td><pre> </pre></td>'. # pad for non-CSS users
                "<td\nclass=lines><pre\nstyle='white-space:pre'><code>" .
-               ascii_html($$blob) .
+               $l->linkify_2($$blob) .
                '</code></pre></td></tr></table>' . $log;
 
        html_page($ctx, 200, \$log);