Source of template.plp
Back
  1. <(template.plp)>
  2. <: BEGIN { $title = 'Source'; } :>
  3. <a href="/source/template.plp">Source of template.plp</a><br>
  4. <a href="javascript:history.back();">Back</a>
  5. <ol>
  6. <:
  7. $ENV{QUERY_STRING} =~ s{/}{}g;
  8. if (-e $ENV{QUERY_STRING}){
  9.     open (A, $ENV{QUERY_STRING});
  10.     undef $/;
  11.     $sourcez = Entity(<A>);
  12.     close A;
  13. }
  14. $sourcez=~ s/\n/<\/li>\n<li>/g;
  15. $sourcez=~ s/&lt;:/<font color=green>&lt;:/gs;
  16. $sourcez=~ s/:&gt;/:&gt;<\/font>/gs;
  17. $sourcez=~ s/(&lt;\[.*?\]&gt;)/<font color=blue>$1<\/font>/gs;

  18. $sourcez=~ s/&lt;\(/<font color=red>&lt;(/gs;
  19. $sourcez=~ s/\)&gt;/)&gt;<\/font>/gs;

  20. $sourcez="<li>$sourcez";
  21. :>
  22. <font face="fixedsys,fixed,courier">
  23. <:=$sourcez:>
  24. </ol>
  25. </font>