Wiki source code of Sandbox

Version 18.1 by Jip-jan Alunkel on May 08, 15:51

Show last authors
1
2 {{html}}
3 <!-- <iframe src="https://www.homeoworld.org/login/XWiki/XWikiLogin?xredirect=%2Fcases%2FCode%2F&loginLink=1"></iframe> -->
4
5 <form id="loginForm" action="/loginsubmit/XWiki/XWikiLogin" method="post" class="xform">
6 <div class="hidden"><input type="hidden" name="xredirect" value="/cases/Code/">
7 <input type="hidden" name="form_token" value="VcalxtbEafVXHN9hsAwjbQ">
8 </div>
9 <div class="centered panel panel-default xwikimessage">
10 <div class="panel-heading">
11 <div class="panel-title">Inloggen</div>
12 </div>
13 <div class="panel-body">
14 <dl>
15 <dt>
16 <label for="j_username">Gebruikersnaam</label>
17 <span class="xAdditional"><a href="/authenticate/wiki/xwiki/retrieveusername" tabindex="500">Gebruikersnaam vergeten?</a></span>
18 </dt>
19 <dd class="input-group">
20 <span class="input-group-addon"><span class="fa fa-user"></span></span>
21 <input class="form-control" type="text" id="j_username" size="60" name="j_username" value="" tabindex="100">
22 </dd>
23 <dt>
24 <label for="j_password">Wachtwoord</label>
25 <span class="xAdditional"><a href="/authenticate/wiki/xwiki/resetpassword" tabindex="600">Wachtwoord vergeten?</a></span>
26 </dt>
27 <dd class="input-group">
28 <span class="input-group-addon"><span class="fa fa-lock"></span></span>
29 <input type="password" id="j_password" size="60" name="j_password" value="" tabindex="200">
30 </dd>
31 <dt></dt>
32 <dd>
33 <label class="xHint" for="rememberme">
34 <input id="rememberme" type="checkbox" name="j_rememberme" value="true" tabindex="300"> Onthoud me op deze computer
35 </label>
36 </dd>
37 <dt><input type="submit" class="btn btn-primary col-xs-12" value="Inloggen" tabindex="400"></dt>
38 </dl>
39 </div> </div></form>
40
41 {{/html}}
42
43 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!
44
45 {{info}}
46 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.
47 {{/info}}
48
49 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.
50
51 Here are a number of test pages you can play with:
52
53 * [[Sandbox Test Page 1>>Sandbox.TestPage1]]
54 * [[Sandbox Test Page 2>>Sandbox.TestPage2]]
55 * [[Sandbox Test Page 3>>Sandbox.TestPage3]]
56
57 Below is a demonstration of the [[XWiki Syntax>>XWiki.XWikiSyntax]] you can use in wiki pages (headings, images, tables).
58
59 = Headings =
60
61 XWiki offers 6 levels of headings. You can use them to structure your pages.
62
63 == Level 2 Heading ==
64
65 === Level 3 Heading ===
66
67 ==== Level 4 Heading 4 ====
68
69 ===== Level 5 Heading 5 =====
70
71 ====== Level 6 Heading 6 ======
72
73 = Styles =
74
75 Basic styles are supported in XWiki:
76
77 * **Text in Bold**
78 * //Text in Italics//
79 * __Text in Underline__
80 * --Text in Strikethrough--
81 * Text in ,,subscript,,
82 * Text in ^^superscript^^
83
84 = Lists =
85
86 You can create various types of lists in your wiki pages:
87
88 == Unordered list ==
89
90 * Level 1
91 ** Level 2
92 *** Level 3
93 ** Level 2
94 * Level 1
95
96 == Numbered list ==
97
98 1. Item
99 11. Subitem
100 111. Item
101 1. Subitem
102
103 == Mixed list ==
104
105 1. Item 1
106 11. Item 2
107 11*. Item 3
108 11*. Item 4
109 1. Item 5
110
111 = Tables =
112
113 You can create tables right into wiki pages:
114
115 == Table with headers in the top row ==
116
117 |= table header |= table header |= table header
118 | cell | cell | cell
119 | cell | cell | cell
120
121 == Table with headers in the top row and left column ==
122
123 |= table header |= table header |= table header
124 |= table header | cell | cell
125 |= table header | cell | cell
126
127 = Links =
128
129 XWiki allows you to create links to other pages in your wiki or on the web:
130
131 * [[WebHome]] -> links to the homepage of the current space
132 * [[Sandbox Home>>WebHome]] -> links can have labels
133 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
134 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
135 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
136
137 You can also create links to attachments:
138
139 attach:XWikiLogo.png
140
141 = Images =
142
143 You can insert images in your wiki pages:
144
145 [[image:XWikiLogo.png]]
146
147 = Macros =
148
149 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:
150
151 == Warning Macro ==
152
153 This macro allows you to draw users' attention to a specific piece of information:
154
155 == Table of Contents ==
156
157 This macro automatically generates a table of contents of your wiki page based on headings:
158
159 {{toc/}}