Compare commits
5 Commits
upstream/1
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
91b2b7af39 | ||
|
f3e9ef3687 | ||
|
6e2df481d7 | ||
|
06c3de0e8f | ||
|
76f84094d6 |
HTML_Template_IT-1.3.1
debian
package.sigpackage.xml
10
HTML_Template_IT-1.3.0/HTML/Template/IT.php → HTML_Template_IT-1.3.1/HTML/Template/IT.php
Normal file → Executable file
10
HTML_Template_IT-1.3.0/HTML/Template/IT.php → HTML_Template_IT-1.3.1/HTML/Template/IT.php
Normal file → Executable file
@ -23,7 +23,7 @@
|
||||
* @package HTML_Template_IT
|
||||
* @author Ulf Wendel <uw@netuse.de>
|
||||
* @license BSD http://www.opensource.org/licenses/bsd-license.php
|
||||
* @version CVS: $Id: IT.php 295605 2010-02-28 22:48:07Z gregorycu $
|
||||
* @version CVS: $Id$
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
@ -407,7 +407,7 @@ class HTML_Template_IT
|
||||
* @see setRoot()
|
||||
* @access public
|
||||
*/
|
||||
function HTML_Template_IT($root = '', $options = null)
|
||||
function __construct($root = '', $options = null)
|
||||
{
|
||||
if (!is_null($options)) {
|
||||
$this->setOptions($options);
|
||||
@ -1088,9 +1088,9 @@ class HTML_Template_IT
|
||||
$content = fread($fh, $fsize);
|
||||
fclose($fh);
|
||||
|
||||
return preg_replace(
|
||||
"#<!-- INCLUDE (.*) -->#ime",
|
||||
"\$this->getFile('\\1')",
|
||||
return preg_replace_callback(
|
||||
"#<!-- INCLUDE (.*) -->#im",
|
||||
function ($m) { return $this->getFile($m[1]); },
|
||||
$content
|
||||
);
|
||||
} // end func getFile
|
6
HTML_Template_IT-1.3.0/HTML/Template/ITX.php → HTML_Template_IT-1.3.1/HTML/Template/ITX.php
Normal file → Executable file
6
HTML_Template_IT-1.3.0/HTML/Template/ITX.php → HTML_Template_IT-1.3.1/HTML/Template/ITX.php
Normal file → Executable file
@ -23,7 +23,7 @@
|
||||
* @package HTML_Template_IT
|
||||
* @author Ulf Wendel <uw@netuse.de>
|
||||
* @license BSD http://www.opensource.org/licenses/bsd-license.php
|
||||
* @version CVS: $Id: ITX.php 295086 2010-02-15 06:31:36Z clockwerx $
|
||||
* @version CVS: $Id$
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
@ -136,7 +136,7 @@ class HTML_Template_ITX extends HTML_Template_IT
|
||||
* @access public
|
||||
* @see HTML_Template_IT()
|
||||
*/
|
||||
function HTML_Template_ITX($root = '')
|
||||
function __construct($root = '')
|
||||
{
|
||||
|
||||
$this->checkblocknameRegExp = '@' . $this->blocknameRegExp . '@';
|
||||
@ -144,7 +144,7 @@ class HTML_Template_ITX extends HTML_Template_IT
|
||||
$this->functionRegExp = '@' . $this->functionPrefix . '(' .
|
||||
$this->functionnameRegExp . ')\s*\(@sm';
|
||||
|
||||
$this->HTML_Template_IT($root);
|
||||
parent::__construct($root);
|
||||
} // end func constructor
|
||||
|
||||
/**
|
@ -23,7 +23,7 @@
|
||||
* @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 $
|
||||
* @version CVS: $Id$
|
||||
* @link http://pear.php.net/packages/HTML_Template_IT
|
||||
* @access public
|
||||
*/
|
||||
@ -56,7 +56,7 @@ class IT_Error extends PEAR_Error
|
||||
* @param string $file file where the error occured
|
||||
* @param string $line linenumber where the error occured
|
||||
*/
|
||||
function IT_Error($msg, $file = __FILE__, $line = __LINE__)
|
||||
function __construct($msg, $file = __FILE__, $line = __LINE__)
|
||||
{
|
||||
$this->PEAR_Error(sprintf("%s [%s on line %d].", $msg, $file, $line));
|
||||
} // end func IT_Error
|
6
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
6
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
@ -3,9 +3,13 @@
|
||||
/**
|
||||
* An example for the usage of ITX::addBlockfile
|
||||
*
|
||||
* @version CVS: $Id: sample_itx_addblockfile.php 216180 2006-07-11 21:56:05Z dsp $
|
||||
* @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',
|
@ -11,12 +11,12 @@ function _uppercaseCallback($ary)
|
||||
|
||||
class Callbacks
|
||||
{
|
||||
function _lowercaseCallback($ary)
|
||||
static function _lowercaseCallback($ary)
|
||||
{
|
||||
return strtolower($ary[0]);
|
||||
}
|
||||
|
||||
function _numberFormatCallback($float, $decimals)
|
||||
static function _numberFormatCallback($float, $decimals)
|
||||
{
|
||||
return number_format($float, $decimals);
|
||||
}
|
0
HTML_Template_IT-1.3.0/tests/templates/placeholderreplacementscope.html → HTML_Template_IT-1.3.1/tests/templates/placeholderreplacementscope.html
Normal file → Executable file
0
HTML_Template_IT-1.3.0/tests/templates/placeholderreplacementscope.html → HTML_Template_IT-1.3.1/tests/templates/placeholderreplacementscope.html
Normal file → Executable file
111
debian/changelog
vendored
Normal file
111
debian/changelog
vendored
Normal file
@ -0,0 +1,111 @@
|
||||
php-html-template-it (1:1.3.1-1) UNRELEASED; urgency=medium
|
||||
|
||||
* Bump
|
||||
|
||||
-- Mario Fetka <mario.fetka@gmail.com> Thu, 08 Mar 2018 14:34:32 +0100
|
||||
|
||||
php-html-template-it (1:1.3.0-3) unstable; urgency=medium
|
||||
|
||||
* Use ${phppear:Debian-Depends/Recommends/Breaks}
|
||||
* Use ${phppear:summary} and ${phppear:description}
|
||||
* Bump Standard-Version to 3.9.5
|
||||
* Build-depends on pkg-php-tools >= 1.10 to remove the tests.
|
||||
Thanks to Andreas Beckmann
|
||||
|
||||
-- Prach Pongpanich <prachpub@gmail.com> Mon, 03 Feb 2014 23:37:45 +0700
|
||||
|
||||
php-html-template-it (1:1.3.0-2) unstable; urgency=low
|
||||
|
||||
* Upload to unstable
|
||||
* Now running unit tests at build time:
|
||||
- Build-Depends php-unit (>= 3.6)
|
||||
|
||||
-- Prach Pongpanich <prachpub@gmail.com> Tue, 30 Apr 2013 14:57:12 +0700
|
||||
|
||||
php-html-template-it (1:1.3.0-1) experimental; urgency=low
|
||||
|
||||
* New upstream release
|
||||
* Now using PKG-PHP-PEAR team as maintainer and
|
||||
add myself as uploader (Closes: #682303)
|
||||
* Switch to pkg-php-tools and dh-sequencer
|
||||
- Add pkg-php-tools to Build-Depends and drop {dh-make-php,cdbs}
|
||||
- Add php-pear to Build-Depends-Indep
|
||||
- Rewrite debian/rules
|
||||
* Switch to 3.0 (quilt) source format
|
||||
* Update copyright file to version 1.0 format
|
||||
* Add Vcs-* fields in debian/control
|
||||
* Add debian/gbp.conf
|
||||
* Update debian/watch file
|
||||
* Bump debhelper compat to level 9
|
||||
* Bump Standards-Version 3.9.4
|
||||
|
||||
-- Prach Pongpanich <prachpub@gmail.com> Fri, 22 Mar 2013 16:59:52 +0700
|
||||
|
||||
php-html-template-it (1:1.2.1-3) unstable; urgency=low
|
||||
|
||||
* New maintainer (Closes: #529674)
|
||||
* Removed changes made to source code (Closes: #529584)
|
||||
* debian/control:
|
||||
- Updated description (Closes: #488767)
|
||||
- Removed uploader at his request
|
||||
- Changed Section to php to fix the override disparities
|
||||
- Updated Standards-Version: 3.8.3
|
||||
- Added cdbs and dh-make-php to Build-Depends
|
||||
- Added ${misc:Depends} to Depends
|
||||
* debian/copyright: added copyright note for the different maintainers
|
||||
* debian/rules:
|
||||
- Modifications to use cdbs
|
||||
- Added code to remove empty directories
|
||||
|
||||
-- Federico Gimenez Nieto <fgimenez@coit.es> Tue, 25 Aug 2009 12:25:12 +0200
|
||||
|
||||
php-html-template-it (1:1.2.1-2) unstable; urgency=low
|
||||
|
||||
* Display pages that have no variable replacements in them, thanks to
|
||||
Jeff Bailey <jbailey@raspberryginger.com> (closes: #320959)
|
||||
* Updated copyright with new upstream author. (closes: #454773)
|
||||
* Standards-Version: 3.7.3
|
||||
* Updated "Homepage:" pseudo-header as Reference 1.14.6.
|
||||
* Solved binary-arch-rules-but-pkg-is-arch-indep lintian report.
|
||||
|
||||
-- Jose Carlos Medeiros <debian@psabs.com.br> Fri, 14 Dec 2007 19:49:53 -0200
|
||||
|
||||
php-html-template-it (1:1.2.1-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
* New mantainer. (Closes: #442048)
|
||||
* Package reconstructed based on php-services-weather, rules file was
|
||||
reconstructed too. (Closes: #395733)
|
||||
* debian/control:
|
||||
- Standards-Version: 3.7.2
|
||||
- Build-Depends: debhelper (>= 5)
|
||||
- Added Homepage.
|
||||
- Updated php dependencies to complain with php4-removal. (Closes: #424817)
|
||||
* debian/compat: DH_COMPAT 5
|
||||
* Updated copyright file to new license BSD. (Closes: #332610)
|
||||
* debian/watch: created.
|
||||
* debian/examples: created.
|
||||
|
||||
-- Jose Carlos Medeiros <debian@psabs.com.br> Fri, 21 Sep 2007 23:57:52 -0300
|
||||
|
||||
php-html-template-it (1.10-3) unstable; urgency=low
|
||||
|
||||
* Change the PEAR_ROOT to new debian location /usr/share/php according to
|
||||
the new specification of pear.
|
||||
*
|
||||
|
||||
-- Polkan Alexis Garcia <pagarcia@slcolombia.org> Tue, 15 Mar 2005 15:38:22 -0500
|
||||
|
||||
php-html-template-it (1.10-2) unstable; urgency=low
|
||||
|
||||
* Remove libraries in the PEAR_ROOT/HTML (duplicated) and only remain
|
||||
the existing ones in PEAR_ROOT/HTML/Template (closes: #298986)
|
||||
|
||||
-- Polkan Alexis Garcia <pagarcia@slcolombia.org> Tue, 15 Mar 2005 12:05:41 -0500
|
||||
|
||||
php-html-template-it (1.10-1) unstable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
-- Polkan Alexis Garcia <pagarcia@slcolombia.org> Wed, 6 Oct 2004 12:31:40 -0500
|
||||
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
9
|
18
debian/control
vendored
Normal file
18
debian/control
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
Source: php-html-template-it
|
||||
Section: php
|
||||
Priority: optional
|
||||
Maintainer: Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org>
|
||||
Uploaders: Prach Pongpanich <prachpub@gmail.com>
|
||||
Build-Depends: debhelper (>= 9), pkg-php-tools (>= 1.10), phpunit (>= 3.6)
|
||||
Standards-Version: 3.9.5
|
||||
Vcs-Git: git://anonscm.debian.org/pkg-php/php-html-template-it.git
|
||||
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-php/php-html-template-it.git
|
||||
Homepage: http://pear.php.net/package/HTML_Template_IT/
|
||||
|
||||
Package: php-html-template-it
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${phppear:Debian-Depends}
|
||||
Recommends: ${phppear:Debian-Recommends}
|
||||
Breaks: ${phppear:Debian-Breaks}
|
||||
Description: ${phppear:summary}
|
||||
${phppear:description}
|
41
debian/copyright
vendored
Normal file
41
debian/copyright
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Contact: David Soria Parra <dsp at php dot net>,
|
||||
Pierre-Alain Joye <pajoye@php.net>,
|
||||
Ulf Wendel <ulf.wendel@phpdoc.de>
|
||||
Source: http://pear.php.net/package/HTML_Template_IT
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2004-2005, Polkan Alexis Garcia <pagarcia@slcolombia.org>
|
||||
2007, Jose Carlos N Medeiros <jose@psabs.com.br>
|
||||
2009, Federico Gimenez Nieto <fgimenez@coit.es>
|
||||
2013, Prach Pongpanich <prachpub@gmail.com>
|
||||
License: BSD-3-clause
|
||||
|
||||
Files: *
|
||||
Copyright: 1997-2007, David Soria Parra <dsp at php dot net>
|
||||
1997-2007, Pierre-Alain Joye <pajoye@php.net>
|
||||
1997-2007, Ulf Wendel <ulf.wendel@phpdoc.de>
|
||||
License: BSD-3-clause
|
||||
|
||||
License: BSD-3-clause
|
||||
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, this 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 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
11
debian/rules
vendored
Executable file
11
debian/rules
vendored
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh $@ --buildsystem=phppear --with phppear
|
||||
|
||||
override_dh_auto_test:
|
||||
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
||||
set -e ;\
|
||||
PKGDIR=$(shell ls | grep HTML) ;\
|
||||
phpunit -d include_path="/usr/share/php:$${PKGDIR}" */tests
|
||||
endif
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
2
debian/watch
vendored
Normal file
2
debian/watch
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
version=3
|
||||
http://pear.php.net/package/HTML_Template_IT/download .*/HTML_Template_IT-(\d.*)\.(?:tgz|tar\.(?:gz|bz2|xz))
|
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…
x
Reference in New Issue
Block a user