termcol: code cleanup (mostly break wide lines)
[sheet.git] / source.plp
index 8193de50f17e60eece31088bd9c3209c696e4a20..55554397d7ba39e95151341650f8147226f81e5a 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>
-<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">
@@ -33,12 +28,71 @@ $header{content_type} = "text/html; charset=utf-8";
 
 my $source = $ENV{PATH_INFO};
 $source =~ s{^/}{};
-$source ||= $0;
-print "<h1>Source of $source</h1>\n";
 
-require Text::VimColor;
-print "<pre>\n";
-my $hl = Text::VimColor->new(file => $source);
-print $hl->html;
-print "</pre>\n";
+if (not $source) {
+       print "<h1>Source files</h1>";
 
+       print "<p>Project code distributed under the AGPL. Please contribute back.</p>";
+       print '<ul>'."\n";
+       for (glob '*.plp') {
+               chomp;
+               printf '<li><a href="/source/%s">%1$s</a></li>'."\n", Entity($_);
+       }
+       print "</ul>\n\n";
+}
+else {
+       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;
+       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";
+       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?|css|js))(?=\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";
+}
+:>
+<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>