Wiki source code of Sandbox

Version 28.1 by Drunk Monkey on 2024-05-02 05:55

Show last authors
1 = rss macro =
2
3 {{rss feed="https://nitter.net/I_Am_The_ICT/with_replies/rss" content="false" css="true" image="false" decoration="true"/}}
4
5 = Quagmyre =
6
7 Quagmyre
8
9 External Link ([[good>>https://files.quagmyre.com/index.html]])
10
11 External Link ([[bad>>https://files.quagmyre.com/nosuchfile.html]])
12
13 Linkchecker: [[here>>XWiki.ExternalLinks]]
14
15 Non existing [[internal link>>notexist||style="outline-width: 0px !important; user-select: auto !important;"]] test
16
17 == lc queue size ==
18
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
28
29 == lc invalid links ==
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
80 Glossary test: {{glossaryReference glossaryId="Glossary" entryId="OTE"}}OTE{{/glossaryReference}} is an entry, but OTP is not.
81
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
98 = {{id name="你好"/}}Headings =
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
112 = {{id name="这个"/}}Styles =
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
123 = Anchors - ascii =
124
125 xwiki code: ~{~{id name="ae"/}}
126
127 {{id name="ae"/}}ae
128
129 = Anchors - non ascii =
130
131 xwiki code: ~{~{id name="ä"/}}
132
133 {{id name="ä"/}}ä
134
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
196 [[image:XWikiLogo.png]]
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
202 == Box Macro ==
203
204 {{box}}
205 box
206 {{/box}}
207
208 {{box title="**Title**"}}
209 box
210 {{/box}}
211
212 == Error Macro ==
213
214 {{error}}
215 Error
216 {{/error}}
217
218 {{error title="**Title**"}}
219 Error
220 {{/error}}
221
222 == Info Macro ==
223
224 {{info}}
225 Info
226 {{/info}}
227
228 {{info title="**Title**"}}
229 Info
230 {{/info}}
231
232 == Success Macro ==
233
234 {{success}}
235 Success
236 {{/success}}
237
238 {{success title="**Title**"}}
239 Success
240 {{/success}}
241
242 == Warning Macro ==
243
244 {{warning}}
245 Hello World
246 {{/warning}}
247
248 {{warning title="**Title**"}}
249 Hello World
250 {{/warning}}
251
252 == Table of Contents ==
253
254 This macro automatically generates a table of contents of your wiki page based on headings:
255
256 {{toc/}}