comparison Lib/IMPL/Web/QueryHandler/PageFormat.pm @ 160:3f09584bf189

Corrected web application modules
author wizard
date Mon, 27 Dec 2010 19:41:36 +0300
parents 8638dd1374bf
children 39c8788eded5
comparison
equal deleted inserted replaced
159:f8de52d3c112 160:3f09584bf189
17 $Template::Plugin::URL::JOINT = '&'; 17 $Template::Plugin::URL::JOINT = '&';
18 18
19 BEGIN { 19 BEGIN {
20 public property templatesCharset => prop_all; 20 public property templatesCharset => prop_all;
21 public property templatesBase => prop_all; 21 public property templatesBase => prop_all;
22 public property includes => prop_all | prop_list;
22 public property defaultTarget => prop_all; 23 public property defaultTarget => prop_all;
23 public property pathinfoPrefix => prop_all; 24 public property pathinfoPrefix => prop_all;
24 public property cache => prop_all; 25 public property cache => prop_all;
25 public property preprocess => prop_all; 26 public property preprocess => prop_all;
26 public property formatOutput => prop_all; 27 public property formatOutput => prop_all;
75 pop @pathContainer; 76 pop @pathContainer;
76 77
77 $doc->LoadFile ( 78 $doc->LoadFile (
78 ($this->template || File::Spec->catfile($this->templatesBase,@path)), 79 ($this->template || File::Spec->catfile($this->templatesBase,@path)),
79 $this->templatesCharset, 80 $this->templatesCharset,
80 $this->templatesBase, 81 [$this->templatesBase, $this->includes],
81 { 82 {
82 result => scalar($nextHandler->()), 83 result => scalar($nextHandler->()),
83 action => $action, 84 action => $action,
84 app => $action->application, 85 app => $action->application,
85 86