Wiki source code of FAQTutorialManual

Version 27.15 by Marc Lijour on 2009/07/22

Show last authors
1 1 Creating a FAQ Application
2
3 This tutorial will show you how to build a Frequently Asked Questions (FAQs) Application much like the one you can find on the [FAQ page>xwiki:FAQ.WebHome]. This is a very simple application that makes use of XWiki's classes, properties, and objects. It also uses a technique that you may frequently use as the basis for several different kinds of applications.
4
5 All through this tutorial you should refer to the [XWiki Data Model> DevGuide.DataModel] for information on XWiki's data model. You might also use the [XWiki Scripting Guide> DevGuide.Scripting] to get you started with scripting in XWiki and manipulating XWiki objects. In addition, this tutorial will introduce the concepts of Authoring Templates and Page Design Sheets, patterns that you will find particularly useful in creating XWiki applications. Completing this tutorial is a recommended prerequisite for anyone who wants to build custom applications on the XWiki engine.
6
7 1.1 Application Overview
8
9 The FAQ application allows users to post a question by entering the question into a simple form field and then submitting the form. The question then appears in a list along with all other questions that have been previously posted. Users can click on the questions to view both the question and answer in a consistently styled view. If the question has not yet been answered, any user can post an answer to the question by editing the page. In edit mode, the page will display a web form that is always consistent for every FAQ page.
10
11 Let us begin by taking a look at what we are going to build. The system has the following views. Click any view link below to preview a screenshot. (Note: Firefox users can middle click or click down on the mouse scroll-wheel to open the links in a new tab.)
12
13 * {attach:The FAQs Summary View|FAQsSummary.png}
14 * {attach:A Question and Answer Page in Display Mode|FAQSheetView.png}
15 * {attach:A Question and Answer Page in Edit Mode|FAQSheetEdit.png}
16 1.1 Authoring Templates and Page Design Sheets
17
18 An Authoring Template is a template for creating documents of a specific type. Unlike a regular content page in edit mode with one field for freeform editing, an Authoring Template presents a custom set of form fields for creating a document with specific type of data. These form elements are defined by the properties of a class.
19
20 In object oriented programming, remember that a ~~class~~ is a template for an object. Using the analogy of a cookie cutter, the ~~class~~ is the ~~cookie cutter~~ and the ~~objects~~ are the actual ~~cookies~~. An Authoring Template provides one way to represent a class visually so that users can fill out a form to set unique properties (values in form fields). When the user submits the form, they are creating a unique ~~object~~ of the ~~class~~ type.
21
22 Precisely, an Authoring Template is a prototype document used to create other specific instances of documents of the same type, along with a method of exposing the creation process to the user: the properties edit form. Remember that a XWiki Document can contain objects and this is the case of an authoring template: it is a XWiki Document with an empty object of a specific class, which is duplicated to create more and more documents based on that model, using the data inserted by the user in the editing form as specific values for the particular object instance in the current copy.
23
24 The Page Design Sheet is like a style sheet that defines each document will look when it is rendered. Even though the unique object instances will have different values for their properties, they will always have a consistent presentation display because they will be rendered through the Page Design Sheet. The XWiki API available in scripting languages provides a mechanism that will help us use the same sheet for both editing and view modes. We will see how we can achieve this once we get to the FAQ Design Sheet section.
25
26 1.1 Get Set with the Class Editor Wizard
27
28 Five pages have been developed which collectively make up a Class Editor Wizard application that can assist you in this process. Your first task is to see if you have these pages in your XWiki already. If so, you'll make a link to the wizard app so that you can always access it easily from an administrative page. If you do not have all five pages of the wizard, you'll need to make the missing pages using code provided by this tutorial.
29
30 * Enter a search query for the keyword "XWikiClasses". This should return a document called XWikiClasses in the XWiki space (i.e. XWiki.XWikiClasses). This is the first of the five pages that make up the wizard and it is the main entry page to the wizard application.
31 * Take a moment to bookmark this page or, even better, create a link to it from an administrative page so you can access it more easily in the future.
32 * Navigate to the XWiki.XWikiClasses page.
33
34 Now, you just need to verify that you have the other four pages that make up the wizard app and create them if you do not. Check if the following classes are listed on the XWikiClasses page:
35
36 * ClassSheet
37 * ClassTemplate
38 * ClassItemSheet
39 * ClassItemTemplate
40
41 If they're not showing up or if they are showing up but with question marks, you do not have the pages in your XWiki database.
42 You can either use this provided {attach:ClassWizard.xar} to import the documents in your wiki (see the [Import guide> AdminGuide.ImportExport#HImportingXWikipages] in the XWiki Administration Guide for details on this operation) or copy the page contents from the links below and paste them into the respective pages in your XWiki instance (create them as children of the XWikiClasses page) to ensure that you have all the parts that make up the wizard:
43
44 * Get the [XWikiClasses>http://www.xwiki.org/xwiki/bin/view/XWiki/XWikiClasses?viewer=code&showlinenumbers=0] page code.
45 * Get the [ClassSheet>http://www.xwiki.org/xwiki/bin/view/XWiki/ClassSheet?viewer=code&showlinenumbers=0] page code
46 * Get the [ClassTemplate>http://www.xwiki.org/xwiki/bin/view/XWiki/ClassTemplate?viewer=code&showlinenumbers=0] page code.
47 * Get the [ClassItemSheet>http://www.xwiki.org/xwiki/bin/view/XWiki/ClassItemSheet?viewer=code&showlinenumbers=0] page code.
48 * Get the [ClassItemTemplate>http://www.xwiki.org/xwiki/bin/view/XWiki/ClassItemTemplate?viewer=code&showlinenumbers=0] page code.
49
50 Once you have all of these pages in place, you are ready to start building your FAQs application.
51
52 Keep in mind that you should always use the Wiki editing mode when editing scripts inside documents.
53
54 1.1 Create the FAQ Class
55
56 * On the Class Editor wizard entry page (XWiki.XWikiClasses), under the heading "Create a new Class", enter the following web space and class name:
57 ** Web: FAQs
58 ** Class: FAQ
59
60 {image:CreateANewClass.png}
61
62 * Click the "Create this Class" button. You should then see a code page with the following code:
63
64 {code:none}
65 ## replace Main with the Space where you want your documents to be created
66 ## replace the default parent with the one of your choice
67 ## Save this template using the ?Save? button
68 #set( $class = $doc.name.substring(0,$doc.name.indexOf("Class")))
69 #set($defaultparent = "XWiki.${class}Class")
70 #set($defaultweb = "Main")
71 #includeForm("XWiki.ClassSheet")
72
73 {code}
74
75 In the code, change the word "Main" with the name of the space where you want you FAQ pages to be created as the commented instructions in the page code suggest. Replace the word "Main" with the word "FAQs". The line of code should now look like this:
76
77 {code:none}
78 #set($defaultweb = "FAQs")
79
80 {code}
81
82 Click the "Save & View" button. The class is now created and you should the be looking at a page titled "Class: FAQClass" that looks like this:
83
84 {image:FAQClass1-border.png}
85
86
87 1.1 Add Properties to the Class
88
89 Under the page title, you should see the words "The first thing to do is to __Edit the Class__ to add properties to it." So, let's just follow those instructions!
90
91 * Click on the 'Edit the Class' link; a blank page will be displayed.
92 * Note that the link trail in the header is something like "Welcome to the Class Editor > FAQClass". Even though the page is blank, this shows you are indeed on the class page.
93
94 In our document, we'll store both a ~~question~~ and an ~~answer~~. So we need a property for each.
95
96 * Enter the text ~~question~~ in the Property Name field of the Class Editor panel (in the column on the right).
97 * Choose a TextArea type for the property and then click the 'Add Property' button. The TextArea will ultimately give us a multi-line text field in our authoring template.
98 * Configure this property with the following values (actually, if you are using the current XWiki version, you don't need to change anything else but the Pretty name – all the rest are the default values):
99
100 {image:QuestionProperty.png}
101
102 * Now add a property called ~~answer~~ in the same way that you did for the 'question' property (choosing TextArea for the property type).
103 * Choose it from the property list on the left and configure this property with the same values as the "question" property, except for the ~~name~~ and ~~pretty name~~ which will, obviously, match the new property we're creating.
104 * When you are done adding and configuring the properties, click the 'Save & View' button.
105
106
107 1.1 Create the Page Design Sheet
108
109 * After the previous step you are now on the FAQClass page which should look like this:
110
111 {image:FAQClass1.png}
112
113 * Click the first button to create the document sheet (the Page Design Sheet). This sheet determines how your page objects will be rendered to the user. You should see the following page code for the document sheet:
114
115 {code:none}
116
117 11. You can modify this page to customize the presentation of your object
118 11. at first you should keep the default presentation.
119 11. Save this template using the save button.
120
121 1 Document $doc.name
122
123 ## Change class name to your class name
124 #set($class = $doc.getObject("XWiki.MyClass").xWikiClass)
125 #set($hasProps = false)
126 #foreach($prop in $class.properties)
127 #if($velocityCount == 1)
128 #set($hasProps = true)
129 <dl>
130 #end
131 <dt> ${prop.prettyName} </dt>
132 <dd>$doc.display($prop.getName())</dd>
133 #end
134 #if($hasProps)
135 </dl>
136 #end
137 {code}
138
139 * Change the class name ~~XWiki.MyClass~~ in the code to ~~FAQs.FAQClass~~ so that the line looks like this:
140
141 {code:none}
142 ## Change class name to your class name
143 #set($class = $doc.getObject("FAQs.FAQClass").xWikiClass)
144 {code}
145
146 * Let's take a moment now and analyze the code: with the line we just modified we retrieve the FAQs.FAQClass from the wiki and then we iterate through all its properties and display their values for the current document in a definition list. As we mentioned, XWiki provides a mechanism that help us create sheets used for both view and edit mode: this is the display function used in the line: {code:none}<dd>$doc.display($prop.getName())</dd>{code} It detects the current mode (edit or view) and displays the property referenced by it's argument as the mode dictates: for view, it is the value of the property, for edit it is a form field that will allow the user to edit it. This way we can use a single Design Sheet for both displaying and editing our FAQs. See the [XWiki API reference > DevGuide.API] and [XWiki Scripting > DevGuide.Scripting] pages for more details.
147
148 * Click 'Save & View'.
149
150 1.1 Create the Authoring Template
151
152 * Search for the keywords 'FAQs.FAQClass' and click on the document to open it in XWiki again, or click the FAQClass in the breadcrumbs. The document should look like this:
153
154 {image:FAQClass2.png}
155
156 * Notice that now, there is a link for the FAQClassSheet in place of the button that was previously there.
157 * Click on the 'Create the document template' button. The Authoring Template will be created with the following page code:
158
159 {code:none}
160 ## Replace MyName with the real class name.
161 ## Save this template using the save button.
162 #includeForm("XWiki.MyNameClassSheet")
163 {code}
164
165 * As the comments instruct, change the words ~~MyName~~ with ~~FAQ~~ so that instead of having ~~XWiki.MyNameClassSheet~~, you will have ~~FAQs.FAQClassSheet~~. In this case, we changed the space preceding the page name also because we want all of our FAQ page objects to reside in a unique wiki web space.
166 * Click 'Save & Continue' to save the document. Remember that all our documents will be copies of the Authoring Template used as a prototype so the content we just saved will be copied in all our FAQs documents and will execute the Design Sheet code in the context of the current document. See the [dedicated page > DevGuide.IncludeInVelocity] for more information regarding this technique.
167 * Now, we need to associate the prototype object with this document to turn it into a true authoring template.
168 * On the right side, in the Choose editor list, click ~~Objects~~.
169 * In the Add Object panel on the right, select FAQs.FAQClass from the drop-down and then click 'Add Object from this Class'. The ~~Question~~ and ~~Answer~~ form fields appear on the page.
170 * Click 'Save & View'. Congratulations; You just created an Authoring Template!
171 * Click the FAQs.FAQClass link in the header breadcrumb trail. As you can see, you are almost done!
172
173 {image:FAQClass3.png}
174
175 1.1 Test the Application
176
177 Now let's just create a new document in our application to test it out.
178
179 * Under the "Create a new document" header, enter a document title in the ~~Document~~ field and click ~~Create~~. For example, enter ~~What is the meaning of life?~~.
180 * You can then enter your question in longer form using the ~~Question~~ field on the template, like this:
181
182 {image:FAQSheetEdit.png}
183
184 * Click ~~Save & View~~ and then you will see the newly created document, like this:
185
186 {image:FAQSheetView.png}
187
188 * Open the FAQClass document again. You can now see that the FAQ documents you are creating will build in a list on the main entry page to the application, like this:
189
190 {image:FAQClass4.png}
191
192 1.1 Displaying the FAQ Questions as summary
193
194 If you want to display the FAQ question instead of the FAQ document name in the summary area, you can proceed as follow:
195 * Edit the content of the FAQs.FAQClass page
196 * Replace the #\include\Form("XWiki.ClassSheet") with the content of the XWiki.ClassSheet (go to the XWiki.ClassSheet, edit the content and paste it instead of the #\includeForm command
197 * Then, after the {code:none}#foreach ($item in $xwiki.searchDocuments($sql)){code} command add the following line {code:none}#set ($faq=$xwiki.getDocument(${item})){code} and replace the {code:none}[$item]{code} with {code:none}[${faq.display("question")}>${item}]{code} The line we added retrieves the document using the document name while the line we replaced displays the "question" property for the document instead of the document name.
198 * Click "Save & View" and enjoy your new FAQ application.
199
200
201 1.1 Finally, link to the FAQs.FAQClass page
202
203 We don't want our users to have to search for this page using the search engine, so finally pick a spot on your Wiki and make a user-friendly link to FAQs.FAQClass. For example:
204
205 {code:none}
206 [Frequently Asked Questions (FAQs) > FAQs.FAQClass]
207 {code}
208
209
210
211 1.1 Conclusion
212
213 This tutorial has shown how to use the Class Wizard app and it has detailed the concepts of classes, objects, properties and introduced the authoring templates and page design sheets. You may also have learned a little bit about Velocity scripting in documents. You can use these basic concepts to build custom applications at the document or presentation layer of XWiki without having to compile or deploy code.
214
215 As always, please take the time to make this document better for other users if you find ways that it can be improved as you read it for the first time.

Get Connected