source: support whitespace before module reference
[sheet.git] / source.plp
index 8193de50f17e60eece31088bd9c3209c696e4a20..1f3c60037ff34686b27268463037039a0476e5ad 100644 (file)
@@ -14,18 +14,13 @@ $header{content_type} = "text/html; charset=utf-8";
 <head>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
 <title>sheet page source code</title>
 <head>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
 <title>sheet page source code</title>
-<style type="text/css">
-       body           { color: #000; background: #FFF }
-       .synComment    { color: #888 }
-       .synConstant   { color: #008 }
-       .synType,
-       .synIdentifier { color: #804 }
-       .synStatement  { font-weight: bold }
-       .synPreProc    { }
-       .synSpecial    { color: #408 }
-       .synError      { font-weight: bold; background-color: #F00; color: #FFF }
-       .synTodo       { background-color: #FF0 }
-</style>
+<link rel="stylesheet" type="text/css" media="all" href="/base.css"><:
+       my %styles = map {$_ => $_} qw(dark mono red);
+       our $style = exists $get{style} && $styles{$get{style}} || 'light';
+       printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
+               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css", $_
+       ) for keys %styles;
+:>
 </head>
 
 <body id="source">
 </head>
 
 <body id="source">
@@ -33,12 +28,56 @@ $header{content_type} = "text/html; charset=utf-8";
 
 my $source = $ENV{PATH_INFO};
 $source =~ s{^/}{};
 
 my $source = $ENV{PATH_INFO};
 $source =~ s{^/}{};
-$source ||= $0;
 print "<h1>Source of $source</h1>\n";
 
 print "<h1>Source of $source</h1>\n";
 
+if ($source =~ m{(?:/|^)\.}) {
+       die "File request not permitted\n";
+}
+elsif ($source =~ s{::}{/}g or !-e $source) {
+       $source .= '.pm';
+       for (0 .. $#{@INC}) {
+               -e ($_ = "$INC[$_]/$source") or next;
+               $source = $_;
+               last;
+       }
+}
+-r $source or die "Requested file not found\n";
+
 require Text::VimColor;
 require Text::VimColor;
+delete $Text::VimColor::SYNTAX_TYPE{Underlined};
+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;
 print "<pre>\n";
 print "<pre>\n";
-my $hl = Text::VimColor->new(file => $source);
-print $hl->html;
+foreach (@$parsed) {
+       my $tag = $_->[0] && ($TYPETAG{ $_->[0] } || 'span');
+       my $arg = '';
+       print "<$tag$arg class=\"sy-\l$_->[0]\">" if $tag;
+       if ($_->[0] eq 'Constant' and $_->[1] =~ s/^(')([a-z0-9_.]+\.plp?)(?=\1$)//) {
+               printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
+       }
+       if (!$_->[0] and $_->[1] =~ s/^(\s*)([A-Z]\w+(?:::\w+)+)(?![^;\s])//) {
+               printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
+       }
+       print Text::VimColor::_xml_escape($_->[1]);
+       print "</$tag>" if $tag;
+}
 print "</pre>\n";
 print "</pre>\n";
+:>
+<p class="footer">
+       <a href="/" rel="home">sheet.shiar.nl</a>/source
+       <a href="git://git.shiar.nl/sheet" rel="vcs-git" title="Git repository"><:= $VERSION :></a>
+       created by <a href="http://shiar.nl/" rel="author">Shiar</a> •
+       <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
+          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a>
+</p>
 
 
+</html>