Commit dc37bfb6 by Seldaek

git-svn-id: svn://dwoo.org/dwoo/trunk@168 0598d79b-80c4-4d41-97ba-ac86fbbd088b

parent b34df6af
[2008-09-] 1.0.0beta [2008-09-08] 1.0.0beta
! Important note : Dwoo.php should not be included directly anymore, please ! Important note : Dwoo.php should not be included directly anymore, please
read the UPGRADE_NOTES file for more infos on the matter, if you don't read the UPGRADE_NOTES file for more infos on the matter, if you don't
your Dwoo install will most likely break after the update anyway your Dwoo install will most likely break after the update anyway
......
...@@ -50,7 +50,7 @@ class Dwoo ...@@ -50,7 +50,7 @@ class Dwoo
* *
* @var string * @var string
*/ */
const VERSION = "0.9.3"; const VERSION = "1.0.0beta";
/** /**
* unique number of this dwoo release * unique number of this dwoo release
...@@ -59,7 +59,7 @@ class Dwoo ...@@ -59,7 +59,7 @@ class Dwoo
* has been compiled before this release or not, so that old templates are * has been compiled before this release or not, so that old templates are
* recompiled automatically when Dwoo is updated * recompiled automatically when Dwoo is updated
*/ */
const RELEASE_TAG = 12; const RELEASE_TAG = 13;
/**#@+ /**#@+
* constants that represents all plugin types * constants that represents all plugin types
......
...@@ -81,9 +81,6 @@ class DwooRenderer extends AgaviRenderer implements AgaviIReusableRenderer ...@@ -81,9 +81,6 @@ class DwooRenderer extends AgaviRenderer implements AgaviIReusableRenderer
* Pre-serialization callback. * Pre-serialization callback.
* *
* Excludes the Dwoo instance to prevent excessive serialization load. * Excludes the Dwoo instance to prevent excessive serialization load.
*
* @author David Zülke <dz@bitxtender.com>
* @since 0.11.0
*/ */
public function __sleep() public function __sleep()
{ {
...@@ -96,9 +93,6 @@ class DwooRenderer extends AgaviRenderer implements AgaviIReusableRenderer ...@@ -96,9 +93,6 @@ class DwooRenderer extends AgaviRenderer implements AgaviIReusableRenderer
* Grab a cleaned up dwoo instance. * Grab a cleaned up dwoo instance.
* *
* @return Dwoo A Dwoo instance. * @return Dwoo A Dwoo instance.
*
* @author David Zülke <dz@bitxtender.com>
* @since 0.9.0
*/ */
protected function getEngine() protected function getEngine()
{ {
...@@ -142,9 +136,6 @@ class DwooRenderer extends AgaviRenderer implements AgaviIReusableRenderer ...@@ -142,9 +136,6 @@ class DwooRenderer extends AgaviRenderer implements AgaviIReusableRenderer
* @param array Associative array of additional assigns. * @param array Associative array of additional assigns.
* *
* @return string A rendered result. * @return string A rendered result.
*
* @author David Zülke <dz@bitxtender.com>
* @since 0.11.0
*/ */
public function render(AgaviTemplateLayer $layer, array &$attributes = array(), array &$slots = array(), array &$moreAssigns = array()) public function render(AgaviTemplateLayer $layer, array &$attributes = array(), array &$slots = array(), array &$moreAssigns = array())
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment