Wiki-Quellcode von Sandbox Test Page 1

Zuletzt geändert von Burkard Hagspiel am 2025-01-26

Verstecke letzte Bearbeiter
Burkard Hagspiel 1.1 1 Klicken Sie auf **"Bearbeiten"**, um diese Seite zu editieren. Wenn Sie fertig mit dem Bearbeiten sind, klicken Sie **"Speichern & Ansehen"**, um sich die Ergebnisse anzusehen!
2
3 = Hier ist ein wenig Fülltext, damit Sie sich vorstellen können, wie eine Seite aussieht =
4
5 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
6
7 {{velocity}}
8 $xwiki.getSpaces().contains('Messwesen')
9
10 ## First, get the object
11 #set($Uobject = $doc.getObject('Glossar.WebHome'))
12 ## The parameter is the name of the class of the object you want to have
13 ## (a document can hold multiple objects of different classes)
14 ## The class name is the Document name where the class is defined
15
16 ## Display a parameter:
17 #set($UVorname = $Uobject.get('abbreviation'))
18 ## the parameter is the name of the field you want to display
19 ## if you are in "edit" mode, an HTML field will be displayed instead of the object value.
20
21 ## Display value:
22 ##set($UVorname = "Burkard")
23 $UVorname
24 $Uobject
25
26 abbreviation,shortcut,technical-term,doc.creationDate,_actions
27 {{/velocity}}