- 11 Jul, 2008 1 commit
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@122 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 09 Jul, 2008 1 commit
-
-
Seldaek authored
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
-
- 03 Jul, 2008 1 commit
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@120 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 02 Jul, 2008 2 commits
-
-
svn://dwoo.org/dwoo/trunk@119Seldaek authored
-
Seldaek authored
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
-
- 01 Jul, 2008 1 commit
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@116 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 28 Jun, 2008 8 commits
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@108 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
svn://dwoo.org/dwoo/trunk@107Seldaek authored
-
svn://dwoo.org/dwoo/trunk@106Seldaek authored
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@105 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@104 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
svn://dwoo.org/dwoo/trunk@103Seldaek authored
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@102 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
* Updated compiled version git-svn-id: svn://dwoo.org/dwoo/trunk@101 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 27 Jun, 2008 1 commit
-
-
svn://dwoo.org/dwoo/trunk@100Seldaek authored
-
- 19 Jun, 2008 2 commits
-
-
svn://dwoo.org/dwoo/trunk@99Seldaek authored
-
Seldaek authored
doing $data->var = $val; instead of $data->assign('var', $val); + Added get()/unassign()/isAssigned() methods to read, remove and check for the presence of a var inside a Dwoo_Data object git-svn-id: svn://dwoo.org/dwoo/trunk@98 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 17 Jun, 2008 1 commit
-
-
Seldaek authored
* Made the dependency on hash ext optional, although using it offers better perfs with Template_String git-svn-id: svn://dwoo.org/dwoo/trunk@97 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 13 Jun, 2008 5 commits
-
-
svn://dwoo.org/dwoo/trunk@96Seldaek authored
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@95 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
svn://dwoo.org/dwoo/trunk@94Seldaek authored
-
Seldaek authored
* Fixed compiler handling of <?php echo "foo" ?>{template_tag} where there was no ';' at the end of the php tag git-svn-id: svn://dwoo.org/dwoo/trunk@93 0598d79b-80c4-4d41-97ba-ac86fbbd088b -
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@92 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 11 Jun, 2008 1 commit
-
-
svn://dwoo.org/dwoo/trunk@91Seldaek authored
-
- 09 Jun, 2008 2 commits
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@90 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@89 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 07 Jun, 2008 2 commits
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@88 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@87 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 06 Jun, 2008 1 commit
-
-
Seldaek authored
* Removed checks for methods/properties being present on objects before calling them since these can be handled by __get() and __call() => http://forum.dwoo.org/viewtopic.php?id=22 * Calling {func (params)} (with the space between function and params) is now allowed => http://forum.dwoo.org/viewtopic.php?id=21 git-svn-id: svn://dwoo.org/dwoo/trunk@86 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 03 Jun, 2008 2 commits
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@85 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
+ Plugins: Added {tif} that acts as a ternary if / allows you to use a ternary operator inside it * The compiler now allows \r, \n and \t to be parameter splitters as well as "," and " ". You can therefore make complex function calls on multiple lines git-svn-id: svn://dwoo.org/dwoo/trunk@84 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
- 02 Jun, 2008 2 commits
-
-
svn://dwoo.org/dwoo/trunk@83Seldaek authored
-
svn://dwoo.org/dwoo/trunk@82Seldaek authored
-
- 31 May, 2008 3 commits
-
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@81 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
svn://dwoo.org/dwoo/trunk@80Seldaek authored
-
svn://dwoo.org/dwoo/trunk@79Seldaek authored
-
- 30 May, 2008 4 commits
-
-
svn://dwoo.org/dwoo/trunk@77Seldaek authored
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@76 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@75 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-
Seldaek authored
git-svn-id: svn://dwoo.org/dwoo/trunk@74 0598d79b-80c4-4d41-97ba-ac86fbbd088b
-