Wiki source code of Sandbox

Version 11.1 by Drunk Monkey on 2022-11-01 05:01

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 10.1 9
10 {{groovy}}
11 import com.xpn.xwiki.web.*
12 import org.xwiki.rendering.transformation.*
13
14 def checker = Utils.getComponent(Transformation.class, "linkchecker")
15
16 print "Link checker queue size = ${checker.linkQueue.size()}"
17 {{/groovy}}
18
19
Drunk Monkey 11.1 20 {{groovy}}
21 import groovy.util.logging.*
22 import org.xwiki.observation.*
23 import org.xwiki.observation.event.*
24 import org.xwiki.rendering.transformation.linkchecker.*
25 import com.xpn.xwiki.web.*
26 import com.xpn.xwiki.*
27
28 @Log
29 class MyLinkListener implements EventListener
30 {
31 def xwiki
32 def context
33
34 MyLinkListener(xwiki, context)
35 {
36 this.xwiki = xwiki
37 this.context = context
38 }
39
40 String getName()
41 {
42 return "myLinkListener"
43 }
44
45 List<Event> getEvents()
46 {
47 return Arrays.asList(new InvalidURLEvent())
48 }
49
50 void onEvent(Event event, Object eventSource, Object data)
51 {
52 def url = eventSource.get("url")
53 def source = eventSource.get("source")
54 def state = eventSource.get("state")
55
56 log.info("Error for {url} in ${source} - Response code: ${state.getResponseCode()} - Checked: ${String.format('%tF %<tT', state.getLastCheckedTime())}")
57 }
58 }
59
60 // Register against the Observation Manager
61 def observation = Utils.getComponent(ObservationManager.class)
62 observation.removeListener("myLinkListener")
63 def listener = new MyLinkListener(xwiki, xcontext)
64 observation.addListener(listener)
65 {{/groovy}}
66
67
68
Drunk Monkey 1.1 69 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!
70
71 {{info}}
72 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.
73 {{/info}}
74
75 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.
76
77 Here are a number of test pages you can play with:
78
79 * [[Sandbox Test Page 1>>Sandbox.TestPage1]]
80 * [[Sandbox Test Page 2>>Sandbox.TestPage2]]
81 * [[Sandbox Test Page 3>>Sandbox.TestPage3]]
82
83 Below is a demonstration of the [[XWiki Syntax>>XWiki.XWikiSyntax]] you can use in wiki pages (headings, images, tables).
84
Drunk Monkey 6.1 85 = {{id name="你好"/}}Headings =
Drunk Monkey 1.1 86
87 XWiki offers 6 levels of headings. You can use them to structure your pages.
88
89 == Level 2 Heading ==
90
91 === Level 3 Heading ===
92
93 ==== Level 4 Heading 4 ====
94
95 ===== Level 5 Heading 5 =====
96
97 ====== Level 6 Heading 6 ======
98
Drunk Monkey 5.1 99 = {{id name="这个"/}}Styles =
Drunk Monkey 1.1 100
101 Basic styles are supported in XWiki:
102
103 * **Text in Bold**
104 * //Text in Italics//
105 * __Text in Underline__
106 * --Text in Strikethrough--
107 * Text in ,,subscript,,
108 * Text in ^^superscript^^
109
Drunk Monkey 3.1 110 = Anchors - ascii =
111
Drunk Monkey 4.1 112 xwiki code: ~{~{id name="ae"/}}
113
Drunk Monkey 3.1 114 {{id name="ae"/}}ae
115
116 = Anchors - non ascii =
117
Drunk Monkey 4.1 118 xwiki code: ~{~{id name="ä"/}}
119
Drunk Monkey 3.1 120 {{id name="ä"/}}ä
121
Drunk Monkey 1.1 122 = Lists =
123
124 You can create various types of lists in your wiki pages:
125
126 == Unordered list ==
127
128 * Level 1
129 ** Level 2
130 *** Level 3
131 ** Level 2
132 * Level 1
133
134 == Numbered list ==
135
136 1. Item
137 11. Subitem
138 111. Item
139 1. Subitem
140
141 == Mixed list ==
142
143 1. Item 1
144 11. Item 2
145 11*. Item 3
146 11*. Item 4
147 1. Item 5
148
149 = Tables =
150
151 You can create tables right into wiki pages:
152
153 == Table with headers in the top row ==
154
155 |= table header |= table header |= table header
156 | cell | cell | cell
157 | cell | cell | cell
158
159 == Table with headers in the top row and left column ==
160
161 |= table header |= table header |= table header
162 |= table header | cell | cell
163 |= table header | cell | cell
164
165 = Links =
166
167 XWiki allows you to create links to other pages in your wiki or on the web:
168
169 * [[WebHome]] -> links to the homepage of the current space
170 * [[Sandbox Home>>WebHome]] -> links can have labels
171 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
172 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
173 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
174
175 You can also create links to attachments:
176
177 attach:XWikiLogo.png
178
179 = Images =
180
181 You can insert images in your wiki pages:
182
Drunk Monkey 9.1 183 [[image:XWikiLogo.png]]
Drunk Monkey 1.1 184
185 = Macros =
186
187 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:
188
Drunk Monkey 6.2 189 == Box Macro ==
190
Drunk Monkey 6.4 191 {{box}}
Drunk Monkey 6.2 192 box
193 {{/box}}
194
Drunk Monkey 8.1 195 {{box title="**Title**"}}
Drunk Monkey 6.2 196 box
197 {{/box}}
198
Drunk Monkey 6.4 199 == Error Macro ==
Drunk Monkey 6.2 200
Drunk Monkey 6.4 201 {{error}}
202 Error
203 {{/error}}
Drunk Monkey 6.2 204
Drunk Monkey 8.1 205 {{error title="**Title**"}}
Drunk Monkey 6.4 206 Error
207 {{/error}}
Drunk Monkey 6.2 208
209 == Info Macro ==
210
Drunk Monkey 6.4 211 {{info}}
Drunk Monkey 6.2 212 Info
Drunk Monkey 6.3 213 {{/info}}
Drunk Monkey 6.2 214
Drunk Monkey 8.1 215 {{info title="**Title**"}}
Drunk Monkey 6.2 216 Info
Drunk Monkey 6.3 217 {{/info}}
Drunk Monkey 6.2 218
219 == Success Macro ==
220
Drunk Monkey 6.4 221 {{success}}
Drunk Monkey 6.2 222 Success
Drunk Monkey 6.3 223 {{/success}}
Drunk Monkey 6.2 224
Drunk Monkey 8.1 225 {{success title="**Title**"}}
Drunk Monkey 6.2 226 Success
Drunk Monkey 6.3 227 {{/success}}
Drunk Monkey 6.2 228
Drunk Monkey 6.4 229 == Warning Macro ==
Drunk Monkey 6.2 230
Drunk Monkey 6.4 231 {{warning}}
232 Hello World
233 {{/warning}}
234
Drunk Monkey 8.1 235 {{warning title="**Title**"}}
Drunk Monkey 6.4 236 Hello World
237 {{/warning}}
238
Drunk Monkey 1.1 239 == Table of Contents ==
240
241 This macro automatically generates a table of contents of your wiki page based on headings:
242
243 {{toc/}}