Blame view

mobile/source/ext/phptal/PHPTAL/Dom/CDATASection.php 1.88 KB
a1684257   Administrator   first commit
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
  <?php
  /**
   * PHPTAL templating engine
   *
   * PHP Version 5
   *
   * @category HTML
   * @package  PHPTAL
   * @author   Laurent Bedubourg <lbedubourg@motion-twin.com>
   * @author   Kornel LesiƄski <kornel@aardvarkmedia.co.uk>
   * @license  http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
   * @version  SVN: $Id: CDATASection.php 605 2009-05-03 02:50:26Z kornel $
   * @link     http://phptal.org/
   */
  
  
  /**
   * Outputs <![CDATA[ ]]> blocks, sometimes converts them to text
   * @todo this might be moved to CDATA processing in Element
   *
   * @package PHPTAL
   * @subpackage Dom
   */
  class PHPTAL_Dom_CDATASection extends PHPTAL_Dom_Node
  {
      public function generateCode(PHPTAL_Php_CodeWriter $codewriter)
      {
          $mode = $codewriter->getOutputMode();
          $value = $this->getValueEscaped();
          $inCDATAelement = PHPTAL_Dom_Defs::getInstance()->isCDATAElementInHTML($this->parentNode->getNamespaceURI(), $this->parentNode->getLocalName());
  
          // in HTML5 must limit it to <script> and <style>
          if ($mode === PHPTAL::HTML5 && $inCDATAelement) {
              $codewriter->pushHTML($codewriter->interpolateCDATA(str_replace('</', '<\/', $value)));
          } elseif (($mode === PHPTAL::XHTML && $inCDATAelement)  // safe for text/html
               || ($mode === PHPTAL::XML && preg_match('/[<>&]/', $value))  // non-useless in XML
               || ($mode !== PHPTAL::HTML5 && preg_match('/<\?|\${structure/', $value)))  // hacks with structure (in X[HT]ML) may need it
          {
              // in text/html "</" is dangerous and the only sensible way to escape is ECMAScript string escapes.
              if ($mode === PHPTAL::XHTML) $value = str_replace('</', '<\/', $value);
  
              $codewriter->pushHTML($codewriter->interpolateCDATA('<![CDATA['.$value.']]>'));
          } else {
              $codewriter->pushHTML($codewriter->interpolateHTML(htmlspecialchars($value)));
          }
      }
  }