Исходный код вики test
Версия 70.3 от Jip-jan Alunkel на августа 19, 20:09
Последние авторы
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | {{html wiki="true"}} | ||
3 | ##set($obj = $doc.getObject('test.WebHome')) | ||
4 | ##set($class = $obj.xWikiClass) ## access the class object representing SomeSpace.SomeClass | ||
5 | $doc.display("blaat") | ||
6 | |||
7 | #set ($doc=$xwiki.getDocument("cases.ear.ears fell off while biking")) | ||
8 | #set ($xobject = $doc.getObject('cases.Code.casesClass')) | ||
9 | #set ($xclass = $xobject.xWikiClass) | ||
10 | #foreach ($property in $xclass.properties) | ||
11 | $xobject.getProperty($property.name).value | ||
12 | ## $property.name | ||
13 | #end | ||
14 | $stringtool.capitalize( "fred from jupiter" ) | ||
15 | #* | ||
16 | #set ($xdoc=$xwiki.getDocument($Formulier)) | ||
17 | #set ($xobject = $xdoc.getObject('Main.Werkwijze.Formulieren.Code.FormulierenClass')) | ||
18 | #set ($xclass = $xobject.xWikiClass) | ||
19 | #foreach ($property in $xclass.properties) | ||
20 | $property.Name | ||
21 | $property.value | ||
22 | #end | ||
23 | |||
24 | #set ($xclass = $xobject.xWikiClass) | ||
25 | #foreach ($property in $xclass.properties) | ||
26 | $property.Name | ||
27 | $property.value | ||
28 | #end | ||
29 | *# | ||
30 | |||
31 | $xwiki.getURL('.') | ||
32 | {{/html}} | ||
33 | |||
34 | $doc.display("blaat") | ||
35 | {{/velocity}} |