annotate Lib/IMPL/Web/View/TemplateView.pm @ 244:a02b110da931
refactoring
fixed binding to CGI query parameters with multiple values
author |
sergey |
date |
Mon, 22 Oct 2012 04:09:27 +0400 (2012-10-22) |
parents |
|
children |
2879cdb6b8cd |
rev |
line source |
244
|
1 package IMPL::Web::View::TemplateView;
|
|
2 use strict;
|
|
3
|
|
4 use IMPL::Const qw(:prop);
|
|
5 use IMPL::declare {
|
|
6 base => [
|
|
7 'IMPL::Web::ViewResult' => '@_'
|
|
8 ],
|
|
9 props => [
|
|
10 template => PROP_RW,
|
|
11 defaultTemplate => PROP_RW
|
|
12 ]
|
|
13 };
|
|
14
|
|
15 1; |