Wiki source code of Sandbox

Version 27.1 by Drunk Monkey on 2024-05-02 05:53

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