bin/populate-lang-table, mason/pastebin/%show: Segregate `highlight' languages.
[odin-cgi] / mason / pastebin / %show
index 6ec0bb2..9e6afab 100644 (file)
     "$Odin::PASTEBIN/$tag" |h %></a>
 </div>
 % }
-<pre class="paste">
 % if ($lang eq 'txt') {
+<pre class="paste">
 <% $content |h %>\
-% } else {
+</pre>
+% } elsif ($lang =~ /^hl:(.*)$/) {
+<pre class="paste">
 <%perl>
+       my $hl_lang = $1;
        my $kid = open my $fh, "-|" // die "fork: $!";
        if ($kid == 0) {
-         open my $hl, "|-", "highlight", "-Ohtml", "-f", "-t8", "-S$lang"
+         open my $hl, "|-", "highlight", "-Ohtml", "-f", "-t8", "-S$hl_lang"
            or die "open highlight: $!";
          syswrite $hl, $content // die "highlight write: $!";
          close $hl or die "highlight kid: $!, $?";
            or die "highlight parent: $!, $?";
        }
 </%perl>
-% }
 </pre>
+% } else {
+<div class="note">
+<p>I don't know how to display content with language
+  &lsquo;<% $lang |h %>&rsquo;.  This is a bug in the Pastebin program.
+  Here's the raw text, in case that's useful.
+</div>
+<pre class="paste">
+<% $content |h %>\
+</pre>
+% }
 </&>
 %#
 <%args>