* @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); // , 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 must be kept $this->most_recent_text_node = null; $this->had_space = false; } //
,