ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/cgi/taillog.cgi
(Generate patch)

Comparing misc/scripts/cgi/taillog.cgi (file contents):
Revision 1.2 by tdb, Mon Mar 26 21:15:18 2001 UTC vs.
Revision 1.4 by tdb, Mon Nov 5 19:25:32 2001 UTC

# Line 12 | Line 12 | if (defined $grep) {
12          $grepStr = "";
13      }
14      else {
15 <        $grepStr = " | grep $grep";
15 >        if ($grep =~ /^[a-zA-Z_\-0-9\.\/]$/) {
16 >            $grepStr = " | grep $grep";
17 >        }
18 >        else {
19 >            $grepStr = "";
20 >        }
21      }
22   }
23   else {
# Line 88 | Line 93 | sub HTML_encode ($){
93      $encoded =~ s/</&lt;/g;
94      $encoded =~ s/>/&gt;/g;
95      $encoded =~ s/^(.{0})(.*core\.loggers\..*: started)$/<hr size=10 color=blue>$2/;
96 <    $encoded =~ s/(.*)] (.*)}:(.*)/$1] <i>$2<\/i>:<b>$3<\/b>/;
96 >    $encoded =~ s/(.*)] (.*)}:(.*)/$1] <i>$2}<\/i>:<b>$3<\/b>/;
97      return $encoded;
98   }
99  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines