This file is indexed.

/usr/share/horde/wicked/data/Mediawiki/Wiki/TextFormat is in php-horde-wicked 2.0.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
= Sample Page for Wiki Markup =


== General Notes ==

The markup uses the [http://www.mediawiki.org/ Mediawiki] style.

All text is entered as plain text, and will be converted to HTML entities as \
necessary.  This means that <tt><</tt>, <tt>></tt>, <tt>&</tt>, and so on are converted for \
you (except in special situations where the characters are Wiki markup; \
the Wiki is generally smart enough to know when to convert and when not to).

Just hit "return" twice to make a paragraph break.  If you want \
to keep the same logical line but have to split it across \
two physical lines (such as when your editor only shows a certain number \
of characters per line), end the line with a backslash <tt>\</tt> and hit \
return once.  This will cause the two lines to be joined on display, and the \
backslash will not show.  (If you end a line with a backslash and a tab \
or space, it will ''not'' be joined with the next line, and the backslash \
will be printed.)


== Inline Formatting ==

{|
| <tt><nowiki>''emphasis text''</nowiki></tt>
| ''emphasis text''
|-
| <tt><nowiki>'''strong text'''</nowiki></tt>
| '''strong text'''
|-
| <tt><nowiki>'''''emphasis and strong'''''</nowiki></tt>
| '''''emphasis and strong'''''
|-
| <tt><nowiki><tt>teletype text</tt></nowiki></tt>
| <tt>teletype text</tt>
|-
| <tt><nowiki><sub>subscript</sub> text</nowiki></tt>
| <sub>subscript</sub> text
|-
| <tt><nowiki><sup>superscript</sup> text</nowiki></tt>
| <sup>superscript</sup> text
|}

== Literal Text ==

If you don't want the wiki to parse some text, enclose it in <tt><nowiki><nowiki>...</nowiki></nowiki></tt> tags.

<code>
This ''text'' gets '''parsed'''.

<nowiki>This ''text'' does not get '''parsed'''.</nowiki>
</code>

This ''text'' gets '''parsed'''.

<nowiki>This ''text'' does not get '''parsed'''.</nowiki>


== Comments ==

You can add comments to the page source code using the following markup. These comments won't be rendered in the page's output.

<code>
<!-- Some comment -->
</code>

<!-- Some comment -->


== Headings ==

You can make various levels of heading by putting \
plus-signs before the text (all on its own line):

<code>
=== Level 3 Heading ===
==== Level 4 Heading ====
===== Level 5 Heading =====
====== Level 6 Heading ======
</code>

=== Level 3 Heading ===
==== Level 4 Heading ====
===== Level 5 Heading =====
====== Level 6 Heading ======


== Table of Contents ==

To create a list of every heading, with a link to that heading, put a table of contents tag on its own line.

<code>
[[toc]]
</code>


== Horizontal Rules ==

Use four dashes (<tt><nowiki>----</nowiki></tt>) to create a horizontal rule.

----


== Lists ==


=== Bullet Lists ===

You can create bullet lists by starting a paragraph with one or \
more asterisks.

<code>
* Bullet one
** Sub-bullet
</code>

* Bullet one
** Sub-bullet


=== Numbered Lists ===

Similarly, you can create numbered lists by starting a paragraph \
with one or more hashes.

<code>
# Numero uno
# Number two
## Sub-item
</code>

# Numero uno
# Number two
## Sub-item


=== Mixing Bullet and Number List Items ===

You can mix and match bullet and number lists:

<code>
# Number one
** Bullet
** Bullet
# Number two
** Bullet
** Bullet
*** Sub-bullet
#### Sub-sub-number
#### Sub-sub-number
# Number three
** Bullet
** Bullet
</code>

# Number one
** Bullet
** Bullet
# Number two
** Bullet
** Bullet
*** Sub-bullet
#### Sub-sub-number
#### Sub-sub-number
# Number three
** Bullet
** Bullet


=== Definition Lists ===

You can create a definition (description) list with the following syntax:

<code>
;Item 1
:Something
;Item 2
:Something else
</code>

;Item 1
:Something
;Item 2
:Something else


== Block Quotes ==

You can mark a blockquote by starting a line with one or more '>' \
characters, followed by a space and the text to be quoted.

<code>
This is normal text here.

: Indent me! The quick brown fox jumps over the lazy dog. \
Now this the time for all good men to come to the aid of \
their country. Notice how we can continue the block-quote \
in the same "paragraph" by using a backslash at the end of \
the line.

: Another block, leading to...
:: Second level of indenting.  This second is indented even \
more than the previous one.

Back to normal text.
</code>

This is normal text here.

: Indent me! The quick brown fox jumps over the lazy dog. \
Now this the time for all good men to come to the aid of \
their country. Notice how we can continue the block-quote \
in the same "paragraph" by using a backslash at the end of \
the line.

: Another block, leading to...
:: Second level of indenting.  This second is indented even \
more than the previous one.

Back to normal text.


== Links and Images ==


=== Wiki Links ===

You can create page links by putting the name in brackets.

<code>
[[Wiki/Page]]
</code>

[[Wiki/Page]]

You can also use this format to create a "described" or "labeled" link or to add an anchor target.

<code>
[[Wiki/Page#anchor|Descriptive text for the link.]]
</code>

[[Wiki/Page#anchor|Descriptive text for the link.]]


=== URLs ===

Create a remote link simply by typing its URL: http://www.horde.org.

If you like, enclose it in brackets to create a numbered reference \
and avoid cluttering the page; <tt><nowiki>[http://www.horde.org/]</nowiki></tt> becomes [http://www.horde.org/].

''Rendering of URLs as numbers is broken as of Text_Wiki 1.2.1.''

Or you can have a described-reference instead of a numbered reference:

<code>
[http://www.horde.org Horde]
</code>

[http://www.horde.org Horde]


=== Images ===

You can put a picture in a page with <tt><nowiki>[[Image:foo.jpg]]</nowiki></tt>. You can use any file type, but most browsers only support GIF, JPEG, and PNG formats. The filename can either be a relative reference (in which case the wiki looks for a file attached to the current page - or a different wiki page if the file name is prefixed with a page name, e.g. <tt><nowiki>[[Image:SomePage:foo.jpg]]</nowiki></tt>), an absolute reference which begins with a slash (in which case the wiki uses it to retrieve a file relative to the web server's root), or a full, external URL.

Additional "alt", "width", and "height" attributes can follow the image filename or URL like so: <tt><nowiki>[[Image:foo.jpg|A Foo JPEG|WIDTHxHEIGHTpx]]</nowiki></tt>.


== Application Content ==

=== Application Blocks ===

Content from other Horde applications provided by portal blocks can be embedded into a page using <tt><nowiki>[[block]]</nowiki></tt> tags.

To include Horde's moon phases block for example:

<code>
[[block horde/Moon phase=next hemisphere=northern]]
</code>

[[block horde/Moon phase=next hemisphere=northern]]

=== Application Links ===

Links to other Horde applications is supported if those applications support API links. The Wiki itself supports such an API to link to individual wiki pages:

<code>
[[link Link to some other wiki page|wiki/show page=Wiki/Page]]
</code>

[[link Link to some other wiki page|wiki/show page=Wiki/Page]]


== Code Blocks ==

Create code blocks by using <tt>code</tt> tags (each on its own line).

<code>
This is an example code block!
</code>

To create PHP blocks that get automatically colorized when you use PHP tags, simply surround the code with <tt>code type="php"</tt> tags (the tags themselves should each be on their own lines, and no need for the <tt><?php ... ?></tt> tags).

<code>
 <code type="php">
 // Set up the wiki options
 $options = array();
 $options['view_url'] = "index.php?page=";

 // load the text for the requested page
 $text = implode('', file($page . '.wiki.txt'));

 // create a Wiki objext with the loaded options
 $wiki = new Text_Wiki($options);

 // transform the wiki text.
 echo $wiki->transform($text);
 </code>
</code>

<code type="php">
// Set up the wiki options
$options = array();
$options['view_url'] = "index.php?page=";

// load the text for the requested page
$text = implode('', file($page . '.wiki.txt'));

// create a Wiki objext with the loaded options
$wiki = new Text_Wiki($options);

// transform the wiki text.
echo $wiki->transform($text);
</code>

API references can be generated using <tt><function></tt> tags.

<code>
<function>
name:listUsers
access:public
param:string,Filter users by this string.,'USER'
returns:array
throws:Exception,if user backend not available.
</function>
</code>

''Rendering of this rule is broken as of Text_Wiki 1.2.1, usage is discouraged.''


== Tables ==

You can create tables using pairs of vertical bars:

<code>
{|
! Heading one !! Heading two
|-
| cell one || cell two
|-
| colspan="2" | big ol' line
|-
| cell four || cell five
|-
| cell six || here's a very long cell
|}
</code>

{|
! Heading one !! Heading two
|-
| cell one || cell two
|-
| colspan="2" | big ol' line
|-
| cell four || cell five
|-
| cell six || here's a very long cell
|}

<code>
{|
| lines must start || with a vertical bar || and a dash
|-
| cells are separated by || double vertical bars || nothing
|-
| or by starting the new
| cell on a new line
| with a vertical bar
|-
| colspan="2" | you can span multiple columns by || starting the cell
|-
| with a colspan || colspan="2" |  attribute
|-
| colspan="3" | but perhaps an example is the easiest way to see
|}
</code>

{|
| lines must start || with a vertical bar || and a dash
|-
| cells are separated by || double vertical bars || nothing
|-
| or by starting the new
| cell on a new line
| with a vertical bar
|-
| colspan="2" | you can span multiple columns by || starting the cell
|-
| with a colspan || colspan="2" |  attribute
|-
| colspan="3" | but perhaps an example is the easiest way to see
|}