Wiki source code of Sandbox

Version 18.1 by Drunk Monkey on 2022-11-01 08:19

Hide last authors
Drunk Monkey 2.1 1 = Quagmyre =
2
3 Quagmyre
4
Drunk Monkey 9.1 5 External Link ([[good>>https://files.quagmyre.com/index.html]])
6
Drunk Monkey 10.1 7 External Link ([[bad>>https://files.quagmyre.com/nosuchfile.html]])
Drunk Monkey 9.1 8
Drunk Monkey 18.1 9 Linkchecker: [[here>>XWiki.ExternalLinks]]
Drunk Monkey 10.1 10
11 {{groovy}}
12 import com.xpn.xwiki.web.*
13 import org.xwiki.rendering.transformation.*
14
15 def checker = Utils.getComponent(Transformation.class, "linkchecker")
16
17 print "Link checker queue size = ${checker.linkQueue.size()}"
18 {{/groovy}}
19
Drunk Monkey 13.1 20 Glossary test: {{glossaryReference glossaryId="Glossary" entryId="OTE"}}OTE{{/glossaryReference}} is an entry, but OTP is not.
Drunk Monkey 10.1 21
Drunk Monkey 1.1 22 The sandbox is a part of your wiki that you can freely modify. It's meant to let you practice editing. You will discover how page editing works and create new pages. Simply click on **Edit** to get started!
23
24 {{info}}
25 Don't worry about overwriting or losing stuff when editing the page, you can always roll back to the first version of the page from the "History" tab at the bottom of the page.
26 {{/info}}
27
28 If you want to give a look to the underlying [[XWiki Syntax>>XWiki.XWikiSyntax]], you can click on "Wiki code" in the "Show" menu or click on the "Source" tab when editing the page.
29
30 Here are a number of test pages you can play with:
31
32 * [[Sandbox Test Page 1>>Sandbox.TestPage1]]
33 * [[Sandbox Test Page 2>>Sandbox.TestPage2]]
34 * [[Sandbox Test Page 3>>Sandbox.TestPage3]]
35
36 Below is a demonstration of the [[XWiki Syntax>>XWiki.XWikiSyntax]] you can use in wiki pages (headings, images, tables).
37
Drunk Monkey 6.1 38 = {{id name="你好"/}}Headings =
Drunk Monkey 1.1 39
40 XWiki offers 6 levels of headings. You can use them to structure your pages.
41
42 == Level 2 Heading ==
43
44 === Level 3 Heading ===
45
46 ==== Level 4 Heading 4 ====
47
48 ===== Level 5 Heading 5 =====
49
50 ====== Level 6 Heading 6 ======
51
Drunk Monkey 5.1 52 = {{id name="这个"/}}Styles =
Drunk Monkey 1.1 53
54 Basic styles are supported in XWiki:
55
56 * **Text in Bold**
57 * //Text in Italics//
58 * __Text in Underline__
59 * --Text in Strikethrough--
60 * Text in ,,subscript,,
61 * Text in ^^superscript^^
62
Drunk Monkey 3.1 63 = Anchors - ascii =
64
Drunk Monkey 4.1 65 xwiki code: ~{~{id name="ae"/}}
66
Drunk Monkey 3.1 67 {{id name="ae"/}}ae
68
69 = Anchors - non ascii =
70
Drunk Monkey 4.1 71 xwiki code: ~{~{id name="ä"/}}
72
Drunk Monkey 3.1 73 {{id name="ä"/}}ä
74
Drunk Monkey 1.1 75 = Lists =
76
77 You can create various types of lists in your wiki pages:
78
79 == Unordered list ==
80
81 * Level 1
82 ** Level 2
83 *** Level 3
84 ** Level 2
85 * Level 1
86
87 == Numbered list ==
88
89 1. Item
90 11. Subitem
91 111. Item
92 1. Subitem
93
94 == Mixed list ==
95
96 1. Item 1
97 11. Item 2
98 11*. Item 3
99 11*. Item 4
100 1. Item 5
101
102 = Tables =
103
104 You can create tables right into wiki pages:
105
106 == Table with headers in the top row ==
107
108 |= table header |= table header |= table header
109 | cell | cell | cell
110 | cell | cell | cell
111
112 == Table with headers in the top row and left column ==
113
114 |= table header |= table header |= table header
115 |= table header | cell | cell
116 |= table header | cell | cell
117
118 = Links =
119
120 XWiki allows you to create links to other pages in your wiki or on the web:
121
122 * [[WebHome]] -> links to the homepage of the current space
123 * [[Sandbox Home>>WebHome]] -> links can have labels
124 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
125 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
126 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
127
128 You can also create links to attachments:
129
130 attach:XWikiLogo.png
131
132 = Images =
133
134 You can insert images in your wiki pages:
135
Drunk Monkey 9.1 136 [[image:XWikiLogo.png]]
Drunk Monkey 1.1 137
138 = Macros =
139
140 Macros allow you to make wiki content look better and to add additional features to your wiki. Here are 2 examples of how macros can be used in wiki pages:
141
Drunk Monkey 6.2 142 == Box Macro ==
143
Drunk Monkey 6.4 144 {{box}}
Drunk Monkey 6.2 145 box
146 {{/box}}
147
Drunk Monkey 8.1 148 {{box title="**Title**"}}
Drunk Monkey 6.2 149 box
150 {{/box}}
151
Drunk Monkey 6.4 152 == Error Macro ==
Drunk Monkey 6.2 153
Drunk Monkey 6.4 154 {{error}}
155 Error
156 {{/error}}
Drunk Monkey 6.2 157
Drunk Monkey 8.1 158 {{error title="**Title**"}}
Drunk Monkey 6.4 159 Error
160 {{/error}}
Drunk Monkey 6.2 161
162 == Info Macro ==
163
Drunk Monkey 6.4 164 {{info}}
Drunk Monkey 6.2 165 Info
Drunk Monkey 6.3 166 {{/info}}
Drunk Monkey 6.2 167
Drunk Monkey 8.1 168 {{info title="**Title**"}}
Drunk Monkey 6.2 169 Info
Drunk Monkey 6.3 170 {{/info}}
Drunk Monkey 6.2 171
172 == Success Macro ==
173
Drunk Monkey 6.4 174 {{success}}
Drunk Monkey 6.2 175 Success
Drunk Monkey 6.3 176 {{/success}}
Drunk Monkey 6.2 177
Drunk Monkey 8.1 178 {{success title="**Title**"}}
Drunk Monkey 6.2 179 Success
Drunk Monkey 6.3 180 {{/success}}
Drunk Monkey 6.2 181
Drunk Monkey 6.4 182 == Warning Macro ==
Drunk Monkey 6.2 183
Drunk Monkey 6.4 184 {{warning}}
185 Hello World
186 {{/warning}}
187
Drunk Monkey 8.1 188 {{warning title="**Title**"}}
Drunk Monkey 6.4 189 Hello World
190 {{/warning}}
191
Drunk Monkey 1.1 192 == Table of Contents ==
193
194 This macro automatically generates a table of contents of your wiki page based on headings:
195
196 {{toc/}}