cvs: smarty / NEWS /docs designers.sgml html.dsl php.dsl /libs Config_File.class.php Smarty.class.php Smarty_Compiler.class.php
"Monte Ohrt" <[email protected]>
| Newsgroups | gmane.comp.php.cvs.smarty |
|---|---|
| Message-ID | <cvsmohrt1060617340@cvsserver> |
mohrt Mon Aug 11 11:55:40 2003 EDT
Modified files:
/smarty NEWS
/smarty/docs designers.sgml html.dsl php.dsl
/smarty/libs Config_File.class.php Smarty.class.php
Smarty_Compiler.class.php
Log:
get ready for 2.6.0-RC1 release
Index: smarty/NEWS
diff -u smarty/NEWS:1.387 smarty/NEWS:1.388
--- smarty/NEWS:1.387 Sun Aug 10 17:27:51 2003
+++ smarty/NEWS Mon Aug 11 11:55:39 2003
@@ -1,3 +1,6 @@
+Version 2.6.0-RC1 (August 11, 2003)
+-----------------------------------
+
- fixed status-header for cache_modified_check under cgi-sapi (messju)
- added optional parameter $cache_attrs to register_function() and
register_block(). $cache_attrs is an array containing attribute-
Index: smarty/docs/designers.sgml
diff -u smarty/docs/designers.sgml:1.76 smarty/docs/designers.sgml:1.77
--- smarty/docs/designers.sgml:1.76 Thu Aug 7 17:51:37 2003
+++ smarty/docs/designers.sgml Mon Aug 11 11:55:39 2003
@@ -4767,14 +4767,14 @@
<entry>string</entry>
<entry>No</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>
<entry>vdir</entry>
<entry>string</entry>
<entry>No</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>
</tbody>
</tgroup>
Index: smarty/docs/html.dsl
diff -u smarty/docs/html.dsl:1.3 smarty/docs/html.dsl:1.4
--- smarty/docs/html.dsl:1.3 Sun Feb 2 13:10:39 2003
+++ smarty/docs/html.dsl Mon Aug 11 11:55:39 2003
@@ -1,5 +1,5 @@
<!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 common.dsl SYSTEM "common.dsl">
]>
Index: smarty/docs/php.dsl
diff -u smarty/docs/php.dsl:1.1 smarty/docs/php.dsl:1.2
--- smarty/docs/php.dsl:1.1 Sun Feb 2 13:10:39 2003
+++ smarty/docs/php.dsl Mon Aug 11 11:55:39 2003
@@ -1,5 +1,5 @@
<!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 common.dsl SYSTEM "common.dsl">
]>
Index: smarty/libs/Config_File.class.php
diff -u smarty/libs/Config_File.class.php:1.51 smarty/libs/Config_File.class.php:1.52
--- smarty/libs/Config_File.class.php:1.51 Tue Aug 5 18:48:05 2003
+++ smarty/libs/Config_File.class.php Mon Aug 11 11:55:39 2003
@@ -20,24 +20,18 @@
* You may contact the author of Config_File by e-mail at:
* {@link [email protected]}
*
- * 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:
* 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.
* @author Andrei Zmievski <[email protected]>
* @access public
* @package Smarty
*/
-/* $Id: Config_File.class.php,v 1.51 2003/08/05 22:48:05 messju Exp $ */
+/* $Id: Config_File.class.php,v 1.52 2003/08/11 15:55:39 mohrt Exp $ */
/**
* Config file reading class
* @package Smarty
Index: smarty/libs/Smarty.class.php
diff -u smarty/libs/Smarty.class.php:1.435 smarty/libs/Smarty.class.php:1.436
--- smarty/libs/Smarty.class.php:1.435 Sun Aug 10 17:27:51 2003
+++ smarty/libs/Smarty.class.php Mon Aug 11 11:55:39 2003
@@ -40,10 +40,10 @@
* @author Monte Ohrt <[email protected]>
* @author Andrei Zmievski <[email protected]>
* @package Smarty
- * @version 2.5.0-cvs
+ * @version 2.6.0-RC1-cvs
*/
-/* $Id: Smarty.class.php,v 1.435 2003/08/10 21:27:51 messju Exp $ */
+/* $Id: Smarty.class.php,v 1.436 2003/08/11 15:55:39 mohrt Exp $ */
/**
* DIR_SEP isn't used anymore, but third party apps might
@@ -490,7 +490,7 @@
*
* @var string
*/
- var $_version = '2.5.0-cvs';
+ var $_version = '2.6.0-RC1-cvs';
/**
* current template inclusion depth
Index: smarty/libs/Smarty_Compiler.class.php
diff -u smarty/libs/Smarty_Compiler.class.php:1.274 smarty/libs/Smarty_Compiler.class.php:1.275
--- smarty/libs/Smarty_Compiler.class.php:1.274 Fri Aug 8 16:25:27 2003
+++ smarty/libs/Smarty_Compiler.class.php Mon Aug 11 11:55:39 2003
@@ -34,12 +34,12 @@
* @link http://smarty.php.net/
* @author Monte Ohrt <[email protected]>
* @author Andrei Zmievski <[email protected]>
- * @version 2.5.0
+ * @version 2.6.0-RC1-cvs
* @copyright 2001-2003 ispi of Lincoln, Inc.
* @package Smarty
*/
-/* $Id: Smarty_Compiler.class.php,v 1.274 2003/08/08 20:25:27 messju Exp $ */
+/* $Id: Smarty_Compiler.class.php,v 1.275 2003/08/11 15:55:39 mohrt Exp $ */
/**
* Template compiling class
--
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php