typo3 fluid namespaces

revision 289f8251dd55eb825374f78017a3c5b37d27fde2

raw

1 partial.xml

1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0"?>
<html xmlns:f="TYPO3FluidViewHelpers" xmlns:at="http://typo3.org/ns/foo/bar/ViewHelper">
 <f:comment>
  parameters:
  - "datum": datum object with "value" property
  - "key": array key, e.g. "foo.bar"
 </f:comment>
 <f:if condition="{datum}">
  <li><at:textdb key="{key}"/></li>
 </f:if>
</html>
raw

2 output.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
...
 
<ul>
 
<?xml version="1.0"?>
<html xmlns:f="TYPO3FluidViewHelpers" xmlns:at="http://typo3.org/ns/foo/bar/ViewHelper">
 <li>Foo</li>
</html>
 
<?xml version="1.0"?>
<html xmlns:f="TYPO3FluidViewHelpers" xmlns:at="http://typo3.org/ns/foo/bar/ViewHelper">
 <li>Bar</li>
</html>
 
 
</ul>
 
...

History