Mercurial > pub > Impl
comparison Lib/IMPL/Security/Role.pm @ 144:b56ebc31bf18
Empty nodes no more created while transforming a post request to the DOM document
minor speed improvements to the object CTOR caching
Added support for a secure processing (and 'laundering' ) a CGI parameters
Many minor fixes
author | wizard |
---|---|
date | Tue, 13 Jul 2010 02:05:38 +0400 |
parents | 79bf75223afe |
children | 4267a2ac3d46 |
comparison
equal
deleted
inserted
replaced
143:d9dd3500ead3 | 144:b56ebc31bf18 |
---|---|
10 } | 10 } |
11 | 11 |
12 sub CTOR { | 12 sub CTOR { |
13 my ($this,$name,$parentRoles) = @_; | 13 my ($this,$name,$parentRoles) = @_; |
14 | 14 |
15 $this->roleName($name); | 15 $this->roleName($name) if $name; |
16 $this->parentRoles($parentRoles); | 16 $this->parentRoles($parentRoles) if $parentRoles; |
17 } | 17 } |
18 | 18 |
19 sub Satisfy { | 19 sub Satisfy { |
20 my ($this,@roles) = @_; | 20 my ($this,@roles) = @_; |
21 | 21 |