Changeset 11448

Show
Ignore:
Timestamp:
05/12/08 17:21:33 (5 years ago)
Author:
yappo
Message:

spelling and no critic

Location:
lang/perl/HTTP-Engine/trunk/lib/HTTP
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/HTTP-Engine/trunk/lib/HTTP/Engine.pm

    r11444 r11448  
    22use strict; 
    33use warnings; 
    4 BEGIN { eval "package HTTPEx; sub dummy {} 1;" } 
     4BEGIN { eval "package HTTPEx; sub dummy {} 1;" } ## no critic 
    55use base 'HTTPEx'; 
    66use Class::Component; 
     
    154154=head1 MIDDLEWARES 
    155155 
    156 For all non-core middlewaress (consult #codrepos first), use the HTTPEx:: 
     156For all non-core middlewares (consult #codrepos first), use the HTTPEx:: 
    157157namespace. For example, if you have a plugin module named "HTTPEx::Middleware::Foo", 
    158158you could load it as 
  • lang/perl/HTTP-Engine/trunk/lib/HTTP/Engine/Interface/FCGI.pm

    r11439 r11448  
    5454 
    5555        if ( $options->{manager} ) { 
    56             eval "use $options->{manager}; 1" or die $@; 
     56            eval "use $options->{manager}; 1" or die $@; ## no critic 
    5757 
    5858            $proc_manager = $options->{manager}->new( 
     
    115115    my $self = shift; 
    116116    print "FastCGI daemon started (pid $$)\n"; 
    117     open STDIN,  "+</dev/null" or die $!; 
    118     open STDOUT, ">&STDIN"     or die $!; 
    119     open STDERR, ">&STDIN"     or die $!; 
     117    open STDIN,  "+</dev/null" or die $!; ## no critic 
     118    open STDOUT, ">&STDIN"     or die $!; ## no critic 
     119    open STDERR, ">&STDIN"     or die $!; ## no critic 
    120120    POSIX::setsid(); 
    121121}