Merge tag 'upstream/1.3.1'
Upstream version 1.3.1
This commit is contained in:
commit
f3e9ef3687
2372
HTML_Template_IT-1.3.0/HTML/Template/IT.php → HTML_Template_IT-1.3.1/HTML/Template/IT.php
Normal file → Executable file
2372
HTML_Template_IT-1.3.0/HTML/Template/IT.php → HTML_Template_IT-1.3.1/HTML/Template/IT.php
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
1778
HTML_Template_IT-1.3.0/HTML/Template/ITX.php → HTML_Template_IT-1.3.1/HTML/Template/ITX.php
Normal file → Executable file
1778
HTML_Template_IT-1.3.0/HTML/Template/ITX.php → HTML_Template_IT-1.3.1/HTML/Template/ITX.php
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
@ -1,65 +1,65 @@
|
||||
<?php
|
||||
/**
|
||||
* Integrated Template - IT
|
||||
*
|
||||
* PHP version 4
|
||||
*
|
||||
* Copyright (c) 1997-2007 Ulf Wendel, Pierre-Alain Joye,
|
||||
* David Soria Parra
|
||||
*
|
||||
* This source file is subject to the New BSD license, That is bundled
|
||||
* with this package in the file LICENSE, and is available through
|
||||
* the world-wide-web at
|
||||
* http://www.opensource.org/licenses/bsd-license.php
|
||||
* If you did not receive a copy of the new BSDlicense and are unable
|
||||
* to obtain it through the world-wide-web, please send a note to
|
||||
* pajoye@php.net so we can mail you a copy immediately.
|
||||
*
|
||||
* Author: Ulf Wendel <ulf.wendel@phpdoc.de>
|
||||
* Pierre-Alain Joye <pajoye@php.net>
|
||||
* David Soria Parra <dsp@php.net>
|
||||
*
|
||||
* @category HTML
|
||||
* @package HTML_Template_IT
|
||||
* @author Ulf Wendel <uw@netuse.de>
|
||||
* @license BSD http://www.opensource.org/licenses/bsd-license.php
|
||||
* @version CVS: $Id: IT_Error.php 295117 2010-02-15 23:25:21Z clockwerx $
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
|
||||
require_once "PEAR.php";
|
||||
|
||||
/**
|
||||
* IT[X] Error class
|
||||
*
|
||||
* @category HTML
|
||||
* @package HTML_Template_IT
|
||||
* @author Ulf Wendel <uw@netuse.de>
|
||||
* @license BSD http://www.opensource.org/licenses/bsd-license.php
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
class IT_Error extends PEAR_Error
|
||||
{
|
||||
/**
|
||||
* Prefix of all error messages.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
var $error_message_prefix = "IntegratedTemplate Error: ";
|
||||
|
||||
/**
|
||||
* Creates an cache error object.
|
||||
*
|
||||
* @param string $msg error message
|
||||
* @param string $file file where the error occured
|
||||
* @param string $line linenumber where the error occured
|
||||
*/
|
||||
function IT_Error($msg, $file = __FILE__, $line = __LINE__)
|
||||
{
|
||||
$this->PEAR_Error(sprintf("%s [%s on line %d].", $msg, $file, $line));
|
||||
} // end func IT_Error
|
||||
|
||||
} // end class IT_Error
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* Integrated Template - IT
|
||||
*
|
||||
* PHP version 4
|
||||
*
|
||||
* Copyright (c) 1997-2007 Ulf Wendel, Pierre-Alain Joye,
|
||||
* David Soria Parra
|
||||
*
|
||||
* This source file is subject to the New BSD license, That is bundled
|
||||
* with this package in the file LICENSE, and is available through
|
||||
* the world-wide-web at
|
||||
* http://www.opensource.org/licenses/bsd-license.php
|
||||
* If you did not receive a copy of the new BSDlicense and are unable
|
||||
* to obtain it through the world-wide-web, please send a note to
|
||||
* pajoye@php.net so we can mail you a copy immediately.
|
||||
*
|
||||
* Author: Ulf Wendel <ulf.wendel@phpdoc.de>
|
||||
* Pierre-Alain Joye <pajoye@php.net>
|
||||
* David Soria Parra <dsp@php.net>
|
||||
*
|
||||
* @category HTML
|
||||
* @package HTML_Template_IT
|
||||
* @author Ulf Wendel <uw@netuse.de>
|
||||
* @license BSD http://www.opensource.org/licenses/bsd-license.php
|
||||
* @version CVS: $Id$
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
|
||||
require_once "PEAR.php";
|
||||
|
||||
/**
|
||||
* IT[X] Error class
|
||||
*
|
||||
* @category HTML
|
||||
* @package HTML_Template_IT
|
||||
* @author Ulf Wendel <uw@netuse.de>
|
||||
* @license BSD http://www.opensource.org/licenses/bsd-license.php
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
class IT_Error extends PEAR_Error
|
||||
{
|
||||
/**
|
||||
* Prefix of all error messages.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
var $error_message_prefix = "IntegratedTemplate Error: ";
|
||||
|
||||
/**
|
||||
* Creates an cache error object.
|
||||
*
|
||||
* @param string $msg error message
|
||||
* @param string $file file where the error occured
|
||||
* @param string $line linenumber where the error occured
|
||||
*/
|
||||
function __construct($msg, $file = __FILE__, $line = __LINE__)
|
||||
{
|
||||
$this->PEAR_Error(sprintf("%s [%s on line %d].", $msg, $file, $line));
|
||||
} // end func IT_Error
|
||||
|
||||
} // end class IT_Error
|
||||
?>
|
@ -1,22 +1,22 @@
|
||||
Redistribution and use in source and binary forms, with or without modification
|
||||
, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, th
|
||||
is list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation and/
|
||||
or other materials provided with the distribution.
|
||||
|
||||
3. The name of the author may not be used to endorse or promote products derived
|
||||
from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WA
|
||||
RRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABIL
|
||||
ITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR C
|
||||
ONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||||
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOW
|
||||
EVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILI
|
||||
TY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE U
|
||||
SE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
Redistribution and use in source and binary forms, with or without modification
|
||||
, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, th
|
||||
is list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation and/
|
||||
or other materials provided with the distribution.
|
||||
|
||||
3. The name of the author may not be used to endorse or promote products derived
|
||||
from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WA
|
||||
RRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABIL
|
||||
ITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR C
|
||||
ONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||||
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOW
|
||||
EVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILI
|
||||
TY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE U
|
||||
SE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -1,27 +1,27 @@
|
||||
<?php
|
||||
require_once 'HTML/Template/IT.php';
|
||||
|
||||
$data = array (
|
||||
'0' => array('Stig', 'Bakken'),
|
||||
'1' => array('Martin', 'Jansen'),
|
||||
'2' => array('Alexander', 'Merz')
|
||||
);
|
||||
|
||||
$tpl = new HTML_Template_IT('./templates');
|
||||
$tpl->loadTemplatefile('main.tpl.htm', true, true);
|
||||
|
||||
foreach ($data as $name) {
|
||||
foreach ($name as $cell) {
|
||||
// Assign data to the inner block
|
||||
$tpl->setCurrentBlock('cell');
|
||||
$tpl->setVariable('DATA', $cell);
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
// Assign data and the inner block to the
|
||||
// outer block
|
||||
$tpl->setCurrentBlock('row');
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
// print the output
|
||||
$tpl->show();
|
||||
?>
|
||||
<?php
|
||||
require_once 'HTML/Template/IT.php';
|
||||
|
||||
$data = array (
|
||||
'0' => array('Stig', 'Bakken'),
|
||||
'1' => array('Martin', 'Jansen'),
|
||||
'2' => array('Alexander', 'Merz')
|
||||
);
|
||||
|
||||
$tpl = new HTML_Template_IT('./templates');
|
||||
$tpl->loadTemplatefile('main.tpl.htm', true, true);
|
||||
|
||||
foreach ($data as $name) {
|
||||
foreach ($name as $cell) {
|
||||
// Assign data to the inner block
|
||||
$tpl->setCurrentBlock('cell');
|
||||
$tpl->setVariable('DATA', $cell);
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
// Assign data and the inner block to the
|
||||
// outer block
|
||||
$tpl->setCurrentBlock('row');
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
// print the output
|
||||
$tpl->show();
|
||||
?>
|
120
HTML_Template_IT-1.3.0/examples/sample_itx_addblockfile.php → HTML_Template_IT-1.3.1/examples/sample_itx_addblockfile.php
Normal file → Executable file
120
HTML_Template_IT-1.3.0/examples/sample_itx_addblockfile.php → HTML_Template_IT-1.3.1/examples/sample_itx_addblockfile.php
Normal file → Executable file
@ -1,58 +1,62 @@
|
||||
<?php
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
/**
|
||||
* An example for the usage of ITX::addBlockfile
|
||||
*
|
||||
* @version CVS: $Id: sample_itx_addblockfile.php 216180 2006-07-11 21:56:05Z dsp $
|
||||
*/
|
||||
|
||||
require_once 'HTML/Template/ITX.php';
|
||||
|
||||
$data = array (array ('packagename'=>'mypackage',
|
||||
'version' =>'1.0',
|
||||
'changelog' => array ('fix bug #002',
|
||||
'add author FOO to AUTHORS')
|
||||
),
|
||||
array ('packagename'=>'mypackage',
|
||||
'version' =>'1.0 RC 1',
|
||||
'changelog' => array ('fix bug #002',
|
||||
'added method foo()')
|
||||
)
|
||||
);
|
||||
|
||||
$tpl = new HTML_Template_ITX('./templates');
|
||||
$tpl->loadTemplatefile('addblockfile_main.tpl.htm', true, true);
|
||||
|
||||
// The complete content of "addblockfile_main.tpl.htm" will be loaded into a block
|
||||
// called "list_template". The placeholder {DESCRIPTION} will be replaced
|
||||
// with the added block "list_template".
|
||||
$tpl->addBlockfile('DESCRIPTION', 'list_template', 'addblockfile_list.tpl.htm');
|
||||
|
||||
|
||||
// we now have the following blocks loaded:
|
||||
// __global__, row, list_template and listelement
|
||||
// lets assign the data.
|
||||
foreach ($data as $entry) {
|
||||
// assign data to the inner block (listelement) of list_template.
|
||||
$tpl->setCurrentBlock('listelement');
|
||||
foreach ($entry['changelog'] as $changelogentry) {
|
||||
$tpl->setVariable('ENTRY', $changelogentry);
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
|
||||
// assign data to the added list_template block
|
||||
$tpl->setCurrentBlock('list_template');
|
||||
$tpl->setVariable('LISTNAME', $entry['version']);
|
||||
$tpl->parseCurrentBlock();
|
||||
|
||||
// back in the original templatefile we assign data to the row block
|
||||
// notice:
|
||||
// {DESCRIPTION} is not longer available, because it was replaced by the
|
||||
// list_template block
|
||||
$tpl->setCurrentBlock('row');
|
||||
$tpl->setVariable('NAME', $entry['packagename']);
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
|
||||
$tpl->show();
|
||||
?>
|
||||
<?php
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
/**
|
||||
* An example for the usage of ITX::addBlockfile
|
||||
*
|
||||
* @version CVS: $Id$
|
||||
*/
|
||||
|
||||
// Show all errors and warnings
|
||||
error_reporting(E_ALL);
|
||||
ini_set('display_errors', 1);
|
||||
|
||||
require_once 'HTML/Template/ITX.php';
|
||||
|
||||
$data = array (array ('packagename'=>'mypackage',
|
||||
'version' =>'1.0',
|
||||
'changelog' => array ('fix bug #002',
|
||||
'add author FOO to AUTHORS')
|
||||
),
|
||||
array ('packagename'=>'mypackage',
|
||||
'version' =>'1.0 RC 1',
|
||||
'changelog' => array ('fix bug #002',
|
||||
'added method foo()')
|
||||
)
|
||||
);
|
||||
|
||||
$tpl = new HTML_Template_ITX('./templates');
|
||||
$tpl->loadTemplatefile('addblockfile_main.tpl.htm', true, true);
|
||||
|
||||
// The complete content of "addblockfile_main.tpl.htm" will be loaded into a block
|
||||
// called "list_template". The placeholder {DESCRIPTION} will be replaced
|
||||
// with the added block "list_template".
|
||||
$tpl->addBlockfile('DESCRIPTION', 'list_template', 'addblockfile_list.tpl.htm');
|
||||
|
||||
|
||||
// we now have the following blocks loaded:
|
||||
// __global__, row, list_template and listelement
|
||||
// lets assign the data.
|
||||
foreach ($data as $entry) {
|
||||
// assign data to the inner block (listelement) of list_template.
|
||||
$tpl->setCurrentBlock('listelement');
|
||||
foreach ($entry['changelog'] as $changelogentry) {
|
||||
$tpl->setVariable('ENTRY', $changelogentry);
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
|
||||
// assign data to the added list_template block
|
||||
$tpl->setCurrentBlock('list_template');
|
||||
$tpl->setVariable('LISTNAME', $entry['version']);
|
||||
$tpl->parseCurrentBlock();
|
||||
|
||||
// back in the original templatefile we assign data to the row block
|
||||
// notice:
|
||||
// {DESCRIPTION} is not longer available, because it was replaced by the
|
||||
// list_template block
|
||||
$tpl->setCurrentBlock('row');
|
||||
$tpl->setVariable('NAME', $entry['packagename']);
|
||||
$tpl->parseCurrentBlock();
|
||||
}
|
||||
|
||||
$tpl->show();
|
||||
?>
|
@ -1,6 +1,6 @@
|
||||
{LISTNAME}
|
||||
<ul>
|
||||
<!-- BEGIN listelement -->
|
||||
<li>{ENTRY}</li>
|
||||
<!-- END listelement -->
|
||||
{LISTNAME}
|
||||
<ul>
|
||||
<!-- BEGIN listelement -->
|
||||
<li>{ENTRY}</li>
|
||||
<!-- END listelement -->
|
||||
</ul>
|
@ -1,12 +1,12 @@
|
||||
<html>
|
||||
<body>
|
||||
<table>
|
||||
<!-- BEGIN row -->
|
||||
<tr>
|
||||
<td>{NAME}</td>
|
||||
<td>{DESCRIPTION}</td>
|
||||
</tr>
|
||||
<!-- END row -->
|
||||
</table>
|
||||
</body>
|
||||
<html>
|
||||
<body>
|
||||
<table>
|
||||
<!-- BEGIN row -->
|
||||
<tr>
|
||||
<td>{NAME}</td>
|
||||
<td>{DESCRIPTION}</td>
|
||||
</tr>
|
||||
<!-- END row -->
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
@ -1,13 +1,13 @@
|
||||
<html>
|
||||
<table border>
|
||||
<!-- BEGIN row -->
|
||||
<tr>
|
||||
<!-- BEGIN cell -->
|
||||
<td>
|
||||
{DATA}
|
||||
</td>
|
||||
<!-- END cell -->
|
||||
</tr>
|
||||
<!-- END row -->
|
||||
</table>
|
||||
</html>
|
||||
<html>
|
||||
<table border>
|
||||
<!-- BEGIN row -->
|
||||
<tr>
|
||||
<!-- BEGIN cell -->
|
||||
<td>
|
||||
{DATA}
|
||||
</td>
|
||||
<!-- END cell -->
|
||||
</tr>
|
||||
<!-- END row -->
|
||||
</table>
|
||||
</html>
|
@ -1,416 +1,416 @@
|
||||
<?php
|
||||
require_once 'HTML/Template/IT.php';
|
||||
require_once 'PHPUnit/Framework/TestCase.php';
|
||||
|
||||
class ITTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* An HTML_Template_IT object
|
||||
* @var object
|
||||
*/
|
||||
var $tpl;
|
||||
|
||||
function setUp()
|
||||
{
|
||||
$this->tpl = new HTML_Template_IT(dirname(__FILE__) . '/templates');
|
||||
}
|
||||
|
||||
function tearDown()
|
||||
{
|
||||
unset($this->tpl);
|
||||
}
|
||||
|
||||
function _stripWhitespace($str)
|
||||
{
|
||||
return preg_replace('/\\s+/', '', $str);
|
||||
}
|
||||
|
||||
function _methodExists($name)
|
||||
{
|
||||
if (in_array(strtolower($name), get_class_methods($this->tpl))) {
|
||||
return true;
|
||||
}
|
||||
$this->assertTrue(false, 'method '. $name . ' not implemented in ' . get_class($this->tpl));
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a setTemplate method
|
||||
*
|
||||
*/
|
||||
function testSetTemplate()
|
||||
{
|
||||
$result = $this->tpl->setTemplate('A template', false, false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
$this->assertEquals('A template', $this->tpl->get());
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a loadTemplatefile method
|
||||
*
|
||||
*/
|
||||
function testLoadTemplatefile()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('loadtemplatefile.html', false, false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertEquals('A template', trim($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a setVariable method
|
||||
*
|
||||
*/
|
||||
function testSetVariable()
|
||||
{
|
||||
$result = $this->tpl->setTemplate('{placeholder1} {placeholder2} {placeholder3}', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
// "scalar" call
|
||||
$this->tpl->setVariable('placeholder1', 'var1');
|
||||
// array call
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder2' => 'var2',
|
||||
'placeholder3' => 'var3'
|
||||
));
|
||||
$this->assertEquals('var1 var2 var3', $this->tpl->get());
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the <!-- INCLUDE --> functionality
|
||||
*
|
||||
*/
|
||||
function testInclude()
|
||||
{
|
||||
$result = $this->tpl->loadTemplateFile('include.html', false, false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertEquals('Master file; Included file', trim($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function testCurrentBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('outer', 'a');
|
||||
$this->tpl->setCurrentBlock('inner_block');
|
||||
for ($i = 0; $i < 5; $i++) {
|
||||
$this->tpl->setVariable('inner', $i + 1);
|
||||
$this->tpl->parseCurrentBlock();
|
||||
} // for
|
||||
$this->assertEquals('a|1|2|3|4|5#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function testRemovePlaceholders()
|
||||
{
|
||||
$result = $this->tpl->setTemplate('{placeholder1},{placeholder2},{placeholder3}', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
// we do not set {placeholder3}
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder1' => 'var1',
|
||||
'placeholder2' => 'var2'
|
||||
));
|
||||
$this->assertEquals('var1,var2,', $this->tpl->get());
|
||||
|
||||
// Now, we should really add a switch for keeping {stuff} in
|
||||
// data supplied to setVariable() safe. Until then, removing it should
|
||||
// be expected behaviour
|
||||
$result = $this->tpl->setTemplate('{placeholder1},{placeholder2},{placeholder3}', true, true);
|
||||
$this->tpl->setOption('preserve_input', false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder1' => 'var1',
|
||||
'placeholder2' => 'var2',
|
||||
'placeholder3' => 'var3{stuff}'
|
||||
));
|
||||
$this->assertEquals('var1,var2,var3', $this->tpl->get());
|
||||
|
||||
$result = $this->tpl->setTemplate('{placeholder1},{placeholder2},{placeholder3}', true, true);
|
||||
$this->tpl->setOption('preserve_input', true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder1' => 'var1',
|
||||
'placeholder2' => 'var2',
|
||||
'placeholder3' => 'var3{stuff}'
|
||||
));
|
||||
$this->assertEquals('var1,var2,var3{stuff}', $this->tpl->get());
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function testTouchBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', false, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('outer', 'data');
|
||||
// inner_block should be preserved in output, even if empty
|
||||
$this->tpl->touchBlock('inner_block');
|
||||
$this->assertEquals('data|{inner}#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
// Not available in stock class
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
/*
|
||||
function testHideBlock()
|
||||
{
|
||||
if (!$this->_methodExists('hideBlock')) {
|
||||
return;
|
||||
}
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', false, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable(array(
|
||||
'outer' => 'data',
|
||||
'inner' => 'stuff'
|
||||
));
|
||||
// inner_block is not empty, but should be removed nonetheless
|
||||
$this->tpl->hideBlock('inner_block');
|
||||
$this->assertEquals('data#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
/*
|
||||
function testSetGlobalVariable()
|
||||
{
|
||||
if (!$this->_methodExists('setGlobalVariable')) {
|
||||
return;
|
||||
}
|
||||
$result = $this->tpl->loadTemplateFile('globals.html', false, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setGlobalVariable('glob', 'glob');
|
||||
// {var2} is not, block_two should be removed
|
||||
$this->tpl->setVariable(array(
|
||||
'var1' => 'one',
|
||||
'var3' => 'three'
|
||||
));
|
||||
for ($i = 0; $i < 3; $i++) {
|
||||
$this->tpl->setVariable('var4', $i + 1);
|
||||
$this->tpl->parse('block_four');
|
||||
} // for
|
||||
$this->assertEquals('glob:one#glob:three|glob:1|glob:2|glob:3#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Test for bug #9501. preg_replace treat $<NUM> and \<NUM> as
|
||||
* backreferences. IT escapes them.
|
||||
*
|
||||
*/
|
||||
function testBug9501()
|
||||
{
|
||||
$this->tpl->setTemplate("Test: {VALUE}");
|
||||
$this->tpl->clearCache = true;
|
||||
|
||||
$this->tpl->setVariable("VALUE", '$12.34');
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '$1256.34');
|
||||
$this->assertEquals('Test: $1256.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '^1.34');
|
||||
$this->assertEquals('Test: ^1.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '$1.34');
|
||||
$this->assertEquals('Test: $1.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '\$12.34');
|
||||
$this->assertEquals('Test: \$12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", "\$12.34");
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", "\$12.34");
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
// $12 is not parsed as a variable as it starts with a number
|
||||
$this->tpl->setVariable("VALUE", "$12.34");
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", "\\$12.34");
|
||||
$this->assertEquals('Test: \$12.34', $this->tpl->get());
|
||||
|
||||
// taken from the bugreport
|
||||
$word = 'Cost is $456.98';
|
||||
$this->tpl->setVariable("VALUE", $word);
|
||||
$this->assertEquals('Test: Cost is $456.98', $this->tpl->get());
|
||||
|
||||
$word = "Cost is \$" . '183.22';
|
||||
$this->tpl->setVariable("VALUE", $word);
|
||||
$this->assertEquals('Test: Cost is $183.22', $this->tpl->get());
|
||||
}
|
||||
|
||||
function testBug9783 ()
|
||||
{
|
||||
$this->tpl->setTemplate("<!-- BEGIN entry -->{DATA} <!-- END entry -->", true, true);
|
||||
$data = array ('{Bakken}', 'Soria', 'Joye');
|
||||
foreach ($data as $name) {
|
||||
$this->tpl->setCurrentBlock('entry');
|
||||
$this->tpl->setVariable('DATA', $name);
|
||||
$this->tpl->parseCurrentBlock();
|
||||
}
|
||||
|
||||
$this->assertEquals('{Bakken} Soria Joye', trim($this->tpl->get()));
|
||||
|
||||
}
|
||||
|
||||
function testBug9853 ()
|
||||
{
|
||||
$this->tpl->loadTemplatefile("bug_9853_01.tpl", true, true);
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo1");
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo2");
|
||||
|
||||
$this->tpl->setVariable("VAR." , "Ok !");
|
||||
$this->tpl->setVariable("VAR2" , "Okay");
|
||||
$this->tpl->parse("bar");
|
||||
|
||||
$this->tpl->parse();
|
||||
$output01 = $this->tpl->get();
|
||||
|
||||
$this->tpl->loadTemplatefile("bug_9853_02.tpl", true, true);
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo.");
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo2");
|
||||
|
||||
$this->tpl->setVariable("VAR." , "Ok !");
|
||||
$this->tpl->setVariable("VAR2" , "Okay");
|
||||
$this->tpl->parse("bar");
|
||||
|
||||
$this->tpl->parse();
|
||||
$output02 = $this->tpl->get();
|
||||
|
||||
$this->assertEquals($output01, $output02);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Tests iterations over two blocks
|
||||
*
|
||||
*/
|
||||
function testBlockIteration()
|
||||
{
|
||||
$data = array(
|
||||
'a',
|
||||
array('b', array('1', '2', '3', '4')),
|
||||
'c',
|
||||
array('d', array('5', '6', '7'))
|
||||
);
|
||||
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
foreach ($data as $value) {
|
||||
if (is_array($value)) {
|
||||
$this->tpl->setVariable('outer', $value[0]);
|
||||
foreach ($value[1] as $v) {
|
||||
$this->tpl->setVariable('inner', $v);
|
||||
$this->tpl->parse('inner_block');
|
||||
}
|
||||
} else {
|
||||
$this->tpl->setVariable('outer', $value);
|
||||
}
|
||||
$this->tpl->parse('outer_block');
|
||||
}
|
||||
$this->assertEquals('a#b|1|2|3|4#c#d|5|6|7#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
function testTouchBlockIteration()
|
||||
{
|
||||
$data = array('a','b','c','d','e');
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
for ($i = 0; $i < count($data); $i++) {
|
||||
$this->tpl->setVariable('outer', $data[$i]);
|
||||
// the inner_block is empty and should be removed
|
||||
if (0 == $i % 2) {
|
||||
$this->tpl->touchBlock('inner_block');
|
||||
}
|
||||
$this->tpl->parse('outer_block');
|
||||
}
|
||||
$this->assertEquals('a|#b#c|#d#e|#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
public function testShouldSetOptionsCorrectly() {
|
||||
$result = $this->tpl->setOption('removeEmptyBlocks', false);
|
||||
|
||||
$this->assertFalse(PEAR::isError($result));
|
||||
|
||||
$this->assertFalse($this->tpl->removeEmptyBlocks);
|
||||
|
||||
$result = $this->tpl->setOption('removeEmptyBlocks', true);
|
||||
|
||||
$this->assertFalse(PEAR::isError($result));
|
||||
|
||||
$this->assertTrue($this->tpl->removeEmptyBlocks);
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function testPlaceholderReplacementScope() {
|
||||
$result = $this->tpl->loadTemplateFile('placeholderreplacementscope.html', true, true);
|
||||
|
||||
if (PEAR::isError($result)) {
|
||||
$this->fail('Error loading template file: ' . $result->getMessage());
|
||||
}
|
||||
|
||||
|
||||
$this->tpl->setCurrentBlock('foo');
|
||||
$this->tpl->setVariable('var1','test');
|
||||
$this->tpl->parseCurrentBlock();
|
||||
$this->tpl->setCurrentBlock('bar');
|
||||
$this->tpl->setVariable('var1','not');
|
||||
$this->tpl->setVariable('var2','good');
|
||||
$this->tpl->parseCurrentBlock();
|
||||
|
||||
$actual = $this->_stripWhitespace($this->tpl->get());
|
||||
$this->assertEquals('testgood', $actual);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
<?php
|
||||
require_once 'HTML/Template/IT.php';
|
||||
require_once 'PHPUnit/Framework/TestCase.php';
|
||||
|
||||
class ITTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* An HTML_Template_IT object
|
||||
* @var object
|
||||
*/
|
||||
var $tpl;
|
||||
|
||||
function setUp()
|
||||
{
|
||||
$this->tpl = new HTML_Template_IT(dirname(__FILE__) . '/templates');
|
||||
}
|
||||
|
||||
function tearDown()
|
||||
{
|
||||
unset($this->tpl);
|
||||
}
|
||||
|
||||
function _stripWhitespace($str)
|
||||
{
|
||||
return preg_replace('/\\s+/', '', $str);
|
||||
}
|
||||
|
||||
function _methodExists($name)
|
||||
{
|
||||
if (in_array(strtolower($name), get_class_methods($this->tpl))) {
|
||||
return true;
|
||||
}
|
||||
$this->assertTrue(false, 'method '. $name . ' not implemented in ' . get_class($this->tpl));
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a setTemplate method
|
||||
*
|
||||
*/
|
||||
function testSetTemplate()
|
||||
{
|
||||
$result = $this->tpl->setTemplate('A template', false, false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
$this->assertEquals('A template', $this->tpl->get());
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a loadTemplatefile method
|
||||
*
|
||||
*/
|
||||
function testLoadTemplatefile()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('loadtemplatefile.html', false, false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertEquals('A template', trim($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a setVariable method
|
||||
*
|
||||
*/
|
||||
function testSetVariable()
|
||||
{
|
||||
$result = $this->tpl->setTemplate('{placeholder1} {placeholder2} {placeholder3}', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
// "scalar" call
|
||||
$this->tpl->setVariable('placeholder1', 'var1');
|
||||
// array call
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder2' => 'var2',
|
||||
'placeholder3' => 'var3'
|
||||
));
|
||||
$this->assertEquals('var1 var2 var3', $this->tpl->get());
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the <!-- INCLUDE --> functionality
|
||||
*
|
||||
*/
|
||||
function testInclude()
|
||||
{
|
||||
$result = $this->tpl->loadTemplateFile('include.html', false, false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertEquals('Master file; Included file', trim($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function testCurrentBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('outer', 'a');
|
||||
$this->tpl->setCurrentBlock('inner_block');
|
||||
for ($i = 0; $i < 5; $i++) {
|
||||
$this->tpl->setVariable('inner', $i + 1);
|
||||
$this->tpl->parseCurrentBlock();
|
||||
} // for
|
||||
$this->assertEquals('a|1|2|3|4|5#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function testRemovePlaceholders()
|
||||
{
|
||||
$result = $this->tpl->setTemplate('{placeholder1},{placeholder2},{placeholder3}', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
// we do not set {placeholder3}
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder1' => 'var1',
|
||||
'placeholder2' => 'var2'
|
||||
));
|
||||
$this->assertEquals('var1,var2,', $this->tpl->get());
|
||||
|
||||
// Now, we should really add a switch for keeping {stuff} in
|
||||
// data supplied to setVariable() safe. Until then, removing it should
|
||||
// be expected behaviour
|
||||
$result = $this->tpl->setTemplate('{placeholder1},{placeholder2},{placeholder3}', true, true);
|
||||
$this->tpl->setOption('preserve_input', false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder1' => 'var1',
|
||||
'placeholder2' => 'var2',
|
||||
'placeholder3' => 'var3{stuff}'
|
||||
));
|
||||
$this->assertEquals('var1,var2,var3', $this->tpl->get());
|
||||
|
||||
$result = $this->tpl->setTemplate('{placeholder1},{placeholder2},{placeholder3}', true, true);
|
||||
$this->tpl->setOption('preserve_input', true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error setting template: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable(array(
|
||||
'placeholder1' => 'var1',
|
||||
'placeholder2' => 'var2',
|
||||
'placeholder3' => 'var3{stuff}'
|
||||
));
|
||||
$this->assertEquals('var1,var2,var3{stuff}', $this->tpl->get());
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function testTouchBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', false, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('outer', 'data');
|
||||
// inner_block should be preserved in output, even if empty
|
||||
$this->tpl->touchBlock('inner_block');
|
||||
$this->assertEquals('data|{inner}#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
// Not available in stock class
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
/*
|
||||
function testHideBlock()
|
||||
{
|
||||
if (!$this->_methodExists('hideBlock')) {
|
||||
return;
|
||||
}
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', false, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable(array(
|
||||
'outer' => 'data',
|
||||
'inner' => 'stuff'
|
||||
));
|
||||
// inner_block is not empty, but should be removed nonetheless
|
||||
$this->tpl->hideBlock('inner_block');
|
||||
$this->assertEquals('data#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
/*
|
||||
function testSetGlobalVariable()
|
||||
{
|
||||
if (!$this->_methodExists('setGlobalVariable')) {
|
||||
return;
|
||||
}
|
||||
$result = $this->tpl->loadTemplateFile('globals.html', false, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setGlobalVariable('glob', 'glob');
|
||||
// {var2} is not, block_two should be removed
|
||||
$this->tpl->setVariable(array(
|
||||
'var1' => 'one',
|
||||
'var3' => 'three'
|
||||
));
|
||||
for ($i = 0; $i < 3; $i++) {
|
||||
$this->tpl->setVariable('var4', $i + 1);
|
||||
$this->tpl->parse('block_four');
|
||||
} // for
|
||||
$this->assertEquals('glob:one#glob:three|glob:1|glob:2|glob:3#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Test for bug #9501. preg_replace treat $<NUM> and \<NUM> as
|
||||
* backreferences. IT escapes them.
|
||||
*
|
||||
*/
|
||||
function testBug9501()
|
||||
{
|
||||
$this->tpl->setTemplate("Test: {VALUE}");
|
||||
$this->tpl->clearCache = true;
|
||||
|
||||
$this->tpl->setVariable("VALUE", '$12.34');
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '$1256.34');
|
||||
$this->assertEquals('Test: $1256.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '^1.34');
|
||||
$this->assertEquals('Test: ^1.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '$1.34');
|
||||
$this->assertEquals('Test: $1.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", '\$12.34');
|
||||
$this->assertEquals('Test: \$12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", "\$12.34");
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", "\$12.34");
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
// $12 is not parsed as a variable as it starts with a number
|
||||
$this->tpl->setVariable("VALUE", "$12.34");
|
||||
$this->assertEquals('Test: $12.34', $this->tpl->get());
|
||||
|
||||
$this->tpl->setVariable("VALUE", "\\$12.34");
|
||||
$this->assertEquals('Test: \$12.34', $this->tpl->get());
|
||||
|
||||
// taken from the bugreport
|
||||
$word = 'Cost is $456.98';
|
||||
$this->tpl->setVariable("VALUE", $word);
|
||||
$this->assertEquals('Test: Cost is $456.98', $this->tpl->get());
|
||||
|
||||
$word = "Cost is \$" . '183.22';
|
||||
$this->tpl->setVariable("VALUE", $word);
|
||||
$this->assertEquals('Test: Cost is $183.22', $this->tpl->get());
|
||||
}
|
||||
|
||||
function testBug9783 ()
|
||||
{
|
||||
$this->tpl->setTemplate("<!-- BEGIN entry -->{DATA} <!-- END entry -->", true, true);
|
||||
$data = array ('{Bakken}', 'Soria', 'Joye');
|
||||
foreach ($data as $name) {
|
||||
$this->tpl->setCurrentBlock('entry');
|
||||
$this->tpl->setVariable('DATA', $name);
|
||||
$this->tpl->parseCurrentBlock();
|
||||
}
|
||||
|
||||
$this->assertEquals('{Bakken} Soria Joye', trim($this->tpl->get()));
|
||||
|
||||
}
|
||||
|
||||
function testBug9853 ()
|
||||
{
|
||||
$this->tpl->loadTemplatefile("bug_9853_01.tpl", true, true);
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo1");
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo2");
|
||||
|
||||
$this->tpl->setVariable("VAR." , "Ok !");
|
||||
$this->tpl->setVariable("VAR2" , "Okay");
|
||||
$this->tpl->parse("bar");
|
||||
|
||||
$this->tpl->parse();
|
||||
$output01 = $this->tpl->get();
|
||||
|
||||
$this->tpl->loadTemplatefile("bug_9853_02.tpl", true, true);
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo.");
|
||||
|
||||
$this->tpl->setVariable("VAR" , "Ok !");
|
||||
$this->tpl->parse("foo2");
|
||||
|
||||
$this->tpl->setVariable("VAR." , "Ok !");
|
||||
$this->tpl->setVariable("VAR2" , "Okay");
|
||||
$this->tpl->parse("bar");
|
||||
|
||||
$this->tpl->parse();
|
||||
$output02 = $this->tpl->get();
|
||||
|
||||
$this->assertEquals($output01, $output02);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Tests iterations over two blocks
|
||||
*
|
||||
*/
|
||||
function testBlockIteration()
|
||||
{
|
||||
$data = array(
|
||||
'a',
|
||||
array('b', array('1', '2', '3', '4')),
|
||||
'c',
|
||||
array('d', array('5', '6', '7'))
|
||||
);
|
||||
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
foreach ($data as $value) {
|
||||
if (is_array($value)) {
|
||||
$this->tpl->setVariable('outer', $value[0]);
|
||||
foreach ($value[1] as $v) {
|
||||
$this->tpl->setVariable('inner', $v);
|
||||
$this->tpl->parse('inner_block');
|
||||
}
|
||||
} else {
|
||||
$this->tpl->setVariable('outer', $value);
|
||||
}
|
||||
$this->tpl->parse('outer_block');
|
||||
}
|
||||
$this->assertEquals('a#b|1|2|3|4#c#d|5|6|7#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
function testTouchBlockIteration()
|
||||
{
|
||||
$data = array('a','b','c','d','e');
|
||||
$result = $this->tpl->loadTemplateFile('blockiteration.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
for ($i = 0; $i < count($data); $i++) {
|
||||
$this->tpl->setVariable('outer', $data[$i]);
|
||||
// the inner_block is empty and should be removed
|
||||
if (0 == $i % 2) {
|
||||
$this->tpl->touchBlock('inner_block');
|
||||
}
|
||||
$this->tpl->parse('outer_block');
|
||||
}
|
||||
$this->assertEquals('a|#b#c|#d#e|#', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
public function testShouldSetOptionsCorrectly() {
|
||||
$result = $this->tpl->setOption('removeEmptyBlocks', false);
|
||||
|
||||
$this->assertFalse(PEAR::isError($result));
|
||||
|
||||
$this->assertFalse($this->tpl->removeEmptyBlocks);
|
||||
|
||||
$result = $this->tpl->setOption('removeEmptyBlocks', true);
|
||||
|
||||
$this->assertFalse(PEAR::isError($result));
|
||||
|
||||
$this->assertTrue($this->tpl->removeEmptyBlocks);
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function testPlaceholderReplacementScope() {
|
||||
$result = $this->tpl->loadTemplateFile('placeholderreplacementscope.html', true, true);
|
||||
|
||||
if (PEAR::isError($result)) {
|
||||
$this->fail('Error loading template file: ' . $result->getMessage());
|
||||
}
|
||||
|
||||
|
||||
$this->tpl->setCurrentBlock('foo');
|
||||
$this->tpl->setVariable('var1','test');
|
||||
$this->tpl->parseCurrentBlock();
|
||||
$this->tpl->setCurrentBlock('bar');
|
||||
$this->tpl->setVariable('var1','not');
|
||||
$this->tpl->setVariable('var2','good');
|
||||
$this->tpl->parseCurrentBlock();
|
||||
|
||||
$actual = $this->_stripWhitespace($this->tpl->get());
|
||||
$this->assertEquals('testgood', $actual);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
@ -1,171 +1,171 @@
|
||||
<?php
|
||||
require_once 'HTML/Template/ITX.php';
|
||||
require_once 'PHPUnit/Framework/TestCase.php';
|
||||
|
||||
require_once 'ITTest.php';
|
||||
|
||||
function _uppercaseCallback($ary)
|
||||
{
|
||||
return strtoupper($ary[0]);
|
||||
}
|
||||
|
||||
class Callbacks
|
||||
{
|
||||
function _lowercaseCallback($ary)
|
||||
{
|
||||
return strtolower($ary[0]);
|
||||
}
|
||||
|
||||
function _numberFormatCallback($float, $decimals)
|
||||
{
|
||||
return number_format($float, $decimals);
|
||||
}
|
||||
}
|
||||
|
||||
class ITXTest extends ITTest
|
||||
{
|
||||
function setUp()
|
||||
{
|
||||
$this->tpl = new HTML_Template_ITX(dirname(__FILE__) . '/templates');
|
||||
}
|
||||
|
||||
function testPlaceholderExists()
|
||||
{
|
||||
$this->tpl->setTemplate('{var}');
|
||||
$this->assertSame("__global__", $this->tpl->placeholderExists('var'), 'Existing placeholder \'var\' reported as nonexistant');
|
||||
$this->assertSame("", $this->tpl->placeholderExists('foobar'), 'Nonexistant placeholder \'foobar\' reported as existing');
|
||||
$this->assertSame("__global__", $this->tpl->placeholderExists('var', '__global__'), 'Existing in block \'__global__\' placeholder \'var\' reported as nonexistant');
|
||||
$this->assertSame("", $this->tpl->placeholderExists('foobar', '__global__'), 'Nonexistant in block \'__global__\' placeholder \'foobar\' reported as existing');
|
||||
}
|
||||
|
||||
function testBlockExists()
|
||||
{
|
||||
$this->tpl->setTemplate('{var}');
|
||||
$this->assertTrue($this->tpl->blockExists('__global__'), 'Existing block \'__global__\' reported as nonexistant');
|
||||
$this->assertTrue(!$this->tpl->blockExists('foobar'), 'Nonexistant block \'foobar\' reported as existing');
|
||||
}
|
||||
|
||||
function testAddBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->addBlock('var', 'added', 'added:{new_var}');
|
||||
$this->assertTrue($this->tpl->blockExists('added'), 'The new block seems to be missing');
|
||||
$this->assertTrue(!$this->tpl->placeholderExists('var'), 'The old variable seems to be still present in the template');
|
||||
$this->tpl->setVariable('new_var', 'new_value');
|
||||
$this->assertEquals('added:new_value', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testAddBlockfile()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$result = $this->tpl->addBlockfile('var', 'added', 'addblock.html');
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error adding block from file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertTrue($this->tpl->blockExists('added'), 'The new block seems to be missing');
|
||||
$this->assertTrue(!$this->tpl->placeholderExists('var'), 'The old variable seems to be still present in the template');
|
||||
$this->tpl->setVariable('new_var', 'new_value');
|
||||
$this->assertEquals('added:new_value', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testReplaceBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('old_var', 'old_value');
|
||||
$this->tpl->parse('old_block');
|
||||
// old_block's contents should be discarded
|
||||
$this->tpl->replaceBlock('old_block', 'replaced:{replaced_var}#', false);
|
||||
$this->assertTrue(!$this->tpl->blockExists('old_inner_block') && !$this->tpl->placeholderExists('old_var'),
|
||||
'The replaced block\'s contents seem to be still present');
|
||||
$this->tpl->setVariable('replaced_var', 'replaced_value');
|
||||
$this->tpl->parse('old_block');
|
||||
// this time old_block's contents should be preserved
|
||||
$this->tpl->replaceBlock('old_block', 'replaced_again:{brand_new_var}', true);
|
||||
$this->tpl->setVariable('brand_new_var', 'brand_new_value');
|
||||
$this->assertEquals('replaced:replaced_value#replaced_again:brand_new_value', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testReplaceBlockfile()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('old_var', 'old_value');
|
||||
$this->tpl->parse('old_block');
|
||||
// old_block's contents should be discarded
|
||||
$result = $this->tpl->replaceBlockfile('old_block', 'replaceblock.html', false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error replacing block from file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertTrue(!$this->tpl->blockExists('old_inner_block') && !$this->tpl->placeholderExists('old_var'),
|
||||
'The replaced block\'s contents seem to be still present');
|
||||
$this->tpl->setVariable(array(
|
||||
'replaced_var' => 'replaced_value',
|
||||
'replaced_inner_var' => 'inner_value'
|
||||
));
|
||||
$this->tpl->parse('old_block');
|
||||
// this time old_block's contents should be preserved
|
||||
$result = $this->tpl->replaceBlockfile('old_block', 'addblock.html', true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error replacing block from file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('new_var', 'again');
|
||||
$this->assertEquals('replaced:replaced_value|inner_value#added:again', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testCallback()
|
||||
{
|
||||
$this->tpl->setTemplate('callback:func_uppercase(word)');
|
||||
$this->tpl->setCallbackFunction('uppercase', '_uppercaseCallback');
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:WORD', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_lowercase(Word)');
|
||||
$this->tpl->setCallbackFunction('lowercase', array('Callbacks','_lowercaseCallback'));
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:word', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_lowercase(Word)');
|
||||
$this->tpl->setCallbackFunction('lowercase', array(new Callbacks,'_lowercaseCallback'));
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:word', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_numberFormat(1.5, 2)');
|
||||
$this->tpl->setCallbackFunction('numberFormat', array('Callbacks', '_numberFormatCallback'), '', true);
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:1.50', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_numberFormat(1.5, 2)');
|
||||
$GLOBALS['obj'] = new Callbacks;
|
||||
$this->tpl->setCallbackFunction('numberFormat', '_numberFormatCallback', 'obj', true);
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:1.50', $this->tpl->get());
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<?php
|
||||
require_once 'HTML/Template/ITX.php';
|
||||
require_once 'PHPUnit/Framework/TestCase.php';
|
||||
|
||||
require_once 'ITTest.php';
|
||||
|
||||
function _uppercaseCallback($ary)
|
||||
{
|
||||
return strtoupper($ary[0]);
|
||||
}
|
||||
|
||||
class Callbacks
|
||||
{
|
||||
static function _lowercaseCallback($ary)
|
||||
{
|
||||
return strtolower($ary[0]);
|
||||
}
|
||||
|
||||
static function _numberFormatCallback($float, $decimals)
|
||||
{
|
||||
return number_format($float, $decimals);
|
||||
}
|
||||
}
|
||||
|
||||
class ITXTest extends ITTest
|
||||
{
|
||||
function setUp()
|
||||
{
|
||||
$this->tpl = new HTML_Template_ITX(dirname(__FILE__) . '/templates');
|
||||
}
|
||||
|
||||
function testPlaceholderExists()
|
||||
{
|
||||
$this->tpl->setTemplate('{var}');
|
||||
$this->assertSame("__global__", $this->tpl->placeholderExists('var'), 'Existing placeholder \'var\' reported as nonexistant');
|
||||
$this->assertSame("", $this->tpl->placeholderExists('foobar'), 'Nonexistant placeholder \'foobar\' reported as existing');
|
||||
$this->assertSame("__global__", $this->tpl->placeholderExists('var', '__global__'), 'Existing in block \'__global__\' placeholder \'var\' reported as nonexistant');
|
||||
$this->assertSame("", $this->tpl->placeholderExists('foobar', '__global__'), 'Nonexistant in block \'__global__\' placeholder \'foobar\' reported as existing');
|
||||
}
|
||||
|
||||
function testBlockExists()
|
||||
{
|
||||
$this->tpl->setTemplate('{var}');
|
||||
$this->assertTrue($this->tpl->blockExists('__global__'), 'Existing block \'__global__\' reported as nonexistant');
|
||||
$this->assertTrue(!$this->tpl->blockExists('foobar'), 'Nonexistant block \'foobar\' reported as existing');
|
||||
}
|
||||
|
||||
function testAddBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->addBlock('var', 'added', 'added:{new_var}');
|
||||
$this->assertTrue($this->tpl->blockExists('added'), 'The new block seems to be missing');
|
||||
$this->assertTrue(!$this->tpl->placeholderExists('var'), 'The old variable seems to be still present in the template');
|
||||
$this->tpl->setVariable('new_var', 'new_value');
|
||||
$this->assertEquals('added:new_value', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testAddBlockfile()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$result = $this->tpl->addBlockfile('var', 'added', 'addblock.html');
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error adding block from file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertTrue($this->tpl->blockExists('added'), 'The new block seems to be missing');
|
||||
$this->assertTrue(!$this->tpl->placeholderExists('var'), 'The old variable seems to be still present in the template');
|
||||
$this->tpl->setVariable('new_var', 'new_value');
|
||||
$this->assertEquals('added:new_value', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testReplaceBlock()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('old_var', 'old_value');
|
||||
$this->tpl->parse('old_block');
|
||||
// old_block's contents should be discarded
|
||||
$this->tpl->replaceBlock('old_block', 'replaced:{replaced_var}#', false);
|
||||
$this->assertTrue(!$this->tpl->blockExists('old_inner_block') && !$this->tpl->placeholderExists('old_var'),
|
||||
'The replaced block\'s contents seem to be still present');
|
||||
$this->tpl->setVariable('replaced_var', 'replaced_value');
|
||||
$this->tpl->parse('old_block');
|
||||
// this time old_block's contents should be preserved
|
||||
$this->tpl->replaceBlock('old_block', 'replaced_again:{brand_new_var}', true);
|
||||
$this->tpl->setVariable('brand_new_var', 'brand_new_value');
|
||||
$this->assertEquals('replaced:replaced_value#replaced_again:brand_new_value', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testReplaceBlockfile()
|
||||
{
|
||||
$result = $this->tpl->loadTemplatefile('blocks.html', true, true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error loading template file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('old_var', 'old_value');
|
||||
$this->tpl->parse('old_block');
|
||||
// old_block's contents should be discarded
|
||||
$result = $this->tpl->replaceBlockfile('old_block', 'replaceblock.html', false);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error replacing block from file: '. $result->getMessage());
|
||||
}
|
||||
$this->assertTrue(!$this->tpl->blockExists('old_inner_block') && !$this->tpl->placeholderExists('old_var'),
|
||||
'The replaced block\'s contents seem to be still present');
|
||||
$this->tpl->setVariable(array(
|
||||
'replaced_var' => 'replaced_value',
|
||||
'replaced_inner_var' => 'inner_value'
|
||||
));
|
||||
$this->tpl->parse('old_block');
|
||||
// this time old_block's contents should be preserved
|
||||
$result = $this->tpl->replaceBlockfile('old_block', 'addblock.html', true);
|
||||
if (PEAR::isError($result)) {
|
||||
$this->assertTrue(false, 'Error replacing block from file: '. $result->getMessage());
|
||||
}
|
||||
$this->tpl->setVariable('new_var', 'again');
|
||||
$this->assertEquals('replaced:replaced_value|inner_value#added:again', $this->_stripWhitespace($this->tpl->get()));
|
||||
}
|
||||
|
||||
function testCallback()
|
||||
{
|
||||
$this->tpl->setTemplate('callback:func_uppercase(word)');
|
||||
$this->tpl->setCallbackFunction('uppercase', '_uppercaseCallback');
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:WORD', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_lowercase(Word)');
|
||||
$this->tpl->setCallbackFunction('lowercase', array('Callbacks','_lowercaseCallback'));
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:word', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_lowercase(Word)');
|
||||
$this->tpl->setCallbackFunction('lowercase', array(new Callbacks,'_lowercaseCallback'));
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:word', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_numberFormat(1.5, 2)');
|
||||
$this->tpl->setCallbackFunction('numberFormat', array('Callbacks', '_numberFormatCallback'), '', true);
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:1.50', $this->tpl->get());
|
||||
|
||||
$this->tpl->setTemplate('callback:func_numberFormat(1.5, 2)');
|
||||
$GLOBALS['obj'] = new Callbacks;
|
||||
$this->tpl->setCallbackFunction('numberFormat', '_numberFormatCallback', 'obj', true);
|
||||
$res = $this->tpl->performCallback();
|
||||
if (PEAR::isError($res)) {
|
||||
$this->assertTrue(false, 'Error performing callback: '. $res->getMessage());
|
||||
}
|
||||
$this->assertEquals('callback:1.50', $this->tpl->get());
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
@ -1 +1 @@
|
||||
Included file
|
||||
Included file
|
@ -1 +1 @@
|
||||
added:{new_var}
|
||||
added:{new_var}
|
@ -1,7 +1,7 @@
|
||||
<!-- BEGIN outer_block -->
|
||||
{outer}
|
||||
<!-- BEGIN inner_block -->
|
||||
|{inner}
|
||||
<!-- END inner_block -->
|
||||
#
|
||||
<!-- BEGIN outer_block -->
|
||||
{outer}
|
||||
<!-- BEGIN inner_block -->
|
||||
|{inner}
|
||||
<!-- END inner_block -->
|
||||
#
|
||||
<!-- END outer_block -->
|
@ -1,8 +1,8 @@
|
||||
{var}
|
||||
<!-- BEGIN old_block -->
|
||||
old:{old_var}
|
||||
<!-- BEGIN old_inner_block -->
|
||||
|{old_inner_var}
|
||||
<!-- END old_inner_block -->
|
||||
#
|
||||
<!-- END old_block -->
|
||||
{var}
|
||||
<!-- BEGIN old_block -->
|
||||
old:{old_var}
|
||||
<!-- BEGIN old_inner_block -->
|
||||
|{old_inner_var}
|
||||
<!-- END old_inner_block -->
|
||||
#
|
||||
<!-- END old_block -->
|
@ -1,13 +1,13 @@
|
||||
<!-- BEGIN block_one -->
|
||||
{glob}:{var1}#
|
||||
<!-- END block_one -->
|
||||
<!-- BEGIN block_two -->
|
||||
{glob}:{var2}#
|
||||
<!-- END block_two -->
|
||||
<!-- BEGIN block_three -->
|
||||
{glob}:{var3}
|
||||
<!-- BEGIN block_four -->
|
||||
|{glob}:{var4}
|
||||
<!-- END block_four -->
|
||||
#
|
||||
<!-- END block_three -->
|
||||
<!-- BEGIN block_one -->
|
||||
{glob}:{var1}#
|
||||
<!-- END block_one -->
|
||||
<!-- BEGIN block_two -->
|
||||
{glob}:{var2}#
|
||||
<!-- END block_two -->
|
||||
<!-- BEGIN block_three -->
|
||||
{glob}:{var3}
|
||||
<!-- BEGIN block_four -->
|
||||
|{glob}:{var4}
|
||||
<!-- END block_four -->
|
||||
#
|
||||
<!-- END block_three -->
|
@ -1 +1 @@
|
||||
Master file; <!-- INCLUDE __include.html -->
|
||||
Master file; <!-- INCLUDE __include.html -->
|
@ -1 +1 @@
|
||||
A template
|
||||
A template
|
@ -1,5 +1,5 @@
|
||||
replaced:{replaced_var}
|
||||
<!-- BEGIN new_inner_block -->
|
||||
|{replaced_inner_var}
|
||||
<!-- END new_inner_block -->
|
||||
#
|
||||
replaced:{replaced_var}
|
||||
<!-- BEGIN new_inner_block -->
|
||||
|{replaced_inner_var}
|
||||
<!-- END new_inner_block -->
|
||||
#
|
6
package.sig
Normal file
6
package.sig
Normal file
@ -0,0 +1,6 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iEYEABECAAYFAlpl7wAACgkQcqMhusJF8XUPAgCgkkhDLmcbWpQvpV5aXtWXmSME
|
||||
1eAAoMuMxtygcY5OOoitupbXVn1sDGYF
|
||||
=tmsd
|
||||
-----END PGP SIGNATURE-----
|
81
package.xml
81
package.xml
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<package packagerversion="1.9.0" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
|
||||
<package packagerversion="1.10.5" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
|
||||
<name>HTML_Template_IT</name>
|
||||
<channel>pear.php.net</channel>
|
||||
<summary>Integrated Templates</summary>
|
||||
@ -10,7 +10,7 @@ There are two classes to use for templating. HTML_Template_IT is used for basic
|
||||
<name>Gregory Currie</name>
|
||||
<user>gregorycu</user>
|
||||
<email>gregorycu@php.net</email>
|
||||
<active>yes</active>
|
||||
<active>no</active>
|
||||
</lead>
|
||||
<lead>
|
||||
<name>Pierre-Alain Joye</name>
|
||||
@ -36,10 +36,10 @@ There are two classes to use for templating. HTML_Template_IT is used for basic
|
||||
<email>ulf.wendel@phpdoc.de</email>
|
||||
<active>no</active>
|
||||
</developer>
|
||||
<date>2010-03-10</date>
|
||||
<time>19:08:10</time>
|
||||
<date>2018-01-22</date>
|
||||
<time>14:02:10</time>
|
||||
<version>
|
||||
<release>1.3.0</release>
|
||||
<release>1.3.1</release>
|
||||
<api>1.3.0</api>
|
||||
</version>
|
||||
<stability>
|
||||
@ -48,49 +48,33 @@ There are two classes to use for templating. HTML_Template_IT is used for basic
|
||||
</stability>
|
||||
<license>Modified BSD license</license>
|
||||
<notes>
|
||||
Changes since last stable release (1.2.1):
|
||||
- Add support for pear package 2.0 format
|
||||
- Remove support for pear package 1.0 format
|
||||
- Fix bug #9501, doller signs disapear if preg_match is used.
|
||||
- Fix bug #9783, don't remove variable which values follow the variable pattern
|
||||
To allow backwards compatbility an option preserve_input is added.
|
||||
If it is false, the old behaviour will be used and therefore those values will be deleted.
|
||||
Default is true, so new behaviour.
|
||||
- Fix bug #9853, problems with dots in placeholders or blocknames
|
||||
- Fix bug #13935, docblock is wrong
|
||||
- Fix bug #17129
|
||||
- Add option 'preserve_input' to only remove unkown variable that were present
|
||||
during setTemplate or loadTemplatefile
|
||||
which is the behaviour before 1.3.0a1
|
||||
- Improved PHPCS (Request #15039)
|
||||
- Added unit tests
|
||||
- Fixed unit tests
|
||||
- PR #2: Fixes for deprecated code
|
||||
</notes>
|
||||
<contents>
|
||||
<dir name="/">
|
||||
<file md5sum="157f1b27090288fbce921b762697c3f4" name="examples/sample_it.php" role="doc" />
|
||||
<file md5sum="1d2363fa8640780392af6c51e9c3713f" name="examples/sample_itx_addblockfile.php" role="doc" />
|
||||
<file md5sum="43a3535aa4d5e9df400babae53d82a08" name="examples/templates/addblockfile_list.tpl.htm" role="doc" />
|
||||
<file md5sum="16f4927420fa169875167a4874e7add7" name="examples/templates/addblockfile_main.tpl.htm" role="doc" />
|
||||
<file md5sum="2c851fcec88007eef66c28a9d8f10ceb" name="examples/templates/main.tpl.htm" role="doc" />
|
||||
<file md5sum="886a6044e8186e3b1e1d8c5b004246af" name="HTML/Template/IT.php" role="php" />
|
||||
<file md5sum="16b0300b5fbe3be7a1df976ce5d27c4f" name="HTML/Template/ITX.php" role="php" />
|
||||
<file md5sum="484d2aa6a504a351a1d3e2b8bb39612d" name="HTML/Template/IT_Error.php" role="php" />
|
||||
<file md5sum="ba285cf25750a900690f2388ee31a103" name="examples/sample_it.php" role="doc" />
|
||||
<file md5sum="8da7b1692566f5f67b7070402cb949dc" name="examples/sample_itx_addblockfile.php" role="doc" />
|
||||
<file md5sum="342278cc5fe8ca6c66591cd5ee389402" name="examples/templates/addblockfile_list.tpl.htm" role="doc" />
|
||||
<file md5sum="697f694a67db6b96d247a24bdfd44f9b" name="examples/templates/addblockfile_main.tpl.htm" role="doc" />
|
||||
<file md5sum="834e1e6d40b2f34906aa17f9969bd891" name="examples/templates/main.tpl.htm" role="doc" />
|
||||
<file md5sum="ff54f9a70504c2c64f81b9d4e1897c3b" name="HTML/Template/IT.php" role="php" />
|
||||
<file md5sum="226a20af0aa45c0838863f73103b91af" name="HTML/Template/ITX.php" role="php" />
|
||||
<file md5sum="52a5e675aec5f68c4c3111a17307a860" name="HTML/Template/IT_Error.php" role="php" />
|
||||
<file md5sum="e576a94c06b323e4cfc6bcf9dda017c2" name="tests/AllTests.php" role="test" />
|
||||
<file md5sum="adabbbb8cf54dc80720b7929e594cbec" name="tests/ITTest.php" role="test" />
|
||||
<file md5sum="80139a8b443488dac801fae748b6f2c2" name="tests/ITXTest.php" role="test" />
|
||||
<file md5sum="e50de49b74a1d96bb77ddae2d0abdfc3" name="tests/templates/addblock.html" role="test" />
|
||||
<file md5sum="22e56437378e53d08ba07d3dd2aa4b85" name="tests/templates/blockiteration.html" role="test" />
|
||||
<file md5sum="4173bf97eec43787532e247ef9b2611a" name="tests/templates/blocks.html" role="test" />
|
||||
<file md5sum="a12627343ed2962dc629181dd4fa1994" name="tests/ITTest.php" role="test" />
|
||||
<file md5sum="e0d736f03900f6fc9e6132c7549a96b8" name="tests/ITXTest.php" role="test" />
|
||||
<file md5sum="bca97392b741f553d10203f04549a423" name="tests/templates/addblock.html" role="test" />
|
||||
<file md5sum="d4e1caf0b07b85e49e0e82ab83e91ed3" name="tests/templates/blockiteration.html" role="test" />
|
||||
<file md5sum="aa11dc0ba8c94c71f0ed6e448770f913" name="tests/templates/blocks.html" role="test" />
|
||||
<file md5sum="7014497a69b346957fb3d2b5fa44ffd4" name="tests/templates/bug_9853_01.tpl" role="test" />
|
||||
<file md5sum="385013ff6be875da2888087e96c6a93c" name="tests/templates/bug_9853_02.tpl" role="test" />
|
||||
<file md5sum="2611d6ec574a65716f1bc2ca95cb8c63" name="tests/templates/globals.html" role="test" />
|
||||
<file md5sum="db5b226eff0218c831749c07042529f2" name="tests/templates/include.html" role="test" />
|
||||
<file md5sum="d9a6425eebdfc6981465b4a228dbee51" name="tests/templates/loadtemplatefile.html" role="test" />
|
||||
<file md5sum="ed6cb6de29d69890c611f11ce90e1e85" name="tests/templates/globals.html" role="test" />
|
||||
<file md5sum="8ac12c5d1c85787dd44ed5c93a392dfe" name="tests/templates/include.html" role="test" />
|
||||
<file md5sum="bd4c99366021b8bd88ba220ec829eae5" name="tests/templates/loadtemplatefile.html" role="test" />
|
||||
<file md5sum="8747e8c70d20b6c86d1d19af2eadd874" name="tests/templates/placeholderreplacementscope.html" role="test" />
|
||||
<file md5sum="5c7e2e9c32306db4b6667d2b57f1c0ac" name="tests/templates/replaceblock.html" role="test" />
|
||||
<file md5sum="310552db4653b34dbb0f993847572fc5" name="tests/templates/__include.html" role="test" />
|
||||
<file md5sum="7073f9a84fa6da71e7a505a777dda302" name="LICENSE" role="doc" />
|
||||
<file md5sum="a3d70ab52bdb9f3c14702879865a55d6" name="tests/templates/replaceblock.html" role="test" />
|
||||
<file md5sum="fb1681e6ffa470d92859fac3496b960e" name="tests/templates/__include.html" role="test" />
|
||||
<file md5sum="f8790e48b597dff12a643e08e9be3fab" name="LICENSE" role="doc" />
|
||||
</dir>
|
||||
</contents>
|
||||
<dependencies>
|
||||
@ -331,5 +315,20 @@ Changes since last stable release (1.2.1):
|
||||
- Fixed unit tests
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<version>
|
||||
<release>1.3.1</release>
|
||||
<api>1.3.0</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<date>2018-01-22</date>
|
||||
<license>Modified BSD license</license>
|
||||
<notes>
|
||||
- PR #2: Fixes for deprecated code
|
||||
</notes>
|
||||
</release>
|
||||
</changelog>
|
||||
</package>
|
||||
|
Loading…
Reference in New Issue
Block a user