view Lib/IMPL/Web/CGIApplication.pm @ 245:7c517134c42f

Added Unsupported media type Web exception corrected resourceLocation setting in the resource Implemented localizable resources for text messages fixed TT view scopings, INIT block in controls now sets globals correctly.
author sergey
date Mon, 29 Oct 2012 03:15:22 +0400
parents a02b110da931
children 546957c50a36
line wrap: on
line source

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

use IMPL::Const qw(:prop);
use IMPL::declare {
    require => {
        CGIWrapper => 'IMPL::Web::CGIWrapper'        
    },
    base => [
        'IMPL::Web::Application' => '@_'
    ],
    props => [
        _queryFetched => PROP_RW
    ]
};

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

sub FetchRequest {
    my ($this) = @_;
    
    return if $this->_queryFetched;
    
    my $query = CGIWrapper->new();
    
    $query->charset($this->requestCharset) if $this->requestCharset;
    
    $this->_queryFetched(1);
    
    return $query;
}

1;