Changeset 14233 for misc/runpugs/bin

Show
Ignore:
Timestamp:
10/11/06 05:39:22 (2 years ago)
Author:
andara
Message:

[runpugs]
More security additions, better error messages, and trying to get unicode to work.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • misc/runpugs/bin/termserv.pl

    r14202 r14233  
    22use warnings; 
    33use strict; 
     4use utf8; 
    45use lib '../lib/'; 
    56use WebTerminal::Server; 
    6 #$SIG{USR1}=\&timeout; #sub {print time,"\n"}; 
    77my $host = 'localhost'; 
    88my $port = 2057; 
    9 &run($host,$port); 
     9$ENV{PUGS_SAFEMODE}=1; 
     10&WebTerminal::Server::run($host,$port); 
    1011