abort messages with http error code
[sheet.git] / sample.plp
index 6de2b98176ef3d913d78e390407bac5173ae7286..f824e1458e39e4f24356267692f28ac8900090ff 100644 (file)
@@ -6,11 +6,11 @@ Html({
        title => "unicode sampler",
        version => '2.0',
        stylesheet => [qw'light dark mono red'],
-       data => $textinc,
+       data => [$textinc],
 });
 
 open my $source, '<', $textinc
-       or die "Could not open text at $textinc: $!\n";
+       or Abort("Could not open text at $textinc", 501, $!);
 local $/ = "\n\n";
 
 my $top = readline $source;