1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Kornel Lesiński <kornel@aardvarkmedia.co.uk>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: $
* @link http://phptal.org/
*/
/**
* Removes all unnecessary whitespace from XHTML documents.
*
* extends Normalize only to re-use helper methods
*/
class PHPTAL_PreFilter_Compress extends PHPTAL_PreFilter_Normalize
{
/**
* keeps track whether last element had trailing whitespace (or didn't need it).
* If had_space==false, next element must keep leading space.
*/
private $had_space=false;
/**
* last text node before closing tag that may need trailing whitespace trimmed.
* It's often last-child, but comments, multiple end tags make that trickier.
*/
private $most_recent_text_node=null;
function filterDOM(PHPTAL_Dom_Element $root)
{
// let xml:space=preserve preserve everything
if ($root->getAttributeNS("http://www.w3.org/XML/1998/namespace", 'space') == 'preserve') {
$this->most_recent_text_node = null;
$this->findElementToFilter($root);
return;
}
// tal:replace makes element behave like text
if ($root->getAttributeNS('http://xml.zope.org/namespaces/tal','replace')) {
$this->most_recent_text_node = null;
$this->had_space = false;
return;
}
$this->normalizeAttributes($root);
$this->elementSpecificOptimizations($root);
// <head>, <tr> don't have any significant whitespace
$no_spaces = $this->hasNoInterelementSpace($root);
// mostly block-level elements
// if element is conditional, it may not always break the line
$breaks_line = $no_spaces || ($this->breaksLine($root) && !$root->getAttributeNS('http://xml.zope.org/namespaces/tal','condition'));
// start tag newline
if ($breaks_line) {
if ($this->most_recent_text_node) {
$this->most_recent_text_node->setValueEscaped(rtrim($this->most_recent_text_node->getValueEscaped()));
$this->most_recent_text_node = null;
}
$this->had_space = true;
} else if ($this->isInlineBlock($root)) {
// spaces around <img> must be kept
$this->most_recent_text_node = null;
$this->had_space = false;
}
// <pre>, <textarea> are handled separately from xml:space, because they may have attributes normalized
if ($this->isSpaceSensitiveInXHTML($root)) {
$this->most_recent_text_node = null;
// HTML 5 (9.1.2.5) specifies quirk that a first *single* newline in <pre> can be removed
if (count($root->childNodes) && $root->childNodes[0] instanceof PHPTAL_Dom_Text) {
if (preg_match('/^\n[^\n]/', $root->childNodes[0]->getValueEscaped())) {
$root->childNodes[0]->setValueEscaped(substr($root->childNodes[0]->getValueEscaped(),1));
}
}
$this->findElementToFilter($root);
return;
}
foreach ($root->childNodes as $node) {
if ($node instanceof PHPTAL_Dom_Text) {
// replaces runs of whitespace with ' '
$norm = $this->normalizeSpace($node->getValueEscaped(), $node->getEncoding());
if ($no_spaces) {
$norm = trim($norm);
} elseif ($this->had_space) {
$norm = ltrim($norm);
}
$node->setValueEscaped($norm);
// collapsed whitespace-only nodes are ignored (otherwise trimming of most_recent_text_node would be useless)
if ($norm !== '') {
$this->most_recent_text_node = $node;
$this->had_space = (substr($norm,-1) == ' ');
}
} else if ($node instanceof PHPTAL_Dom_Element) {
$this->filterDOM($node);
} else if ($node instanceof PHPTAL_Dom_DocumentType || $node instanceof PHPTAL_Dom_XMLDeclaration) {
$this->had_space = true;
} else if ($node instanceof PHPTAL_Dom_ProcessingInstruction) {
// PI may output something requiring spaces
$this->most_recent_text_node = null;
$this->had_space = false;
}
}
// repeated element may need trailing space.
if (!$breaks_line && $root->getAttributeNS('http://xml.zope.org/namespaces/tal','repeat')) {
$this->most_recent_text_node = null;
}
// tal:content may replace element with something without space
if (!$breaks_line && $root->getAttributeNS('http://xml.zope.org/namespaces/tal','content')) {
$this->had_space = false;
$this->most_recent_text_node = null;
}
// line break caused by end tag
if ($breaks_line) {
if ($this->most_recent_text_node) {
$this->most_recent_text_node->setValueEscaped(rtrim($this->most_recent_text_node->getValueEscaped()));
$this->most_recent_text_node = null;
}
$this->had_space = true;
}
}
private static $no_interelement_space = array(
'html','head','table','thead','tfoot','select','optgroup','dl','ol','ul','tr','datalist',
);
private function hasNoInterelementSpace(PHPTAL_Dom_Element $element)
{
if ($element->getLocalName() === 'block'
&& $element->parentNode
&& $element->getNamespaceURI() === 'http://xml.zope.org/namespaces/tal') {
return $this->hasNoInterelementSpace($element->parentNode);
}
return in_array($element->getLocalName(), self::$no_interelement_space)
&& ($element->getNamespaceURI() === 'http://www.w3.org/1999/xhtml' || $element->getNamespaceURI() === '');
}
/**
* li is deliberately omitted, as it's commonly used with display:inline in menus.
*/
private static $breaks_line = array(
'address','article','aside','base','blockquote','body','br','dd','div','dl','dt','fieldset','figure',
'footer','form','h1','h2','h3','h4','h5','h6','head','header','hgroup','hr','html','legend','link',
'meta','nav','ol','option','p','param','pre','section','style','table','tbody','td','th','thead',
'title','tr','ul','details',
);
private function breaksLine(PHPTAL_Dom_Element $element)
{
if ($element->getAttributeNS('http://xml.zope.org/namespaces/metal','define-macro')) {
return true;
}
if (!$element->parentNode) {
return true;
}
if ($element->getNamespaceURI() !== 'http://www.w3.org/1999/xhtml'
&& $element->getNamespaceURI() !== '') {
return false;
}
return in_array($element->getLocalName(), self::$breaks_line);
}
/**
* replaced elements need to preserve spaces before and after
*/
private static $inline_blocks = array(
'select','input','button','img','textarea','output','progress','meter',
);
private function isInlineBlock(PHPTAL_Dom_Element $element)
{
if ($element->getNamespaceURI() !== 'http://www.w3.org/1999/xhtml'
&& $element->getNamespaceURI() !== '') {
return false;
}
return in_array($element->getLocalName(), self::$inline_blocks);
}
/**
* Consistent sorting of attributes might give slightly better gzip performance
*/
protected function normalizeAttributes(PHPTAL_Dom_Element $element)
{
parent::normalizeAttributes($element);
$attrs_by_qname = array();
foreach ($element->getAttributeNodes() as $attrnode) {
// safe, as there can't be two attrs with same qname
$attrs_by_qname[$attrnode->getQualifiedName()] = $attrnode;
}
if (count($attrs_by_qname) > 1) {
uksort($attrs_by_qname, array($this, 'compareQNames'));
$element->setAttributeNodes(array_values($attrs_by_qname));
}
}
/**
* pre-defined order of attributes roughly by popularity
*/
private static $attributes_order = array(
'href','src','class','rel','type','title','width','height','alt','content','name','style','lang','id',
);
/**
* compare names according to $attributes_order array.
* Elements that are not in array, are considered greater than all elements in array,
* and are sorted alphabetically.
*/
private static function compareQNames($a, $b) {
$a_index = array_search($a, self::$attributes_order);
$b_index = array_search($b, self::$attributes_order);
if ($a_index !== false && $b_index !== false) {
return $a_index - $b_index;
}
if ($a_index === false && $b_index === false) {
return strcmp($a, $b);
}
return ($a_index === false) ? 1 : -1;
}
/**
* HTML5 doesn't care about boilerplate
*/
private function elementSpecificOptimizations(PHPTAL_Dom_Element $element)
{
if ($element->getNamespaceURI() !== 'http://www.w3.org/1999/xhtml'
&& $element->getNamespaceURI() !== '') {
return;
}
if ($this->getPHPTAL()->getOutputMode() !== PHPTAL::HTML5) {
return;
}
// <meta charset>
if ('meta' === $element->getLocalName() &&
$element->getAttributeNS('','http-equiv') === 'Content-Type') {
$element->removeAttributeNS('','http-equiv');
$element->removeAttributeNS('','content');
$element->setAttributeNS('','charset',strtolower($this->getPHPTAL()->getEncoding()));
}
elseif (('link' === $element->getLocalName() && $element->getAttributeNS('','rel') === 'stylesheet') ||
('style' === $element->getLocalName())) {
// There's only one type of stylesheets that works.
$element->removeAttributeNS('','type');
} elseif ('script' === $element->getLocalName()) {
$element->removeAttributeNS('','language');
// Only remove type that matches default. E4X, vbscript, coffeescript, etc. must be preserved
$type = $element->getAttributeNS('','type');
$is_std = preg_match('/^(?:text|application)\/(?:ecma|java)script(\s*;\s*charset\s*=\s*[^;]*)?$/', $type);
// Remote scripts should have type specified in HTTP headers.
if ($is_std || $element->getAttributeNS('','src')) {
$element->removeAttributeNS('','type');
}
}
}
}
|