Wiki source code of DevGuide

Version 15.1 by Jerome on 2009/10/09

Hide last authors
Vincent Massol 2.1 1 #startfloatingbox()
Vincent Massol 14.2 2 If you are interested in participating to\\ the XWiki project development itself or\\ in building it from sources, you\\ should refer to the [Community wiki>dev:Main.WebHome].\\ You still have a question?\\ [Subscribe to the mailing lists!>dev:Community.MailingLists]
Vincent Massol 2.1 3 #endfloatingbox()
Vincent Massol 1.1 4
Vincent Massol 3.1 5 1 Developer's Guide
6
Vincent Massol 5.1 7 XWiki is a [second generation wiki>platform:Main.SecondGenerationWiki] that provides all the basic content management and administration features of common wikis, but with much more. XWiki takes the wiki approach to a whole new level by providing enhanced features and capabilities. With XWiki, you can build simple applications, extend the platform with custom plugins, or even build complex Web applications.
Vincent Massol 2.1 8
Vincent Massol 14.1 9 1.1 Reference documentation
Vincent Massol 1.1 10
Vincent Massol 14.1 11 <dt>*[XWiki Architecture>Architecture]*</dt>
12 <dd>
13 Understanding how XWiki is architected.
14 </dd>
Vincent Massol 1.1 15
16 <dl>
Vincent Massol 14.1 17
Vincent Massol 1.1 18 <dt>*[XWiki Data Model>DataModel]*</dt>
19 <dd>
20 You should start by understanding XWiki's data model of Classes, Properties, and Objects. They'll be needed to build applications at the presentation (document) level.
21 </dd>
22
23 <dt>*[XWiki Scripting>Scripting]*</dt>
24 <dd>
25 Once you understand XWiki's Data Model you'll be able to program directly in the documents you edit. XWiki integrates both Velocity and Groovy scripting. Together, Classes and Scripting will allow you to create basic to complex web applications at the XWiki document layer without the need for compiling code or deploying software components.
26 </dd>
27
Vincent Massol 1.2 28 <dt>*[XWiki API Guide>APIGuide]*</dt>
29 <dd>
30 Guide that explains the main XWiki APIs.
31 </dd>
32
Jerome 15.1 33 <dt>*[Front-end Resources>DevGuide.FrontendResources]*</dt>
34 <dd>
35 A description of the tools and frameworks used in XWiki. You'll find information about how you can use external libraries such as YUI and SmartClient and internal XWiki libraries for your the development of your in-wiki applications or for the development of XWiki products themselves. You'll also find the documentation of StyleSheet resources created specifically for the XWiki project.</dd>
36
Vincent Massol 14.4 37 <dt>*[XWiki Module Reference>code:Modules.WebHome]*</dt>
38 <dd>
39 Reference documentation of the various Modules of XWiki:
40 #set ($currentDb = $context.database)
41 #set ($dummy = $context.setDatabase("code"))
42 #set ($sql = ", BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.ModuleClass' and obj.name<>'XWiki.ModuleClassTemplate' order by doc.name")
43 #set ($modules = $xwiki.searchDocuments($sql, 5, 0))
44 #foreach ($item in $modules)
45 * [code:$item]
46 #end
47 * ... [more module documentation>code:Modules.WebHome]
48 #set ($dummy = $context.setDatabase($currentDb))
49 </dd>
50
Vincent Massol 14.1 51 </dl>
52
53 1.1 Tutorials and Guides
54
55 <dl>
56
57 <dt>*[Creating a FAQ application>FAQTutorial]*</dt>
58 <dd>Demonstrates how to combine Classes and Scripting to produce a FAQ application, much like the one you can find on this Wiki [FAQ page>xwiki:FAQ.WebHome]. This is a very simple application that makes use of XWiki's classes, properties, and objects. It also introduces the concept of Authoring Templates and Page Design Sheets. Completing this tutorial is a recommended prerequisite for anyone who wants to build custom applications on the XWiki engine at the document or presentation layer.</dd>
59
60 <dt>*[Creating a Groovy Class>GroovyClassHelloWorldTutorial]*</dt>
61 <dd>Demonstrates how to put Groovy code in one page and then reuse it by importing it from another page, be it using Velocity or Groovy.</dd>
62
Vincent Massol 14.6 63 <dt>*[Writing an Event Listener in Groovy>DevGuide.GroovyNotificationTutorial]*</dt>
Vincent Massol 14.5 64 <dd>Explains how to write an [Event Listener>code:Modules.ObservationModule] in Groovy in order to perform some action when an event happens in the wiki. Examples of events are Document changed, Object modified, and more.
Vincent Massol 14.1 65 </dd>
66
67 <dt> *[Creating a TODO application in XWiki>http://www.theserverside.com/tt/articles/article.tss?l=XWiki]*</dt>
68 <dd>Another helpful tutorial to using XWiki's classes, velocity scripts, hibernate queries for a dashboard.
69 Shows well the power of XWiki.</dd>
70
71 <dt> *[Creating a form with validation and tooltips]*</dt>
72 <dd>Quick and efficient tutorial to set-up validation using regular expression and groovy scripts, as well as tooltips</dd>
73
74 <dt> *[Writing XWiki Rendering Macros>WritingMacros]*</dt>
75 <dd>How to develop XWiki Rendering macros (available in XWiki Syntax 2.0 only)</dd>
76
77 <dt> *[Writing an XWiki Component>WritingComponents]*</dt>
78 <dd>Getting started with the new XWiki components architecture: introduction to this new design, a step-by-step guide to writing an XWiki component (the recommended way of creating XWiki plugins) and some guidelines and development good practices in this area.</dd>
79
80 <dt> *[Skin eXtensions>SkinExtensionsTutorial]*</dt>
81 <dd>Illustrate XWiki's [Skin eXtensions>Features.Skins#HSkinseXtensions] mechanism that allows developers to pull extra Javascript and stylesheet files on demand or for all wiki pages without modifying the wiki templates and skin. The tutorial guides through the creation of minimal stylesheet and Javascript extensions, and continues with a complete exemple of a real-world extension to demonstrate the power of XWiki's skin eXtensions!</dd>
82
Vincent Massol 1.1 83 <dt>*[Internationalizing Applications>InternationalizingApplications]*</dt>
84 <dd>
85 Learn how to write internationalized applications.
86 </dd>
87
88 <dt>*[Creating Plugins>CreatingPlugins]*</dt>
89 <dd>
90 After you've learnt how to write applications at the document level you may want to go further and program plugins in Java to extend XWiki's view engine, as well as add hooks into different parts of the core engine.
91 </dd>
92
93 <dt>*[Best Practices>BestPractices]*</dt>
94 <dd>
95 A set of best practices for developing applications with XWiki.
96 </dd>
97
98 </dl>
99
Vincent Massol 14.1 100 1.1 Further reading
Vincent Massol 1.1 101
102 <dl>
103
104 <dt>*[XWiki API Reference>API]*</dt>
105 <dd>
106 The API is available as a JavaDoc. It presents the objects and properties that you can access with scripting.
107 </dd>
108
109 <dt>*[Database Schema>DatabaseSchema]*</dt>
110 <dd>
111 For advanced users who like to know everything, check out the database tables created by XWiki.
112 </dd>
113
114 </dl>
115
Vincent Massol 14.1 116 1.1 Draft documentation
jeanvivienmaurice 1.5 117
Vincent Massol 14.3 118 See the [Draft space of the Development Wiki>dev:Drafts.WebHome].
Vincent Massol 14.1 119

Get Connected