source: move highlighting setup into eval
authorMischa POSLAWSKY <perl@shiar.org>
Sun, 23 Apr 2017 01:03:52 +0000 (03:03 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Thu, 25 May 2017 20:13:06 +0000 (22:13 +0200)
Fallback to plain text if vim fails for whatever reason.

source.plp

index 2b133712c6a0659b16da51b75ff0e564a6337df4..1f934aea9102abf51fe3310b22bbed5215a037b1 100644 (file)
@@ -67,21 +67,24 @@ else {
        }
        -r $source or die "Requested file not found\n";
 
        }
        -r $source or die "Requested file not found\n";
 
-       if (eval { require Text::VimColor and Text::VimColor->VERSION(0.12) }) {
+       if (my $hl = eval {
+               require Text::VimColor;
+               Text::VimColor->VERSION(0.12)
+                       or die 'early versions are buggy under FastCGI';
                delete $Text::VimColor::SYNTAX_TYPE{Underlined};
                delete $Text::VimColor::SYNTAX_TYPE{Underlined};
+               return Text::VimColor->new(
+                       file => $source,
+                       vim_options => [@Text::VimColor::VIM_OPTIONS, '+:set enc=utf-8'],
+               )->marked;
+       }) {
                my %TYPETAG = (
                        Statement => 'strong',
                        Error     => 'em',
                        Todo      => 'em',
                );
 
                my %TYPETAG = (
                        Statement => 'strong',
                        Error     => 'em',
                        Todo      => 'em',
                );
 
-               my $hl = Text::VimColor->new(
-                       file => $source,
-                       vim_options => [@Text::VimColor::VIM_OPTIONS, '+:set enc=utf-8'],
-               );
-               my $parsed = $hl->marked;
                say '<pre>';
                say '<pre>';
-               foreach (@$parsed) {
+               foreach (@{$hl}) {
                        my ($type, $contents) = @{$_};
                        $contents = decode_utf8($contents);
                        my $tag = $type && ($TYPETAG{$type} || 'span');
                        my ($type, $contents) = @{$_};
                        $contents = decode_utf8($contents);
                        my $tag = $type && ($TYPETAG{$type} || 'span');