mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
get ready for 2.6.0-RC1 release
This commit is contained in:
3
NEWS
3
NEWS
@@ -1,3 +1,6 @@
|
|||||||
|
Version 2.6.0-RC1 (August 11, 2003)
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
- fixed status-header for cache_modified_check under cgi-sapi (messju)
|
- fixed status-header for cache_modified_check under cgi-sapi (messju)
|
||||||
- added optional parameter $cache_attrs to register_function() and
|
- added optional parameter $cache_attrs to register_function() and
|
||||||
register_block(). $cache_attrs is an array containing attribute-
|
register_block(). $cache_attrs is an array containing attribute-
|
||||||
|
@@ -4767,14 +4767,14 @@ OUTPUT:
|
|||||||
<entry>string</entry>
|
<entry>string</entry>
|
||||||
<entry>No</entry>
|
<entry>No</entry>
|
||||||
<entry><emphasis>right</emphasis></entry>
|
<entry><emphasis>right</emphasis></entry>
|
||||||
<entry>direction of one row to be rendered. possible values: <emphasis>left</emphasis>/<emphasis>right</emphasis>
|
<entry>direction of one row to be rendered. possible values: <emphasis>left</emphasis>/<emphasis>right</emphasis></entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>vdir</entry>
|
<entry>vdir</entry>
|
||||||
<entry>string</entry>
|
<entry>string</entry>
|
||||||
<entry>No</entry>
|
<entry>No</entry>
|
||||||
<entry><emphasis>down</emphasis></entry>
|
<entry><emphasis>down</emphasis></entry>
|
||||||
<entry>direction of the columns to be rendered. possible values: <emphasis>up</emphasis>/<emphasis>down</emphasis>
|
<entry>direction of the columns to be rendered. possible values: <emphasis>up</emphasis>/<emphasis>down</emphasis></entry>
|
||||||
</row>
|
</row>
|
||||||
</tbody>
|
</tbody>
|
||||||
</tgroup>
|
</tgroup>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
||||||
<!ENTITY docbook.dsl SYSTEM "/usr/share/sgml/docbook/html/docbook.dsl" CDATA DSSSL>
|
<!ENTITY docbook.dsl SYSTEM "/usr/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl" CDATA DSSSL>
|
||||||
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
||||||
<!ENTITY common.dsl SYSTEM "common.dsl">
|
<!ENTITY common.dsl SYSTEM "common.dsl">
|
||||||
]>
|
]>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
||||||
<!ENTITY docbook.dsl SYSTEM "/usr/share/sgml/docbook/html/docbook.dsl" CDATA DSSSL>
|
<!ENTITY docbook.dsl SYSTEM "/usr/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl" CDATA DSSSL>
|
||||||
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
||||||
<!ENTITY common.dsl SYSTEM "common.dsl">
|
<!ENTITY common.dsl SYSTEM "common.dsl">
|
||||||
]>
|
]>
|
||||||
|
@@ -20,17 +20,11 @@
|
|||||||
* You may contact the author of Config_File by e-mail at:
|
* You may contact the author of Config_File by e-mail at:
|
||||||
* {@link andrei@php.net}
|
* {@link andrei@php.net}
|
||||||
*
|
*
|
||||||
* Or, write to:
|
|
||||||
* Andrei Zmievski
|
|
||||||
* Software Engineer, ispi
|
|
||||||
* 237 S. 70th suite 220
|
|
||||||
* Lincoln, NE 68510
|
|
||||||
*
|
|
||||||
* The latest version of Config_File can be obtained from:
|
* The latest version of Config_File can be obtained from:
|
||||||
* http://smarty.php.net/
|
* http://smarty.php.net/
|
||||||
*
|
*
|
||||||
* @link http://smarty.php.net/
|
* @link http://smarty.php.net/
|
||||||
* @version 2.5.0
|
* @version 2.6.0-RC1-cvs
|
||||||
* @copyright Copyright: 2001-2003 ispi of Lincoln, Inc.
|
* @copyright Copyright: 2001-2003 ispi of Lincoln, Inc.
|
||||||
* @author Andrei Zmievski <andrei@php.net>
|
* @author Andrei Zmievski <andrei@php.net>
|
||||||
* @access public
|
* @access public
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
* @author Monte Ohrt <monte@ispi.net>
|
* @author Monte Ohrt <monte@ispi.net>
|
||||||
* @author Andrei Zmievski <andrei@php.net>
|
* @author Andrei Zmievski <andrei@php.net>
|
||||||
* @package Smarty
|
* @package Smarty
|
||||||
* @version 2.5.0-cvs
|
* @version 2.6.0-RC1-cvs
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
@@ -490,7 +490,7 @@ class Smarty
|
|||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
var $_version = '2.5.0-cvs';
|
var $_version = '2.6.0-RC1-cvs';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* current template inclusion depth
|
* current template inclusion depth
|
||||||
|
@@ -34,7 +34,7 @@
|
|||||||
* @link http://smarty.php.net/
|
* @link http://smarty.php.net/
|
||||||
* @author Monte Ohrt <monte@ispi.net>
|
* @author Monte Ohrt <monte@ispi.net>
|
||||||
* @author Andrei Zmievski <andrei@php.net>
|
* @author Andrei Zmievski <andrei@php.net>
|
||||||
* @version 2.5.0
|
* @version 2.6.0-RC1-cvs
|
||||||
* @copyright 2001-2003 ispi of Lincoln, Inc.
|
* @copyright 2001-2003 ispi of Lincoln, Inc.
|
||||||
* @package Smarty
|
* @package Smarty
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user