view Lib/IMPL/Web/CGIApplication.pm @ 285:546957c50a36

*IMPL::Web::Handler::TTView Reworked template selection mechanism *IMPL::Web::Application: refactoring -Removed obsolete IMPL::Text modules
author cin
date Mon, 18 Feb 2013 02:55:59 +0400
parents a02b110da931
children 63709a4e6da0
line wrap: on
line source

package IMPL::Web::CGIApplication;
use strict;

use IMPL::declare {
    require => {
        CGIWrapper => 'IMPL::Web::CGIWrapper'        
    },
    base => [
        'IMPL::Web::Application' => '@_'
    ]
};

sub CTOR {
    my ($this) = @_;
    
    $this->output(\*STDOUT) unless $this->output;
}

sub Run {
    my ($this) = @_;
    
    my $query = CGIWrapper->new();
    
    $query->charset($this->requestCharset) if $this->requestCharset;
    
    $this->ProcessRequest($query);
}

1;