W3TPL/test suite: Difference between revisions
< W3TPL
Jump to navigation
Jump to search
(New page: ==LET== <xml><hide> <let name=thing1 val="stuff" /> <let name=thing2>other stuff</let> <let name=thing3>two</let> <let name=thing3 append> parts</let> <let name=thing4 copy=thing2 /> <let ...) |
(tags fixed) |
||
Line 1: | Line 1: | ||
==LET== | ==LET== | ||
===code=== | |||
(view source to see the w3tpl code) | |||
<hide> | |||
<let name=thing1 val="stuff" /> | <let name=thing1 val="stuff" /> | ||
<let name=thing2>other stuff</let> | <let name=thing2>other stuff</let> | ||
Line 13: | Line 15: | ||
<let name=thing6[3] val="three" /> | <let name=thing6[3] val="three" /> | ||
<let name=idx val=4 /> | <let name=idx val=4 /> | ||
<let name=thing6[$idx] val="four" /></hide> | <let name=thing6[$idx] val="four" /> | ||
</hide> | |||
===results=== | |||
As of this writing, the array functions have been removed and some of the following tests fail: | |||
* Test 1 - should be "stuff": '''<get name=thing1 />''' | * Test 1 - should be "stuff": '''<get name=thing1 />''' | ||
* Test 2 - should be "other stuff": '''<get name=thing2 />''' | * Test 2 - should be "other stuff": '''<get name=thing2 />''' | ||
Line 22: | Line 27: | ||
* Test 7 - should be "two": '''<get name=thing6[2] />''' | * Test 7 - should be "two": '''<get name=thing6[2] />''' | ||
* Test 8 - should be "three": '''<get name=thing6 index=3 />''' | * Test 8 - should be "three": '''<get name=thing6 index=3 />''' | ||
* Test 9 - should be "four": '''<get name=thing6[4] />''' | * Test 9 - should be "four": '''<get name=thing6[4] />''' |
Revision as of 21:10, 20 October 2019
LET
code
(view source to see the w3tpl code) <hide> <let name=thing1 val="stuff" /> <let name=thing2>other stuff</let> <let name=thing3>two</let> <let name=thing3 append> parts</let> <let name=thing4 copy=thing2 /> <let name=thing5 copy=thing2 /> <let name=thing5 append> </let> <let name=thing5 copy=thing3 append /> <let name=thing6[1] val="one" /> <let name=thing6 index=2 val="two" /> <let name=thing6[3] val="three" /> <let name=idx val=4 /> <let name=thing6[$idx] val="four" /> </hide>
results
As of this writing, the array functions have been removed and some of the following tests fail:
- Test 1 - should be "stuff": <get name=thing1 />
- Test 2 - should be "other stuff": <get name=thing2 />
- Test 3 - should be "two parts": <get name=thing3 />
- Test 4 - should be "other stuff": <get name=thing4 />
- Test 5 - should be "other stuff two parts": <get name=thing5 />
- Test 6 - should be "one": <get name=thing6[1] />
- Test 7 - should be "two": <get name=thing6[2] />
- Test 8 - should be "three": <get name=thing6 index=3 />
- Test 9 - should be "four": <get name=thing6[4] />