Wiki source code of Programming

Version 4.3 by Silvia Macovei on 2009/09/25

Hide last authors
Vincent Massol 1.15 1 1 Programming
Vincent Massol 1.1 2
jmcettrick 1.18 3 Bored of simple text in your pages? Are you interested in giving life to your wiki? Then you can make use of XWiki's powerful programming API directly from your wiki pages. XWiki offers 2 scripting languages: [Velocity>http://velocity.apache.org] and [Groovy>http://groovy.codehaus.org].
Vincent Massol 1.1 4
Vincent Massol 1.15 5 XWiki exposes an API that allows you to manipulate the wiki and its documents easily.
Vincent Massol 1.1 6
Vincent Massol 1.15 7 To wet your appetite simply put the following code in your page:
Vincent Massol 1.2 8
Vincent Massol 1.15 9 {code:title="Velocity Example"}
Vincent Massol 1.21 10 #set($query = "where doc.parent is null or doc.parent='' order by doc.name asc")
Vincent Massol 1.2 11
Vincent Massol 1.21 12 #foreach($item in $xwiki.searchDocuments($query))
13 #set($lostdoc = $xwiki.getDocument($item))
14 * [${lostdoc.web}.${lostdoc.name}>${lostdoc.web}.${lostdoc.name}]
15 #end
Vincent Massol 1.15 16 {code}
psa 1.8 17
Vincent Massol 1.15 18 And you'll get a list of orphaned pages (i.e. pages that have no parent). For example:
Vincent Massol 1.2 19
Vincent Massol 1.15 20 {image:velocityexampleresult.png}
Vincent Massol 1.2 21
Silvia Macovei 4.3 22 Another example of the programming features being used on XWiki.org is the [References page>xwiki:References.WebHome]. On this page, data coming from individual pages is gathered and displayed. [Velocity>http://velocity.apache.org] is used to take the first attachment of children pages and display it as a thumbnail on the [References page>xwiki:References.WebHome]. When no attachment is available, a default thumbnail is displayed instead. [Velocity>http://velocity.apache.org] is also used to retrieve and show specific bits of information (such as project names for instance). *[Check out how the page is coded>http://www.xwiki.org/xwiki/bin/view/References/?viewer=code&]* to find out more.
Guillaume Lerouge 1.9 23
Vincent Massol 4.1 24 Check the [Developer's Guide>DevGuide.WebHome] and especially the [XWiki Scripting section>DevGuide.Scripting] to learn more. You might also want to check out the [Code Zone>code:Main.WebHome] which contains code snippets that you can reuse in your pages.
ZhaoXuehui 1.14 25
Vincent Massol 1.15 26
jmcettrick 1.18 27

Get Connected