Mercurial > pub > Impl
comparison Lib/IMPL/Web/Application/Action.pm @ 244:a02b110da931
refactoring
fixed binding to CGI query parameters with multiple values
author | sergey |
---|---|
date | Mon, 22 Oct 2012 04:09:27 +0400 |
parents | b8c724f6de36 |
children | 7c517134c42f |
comparison
equal
deleted
inserted
replaced
243:cd2b1f121029 | 244:a02b110da931 |
---|---|
10 'IMPL::Object' => undef, | 10 'IMPL::Object' => undef, |
11 'IMPL::Object::Autofill' => '@_' | 11 'IMPL::Object::Autofill' => '@_' |
12 ], | 12 ], |
13 props => [ | 13 props => [ |
14 application => PROP_RO, | 14 application => PROP_RO, |
15 query => PROP_RO | 15 query => PROP_RO, |
16 context => PROP_RW | |
16 ] | 17 ] |
17 }; | 18 }; |
18 | 19 |
19 sub CTOR { | 20 sub CTOR { |
20 my ($this) = @_; | 21 my ($this) = @_; |
22 | |
23 $this->context({}); | |
21 } | 24 } |
22 | 25 |
23 sub cookie { | 26 sub cookie { |
24 my ($this,$name,$rx) = @_; | 27 my ($this,$name,$rx) = @_; |
25 | 28 |