* @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); //
,,