/[mws]/trunk/httpd.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/httpd.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 34 by dpavlin, Sun May 9 10:16:51 2004 UTC revision 39 by dpavlin, Mon May 10 14:07:44 2004 UTC
# Line 28  be used. Line 28  be used.
28          exit 1;          exit 1;
29  }  }
30    
 my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;  
 my $cgi = new CGI::Lite;  
31  my $mws = MWS->new($config_file);  my $mws = MWS->new($config_file);
32    
33    my ($local_addr,$local_port) = ('127.0.0.1',6969);
34    
35    my $listen = $mws->{config}->val('global', 'listen');
36    if ($listen =~ m/:/) {
37            ($local_addr,$local_port) = split(/:/,$listen);
38    } elsif ($listen) {
39            $local_addr = $listen;
40    }
41    
42    my $d = HTTP::Daemon->new(
43            Reuse => 1,
44            LocalAddr => $local_addr,
45            LocalPort => $local_port,
46    ) || die "can't create HTTP::Daemon";
47    
48    my $cgi = new CGI::Lite;
49  my $tt = Template->new({  my $tt = Template->new({
50          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
51          FILTERS => {          FILTERS => {
# Line 217  sub html_escape($) { Line 232  sub html_escape($) {
232          my $text = shift || return;          my $text = shift || return;
233    
234          # don't re-escape html          # don't re-escape html
235          #return $text if ($text =~ /&(:?lt|gt|amp|quot);/);          #return $text if ($text =~ /&(?:lt|gt|amp|quot);/);
236    
237          # Escape <, >, & and ", and to produce valid XML          # Escape <, >, & and ", and to produce valid XML
238          my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');          my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 236  sub body5_filter { Line 251  sub body5_filter {
251          my $text = shift;          my $text = shift;
252    
253          # remove quote          # remove quote
254          $text =~ s/^[\>:\|=]+\s*.*?$/#-q-#/msg;          $text =~ s/^[\>:\|=]+[^\n\r]*[\n\r]*$/#-q-#/msg;
255          # remove quote author          # remove quote author
256          $text =~ s/[\n\r]+[^\n\r]+:\s*(:?#-q-#[\n\r*])+//gs;          $text =~ s/[\n\r]+[^\n\r]+:\s*(?:#-q-#[\n\r*])+//gs;
257          $text =~ s/^[^\n\r]+:\s*(:?#-q-#[\n\r]*)+//gs;          $text =~ s/^[^\n\r]+:\s*(?:#-q-#[\n\r]*)+//gs;
258          $text =~ s/#-q-#[\n\r]*//gs;          $text =~ s/#-q-#[\n\r]*//gs;
259          # outlook quoting          # outlook quoting
260          $text =~ s/(\s*--+\s*Original\s+Message\s*--+.*)$//si;          $text =~ s/(\s*--+\s*Original\s+Message\s*--+.*)$//si;
# Line 281  sub body_filter { Line 296  sub body_filter {
296          }          }
297    
298          # find quoted text          # find quoted text
299          $text =~ s/^([\>:\|=]+\s*.*?)$/#-#quote1##$1##quote1#-#/msg;          $text =~ s/^([\>:\|=]+[^\n\r]*[\n\r]*)$/#-#quote1##$1##quote1#-#/mg;
300          $text =~ s/(--+\s*Original\s+Message\s*--+.*)$/#-#quote2##$1##quote2#-#/si;          $text =~ s/(--+\s*Original\s+Message\s*--+.*)$/#-#quote2##$1##quote2#-#/si;
301          $text =~ s/(--+\s*Forwarded\s+message.+\s*--+.*)$/#-#quote3##$1##quote3#-#/si;          $text =~ s/(--+\s*Forwarded\s+message.+\s*--+.*)$/#-#quote3##$1##quote3#-#/si;
302    

Legend:
Removed from v.34  
changed lines
  Added in v.39

  ViewVC Help
Powered by ViewVC 1.1.26