../
|
extends/
|
cf3972 |
seldaek |
18 Oct 2009
|
Fixed an {extends} parsing bug that prevented the use of single-quotes around the parent template's filename fixes #39
git-svn-id: svn://dwoo.org/dwoo/trunk@301 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
plugins/
|
9315dc |
seldaek |
28 Feb 2010
|
+ Moved Dwoo code to Dwoo_Core that is extended by Dwoo, so you can use the Dwoo directory as an svn:externals without problems now and just use Dwoo_Core in place of Dwoo in your code
git-svn-id: http://svn.dwoo.org/trunk@343 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
subfolder/
|
57022c |
Seldaek |
11 Jul 2008
|
* Include allows paths going in upper levels now such as : "../foo.html"
git-svn-id: svn://dwoo.org/dwoo/trunk@123 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
subfolder2/
|
5fc482 |
Seldaek |
9 Jul 2008
|
+ Syntax: Block plugins that you want to call without content can be self-closed just like XML tags (e.g. {a "http://url.com" /} ) + Plugins: Added the {a} block plugin to generate <a> tags + API: Added Dwoo_Plugin::paramsToAttributes() utility function to help with the creation of compilable xml/html-related plugins * Syntax: Math expressions in strings are now only allowed when the entire expression is delimited, e.g. {"/$foo/$bar"} evaluates as just that while {"/`$foo/$bar`"} will result in "/".($foo/$bar), therefore processing the / as a division, this is better since URLs using / are far more common than math in strings => http://forum.dwoo.org/viewtopic.php?id=50 * Fixed a bug preventing if blocks containing a {elseif} followed by {else}
git-svn-id: svn://dwoo.org/dwoo/trunk@121 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
inctest.html
|
e25e18 |
Seldaek |
30 Mar 2008
|
+ Syntax: Added support for method calls on objects i.e. {$foo->bar()} + Added support for smarty security features, see the DwooSecurityPolicy class and $dwoo->setSecurityPolicy() + API: Added a DwooCompiler->setLooseOpeningHandling() method that, if set to true, allows tags to * Fixed {elseif} bug that appeared when multiple elseif tags were used in a row * Syntax: Improved simple math support to work within variable variables (i.e. you can do {$array[$index+1]}) and within strings as well. To prevent this enclose the variables in backticks (i.e. {"$foo/$bar"} will do the math while {"`$foo`/$bar"} won't as $foo is properly delimited)
git-svn-id: svn://dwoo.org/dwoo/trunk@4 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
test.html
|
e31da1 |
Seldaek |
30 Mar 2008
|
First Import / 0.3.3
git-svn-id: svn://dwoo.org/dwoo/trunk@2 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
extend1.html
|
6c4451 |
Seldaek |
1 Jul 2008
|
+ Syntax: Added the ";" token that allows to group multiple instructions in one single template tag, for example: {if $foo; "> $foo";$bar;/} is equal to: {if $foo}> {$foo}{$bar}{/} - It is not that useful with {/} as delimiters but might come in handy to those using longer delimiters * Compiler now allows the use of the right delimiter inside strings (i.e. {"}"})
git-svn-id: svn://dwoo.org/dwoo/trunk@118 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
templateUsage.html
|
ef0858 |
Seldaek |
8 Jul 2009
|
Fixes sub-templates issues when running through the same template/loading subtemplates multiple times
git-svn-id: svn://dwoo.org/dwoo/trunk@270 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
toplevel.html
|
c6133a |
Seldaek |
27 Jun 2008
|
git-svn-id: svn://dwoo.org/dwoo/trunk@100 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
extend2.html
|
6c4451 |
Seldaek |
1 Jul 2008
|
+ Syntax: Added the ";" token that allows to group multiple instructions in one single template tag, for example: {if $foo; "> $foo";$bar;/} is equal to: {if $foo}> {$foo}{$bar}{/} - It is not that useful with {/} as delimiters but might come in handy to those using longer delimiters * Compiler now allows the use of the right delimiter inside strings (i.e. {"}"})
git-svn-id: svn://dwoo.org/dwoo/trunk@118 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
returnTest.html
|
b8ab7d |
seldaek |
9 Mar 2010
|
Forgotten test resource
git-svn-id: http://svn.dwoo.org/trunk@347 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
templates.html
|
ef0858 |
Seldaek |
8 Jul 2009
|
Fixes sub-templates issues when running through the same template/loading subtemplates multiple times
git-svn-id: svn://dwoo.org/dwoo/trunk@270 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|
smartytest.html
|
6dd36b |
seldaek |
22 Oct 2008
|
+ SmartyCompat: Added a {section} plugin but I strongly discourage using it, it was really made to support legacy templates
git-svn-id: svn://dwoo.org/dwoo/trunk@204 0598d79b-80c4-4d41-97ba-ac86fbbd088b
|