Wiki source code of DevGuide

Version 16.1 by Silvia Macovei on 2010/02/24

Hide last authors
Silvia Macovei 16.1 1 {{velocity filter="none"}}
2 {{html clean="false" wiki="true"}}
Vincent Massol 2.1 3 #startfloatingbox()
Silvia Macovei 16.1 4 If you are interested in participating to<br/> the XWiki project development itself or<br/> in building it from sources, you<br/> should refer to the [[Community wiki>>dev:Main.WebHome]].<br/> You still have a question?<br/> [[Subscribe to the mailing lists!>>dev:Community.MailingLists]]
Vincent Massol 2.1 5 #endfloatingbox()
Vincent Massol 1.1 6
Silvia Macovei 16.1 7 = Developer's Guide =
Vincent Massol 3.1 8
Silvia Macovei 16.1 9 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 10
Silvia Macovei 16.1 11 == Reference documentation ==
Vincent Massol 1.1 12
Silvia Macovei 16.1 13 <dt>**[[XWiki Architecture>>Architecture]]**</dt>
Vincent Massol 14.1 14 <dd>
15 Understanding how XWiki is architected.
16 </dd>
Silvia Macovei 16.1 17 <p/>
Vincent Massol 1.1 18 <dl>
Silvia Macovei 16.1 19 <p/>
20 <dt>**[[XWiki Data Model>>DataModel]]**</dt>
Vincent Massol 1.1 21 <dd>
22 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.
23 </dd>
Silvia Macovei 16.1 24 <p/>
25 <dt>**[[XWiki Scripting>>Scripting]]**</dt>
Vincent Massol 1.1 26 <dd>
27 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.
28 </dd>
Silvia Macovei 16.1 29 <p/>
30 <dt>**[[XWiki API Guide>>APIGuide]]**</dt>
Vincent Massol 1.2 31 <dd>
32 Guide that explains the main XWiki APIs.
33 </dd>
Silvia Macovei 16.1 34 <p/>
35 <dt>**[[Front-end Resources>>DevGuide.FrontendResources]]**</dt>
Jerome 15.1 36 <dd>
37 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>
Silvia Macovei 16.1 38 <p/>
39 <dt>**[[XWiki Module Reference>>code:Modules.WebHome]]**</dt>
Vincent Massol 14.4 40 <dd>
41 Reference documentation of the various Modules of XWiki:
42 #set ($currentDb = $context.database)
43 #set ($dummy = $context.setDatabase("code"))
44 #set ($sql = ", BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.ModuleClass' and obj.name<>'XWiki.ModuleClassTemplate' order by doc.name")
45 #set ($modules = $xwiki.searchDocuments($sql, 5, 0))
46 #foreach ($item in $modules)
Silvia Macovei 16.1 47 * [[code:$item]]
Vincent Massol 14.4 48 #end
Silvia Macovei 16.1 49 * ... [[more module documentation>>code:Modules.WebHome]]
50 <p/>
Vincent Massol 14.4 51 #set ($dummy = $context.setDatabase($currentDb))
52 </dd>
Silvia Macovei 16.1 53 <p/>
Vincent Massol 14.1 54 </dl>
55
Silvia Macovei 16.1 56 == Tutorials and Guides ==
Vincent Massol 14.1 57
58 <dl>
Silvia Macovei 16.1 59 <p/>
60 <dt>**[[Creating a FAQ application>>FAQTutorial]]**</dt>
61 <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>
62 <p/>
63 <dt>**[[Creating a Groovy Class>>GroovyClassHelloWorldTutorial]]**</dt>
Vincent Massol 14.1 64 <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>
Silvia Macovei 16.1 65 <p/>
66 <dt>**[[Writing an Event Listener in Groovy>>DevGuide.GroovyNotificationTutorial]]**</dt>
67 <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 68 </dd>
Silvia Macovei 16.1 69 <p/>
70 <dt> **[[Creating a TODO application in XWiki>>http://www.theserverside.com/tt/articles/article.tss?l=XWiki]]**</dt>
Vincent Massol 14.1 71 <dd>Another helpful tutorial to using XWiki's classes, velocity scripts, hibernate queries for a dashboard.
72 Shows well the power of XWiki.</dd>
Silvia Macovei 16.1 73 <p/>
74 <dt> **[[Creating a form with validation and tooltips]]**</dt>
Vincent Massol 14.1 75 <dd>Quick and efficient tutorial to set-up validation using regular expression and groovy scripts, as well as tooltips</dd>
Silvia Macovei 16.1 76 <p/>
77 <dt> **[[Writing XWiki Rendering Macros>>WritingMacros]]**</dt>
Vincent Massol 14.1 78 <dd>How to develop XWiki Rendering macros (available in XWiki Syntax 2.0 only)</dd>
Silvia Macovei 16.1 79 <p/>
80 <dt> **[[Writing an XWiki Component>>WritingComponents]]**</dt>
Vincent Massol 14.1 81 <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>
Silvia Macovei 16.1 82 <p/>
83 <dt> **[[Skin eXtensions>>SkinExtensionsTutorial]]**</dt>
84 <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>
85 <p/>
86 <dt>**[[Internationalizing Applications>>InternationalizingApplications]]**</dt>
Vincent Massol 1.1 87 <dd>
88 Learn how to write internationalized applications.
89 </dd>
Silvia Macovei 16.1 90 <p/>
91 <dt>**[[Creating Plugins>>CreatingPlugins]]**</dt>
Vincent Massol 1.1 92 <dd>
93 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.
94 </dd>
Silvia Macovei 16.1 95 <p/>
96 <dt>**[[Best Practices>>BestPractices]]**</dt>
Vincent Massol 1.1 97 <dd>
98 A set of best practices for developing applications with XWiki.
99 </dd>
Silvia Macovei 16.1 100 <p/>
Vincent Massol 1.1 101 </dl>
102
Silvia Macovei 16.1 103 == Further reading ==
Vincent Massol 1.1 104
105 <dl>
Silvia Macovei 16.1 106 <p/>
107 <dt>**[[XWiki API Reference>>API]]**</dt>
Vincent Massol 1.1 108 <dd>
109 The API is available as a JavaDoc. It presents the objects and properties that you can access with scripting.
110 </dd>
Silvia Macovei 16.1 111 <p/>
112 <dt>**[[Database Schema>>DatabaseSchema]]**</dt>
Vincent Massol 1.1 113 <dd>
114 For advanced users who like to know everything, check out the database tables created by XWiki.
115 </dd>
Silvia Macovei 16.1 116 <p/>
Vincent Massol 1.1 117 </dl>
Silvia Macovei 16.1 118 {{/html}}
119 {{/velocity}}
Vincent Massol 1.1 120
Silvia Macovei 16.1 121 == Draft documentation ==
jeanvivienmaurice 1.5 122
Silvia Macovei 16.1 123 See the [[Draft space of the Development Wiki>>dev:Drafts.WebHome]].

Get Connected