annotate Lib/IMPL/Web/TT/Document.pm @ 107:0e72ad99eef7

Updated Web::TT
author wizard
date Thu, 13 May 2010 03:46:29 +0400
parents 964587c5183c
children c6fb6964de4c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
1 package IMPL::Web::TT::Document;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
2 use strict;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
3 use warnings;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
4
75
wizard
parents: 49
diff changeset
5 use base qw(IMPL::DOM::Document IMPL::Object::Disposable);
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
6 use Template::Context;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
7 use Template::Provider;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
8 use IMPL::Class::Property;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
9 use File::Spec;
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
10 use Scalar::Util qw(blessed);
107
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
11 use IMPL::Web::TT::Collection;
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
12 use IMPL::Web::TT::Control;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
13
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
14 BEGIN {
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
15 private property _provider => prop_all;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
16 private property _context => prop_all;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
17 public property template => prop_get | owner_set;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
18 public property presenter => prop_all, { validate => \&_validatePresenter };
107
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
19 public property controls => { get => \&_getControls };
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
20 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
21
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
22 our %CTOR = (
75
wizard
parents: 49
diff changeset
23 'IMPL::DOM::Document' => sub { nodeName => 'document' }
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
24 );
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
25
107
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
26 sub CTOR {
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
27 my ($this) = @_;
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
28
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
29 $this->appendChild(
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
30 $this->Create(
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
31 controls => 'IMPL::Web::TT::Collection'
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
32 )
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
33 )
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
34 }
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
35
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
36 sub provider {
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
37 my ($this,%args) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
38
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
39 if (my $provider = $this->_provider) {
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
40 return $provider;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
41 } else {
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
42 return $this->_provider(new Template::Provider(
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
43 \%args
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
44 ));
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
45 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
46 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
47
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
48 sub context {
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
49 my ($this) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
50
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
51 if (my $ctx = $this->_context) {
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
52 return $ctx;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
53 } else {
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
54 return $this->_context (
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
55 new Template::Context(
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
56 VARIABLES => {
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
57 document => $this,
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
58 this => $this,
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
59 render => sub {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
60 $this->_process(@_);
107
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
61 },
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
62 controls => $this->controls
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
63 },
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
64 TRIM => 1,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
65 RECURSION => 1,
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
66 LOAD_TEMPLATES => [$this->provider]
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
67 )
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
68 )
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
69 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
70 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
71
107
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
72 sub createControl {
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
73 my ($this,$name,$args) = @_;
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
74
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
75 my $node = $this->Create($name,'IMPL::Web::TT::Control',$args);
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
76 $this->controls->appendChild($node);
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
77 }
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
78
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
79 sub _getControls {
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
80 my ($this) = @_;
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
81
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
82 my ($node) = $this->selectNodes('controls');
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
83 return $node;
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
84 }
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
85
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
86 sub _validatePresenter {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
87 my ($this,$value) = @_;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
88
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
89 die new IMPL::InvalidArgumentException("A view object is required") unless blessed($value) and $value->isa('Template::View');
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
90 }
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
91
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
92 sub LoadFile {
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
93 my ($this,$filePath,$encoding) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
94
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
95 die new IMPL::InvalidArgumentException("A filePath parameter is required") unless $filePath;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
96
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
97 $encoding ||= 'utf8';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
98
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
99 $this->_context(undef);
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
100 $this->_provider(undef);
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
101
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
102 my ($vol,$dir,$fileName) = File::Spec->splitpath($filePath);
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
103
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
104 my $inc = File::Spec->catpath($vol,$dir,'');
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
105
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
106 $this->provider(
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
107 ENCODING => $encoding,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
108 INTERPOLATE => 1,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
109 PRE_CHOMP => 1,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
110 POST_CHOMP => 1,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
111 INCLUDE_PATH => $inc
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
112 );
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
113
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
114 $this->template($this->context->template($fileName));
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
115 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
116
97
964587c5183c Added SecureCall to Web QueryHandlers stack
wizard
parents: 77
diff changeset
117 sub AddVar {
964587c5183c Added SecureCall to Web QueryHandlers stack
wizard
parents: 77
diff changeset
118 my ($this,$name,$value) = @_;
964587c5183c Added SecureCall to Web QueryHandlers stack
wizard
parents: 77
diff changeset
119
964587c5183c Added SecureCall to Web QueryHandlers stack
wizard
parents: 77
diff changeset
120 $this->context->stash->set($name,$value);
964587c5183c Added SecureCall to Web QueryHandlers stack
wizard
parents: 77
diff changeset
121 }
964587c5183c Added SecureCall to Web QueryHandlers stack
wizard
parents: 77
diff changeset
122
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
123 sub title {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
124 $_[0]->template->title;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
125 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
126
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
127 sub Render {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
128 my ($this) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
129
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
130 return $this->template->process($this->context);
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
131 }
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
132
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
133 # Формирует представление для произвольных объектов
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
134 sub _process {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
135 my ($this,@items) = @_;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
136
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
137 my @result;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
138
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
139 foreach my $item (@items) {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
140 if (blessed($item) and $item->isa('IMPL::Web::TT::Control')) {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
141 push @result, $item->Render();
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
142 } elsif(blessed($item)) {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
143 if ($this->presenter) {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
144 push @result, $this->presenter->print($item);
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
145 } else {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
146 push @result, $this->toString;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
147 }
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
148 } else {
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
149 push @result, $item;
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
150 }
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
151 }
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
152
107
0e72ad99eef7 Updated Web::TT
wizard
parents: 97
diff changeset
153 return join '',@result;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
154 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
155
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
156 sub Dispose {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
157 my ($this) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
158
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
159 $this->template(undef);
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
160 $this->_context(undef);
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
161 $this->_provider(undef);
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
162
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
163 $this->SUPER::Dispose();
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
164 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
165
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
166 1;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
167 __END__
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
168 =pod
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
169
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
170 =head1 NAME
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
171
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
172 C<IMPL::Web::TT::Document> - Документ, позволяющий строить представление по шаблону
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
173
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
174 =head1 SYNOPSIS
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
175
75
wizard
parents: 49
diff changeset
176 =begin code
wizard
parents: 49
diff changeset
177
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
178 // create new document
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
179 my $doc = new IMPL::Web::TT::Document;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
180
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
181 // load template
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
182 $doc->loadFile('Templates/index.tt');
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
183
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
184 // render file
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
185 print $doc->Render();
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
186
75
wizard
parents: 49
diff changeset
187 =end code
wizard
parents: 49
diff changeset
188
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
189 =head1 DESCRIPTION
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
190
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
191 C<use base qw(IMPL::DOM::Document)>
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
192
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
193 Документ, основанный на шаблоне Template::Toolkit. Позволяет загрузить шаблон,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
194 и сформировать окончательный документ. Является наследником C<IMPL::DOM::Node>,
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
195 т.о. может быть использован для реализации DOM модели.
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
196
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
197 Внутри шаблона переменная C<document> ссылается на объект документа. По этой
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
198 причине образуется циклическая ссылка между объектами шаблона и документом, что
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
199 требует вызова метода C<Dispose> для освобождения документа.
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
200
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
201 =head1 METHODS
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
202
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
203 =over
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
204
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
205 =item C<CTOR()>
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
206
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
207 Создает новый экземпляр документа, свойство C<nodeName> устанавливается в 'C<document>'
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
208
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
209 =item C<$doc->LoadFile($fileName,$encoding)>
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
210
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
211 Загружает шаблон из файла C<$fileName>, используя кодировку C<$encoding>. Если
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
212 кодировка не указана, использует utf-8.
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
213
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
214 =item C<$doc->Render()>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
215
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
216 Возвращает данные построенные на основе загруженного шаблона.
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
217
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
218 =item C<$doc->Dispose()>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
219
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
220 Освобождает ресурсы и помечает объект как освобожденный.
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
221
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
222 =back
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
223
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
224 =head1 DOM
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
225
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
226 =begin code html
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
227
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
228 [% table = document.Create('env','table') %]
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
229
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
230 [% FOEACH item in document.result %]
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
231 [% table.rows.Add( item.get('name','value') ) %]
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
232 [% END %]
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
233
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
234 [% form = document.Create('login','form') %]
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
235
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
236
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
237 [% form.template = 'LOGIN_FORM'%]
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
238
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
239 [% FOREACH item IN document.childNodes %]
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
240 [%render(item)%]
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
241 [% END %]
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
242
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
243 [% BLOCK LOGIN_FORM %]
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
244 <form method="POST" action='/login.pl'>
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
245 user: [% render(this.item('name')) %] password: [% render(this.item('password')) %] <input type="submit"/>
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
246 </form>
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
247 [% END %]
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
248
77
9d24db321029 Refactoring Web::TT
wizard
parents: 76
diff changeset
249 =end code html
76
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
250
b1652a158b2b Web::DOM
wizard
parents: 75
diff changeset
251
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 7
diff changeset
252 =cut