Wiki source code of FAQTutorialManual

Version 5.1 by Vincent Massol on 2007/12/06

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>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. In addition to the data model, this tutorial will introduce 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.
4
5 1.1 Application Overview
6
7 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.
8
9 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.)
10
11 * The FAQs Summary View
12 * A Question and Answer Page in Display Mode
13 * A Question and Answer Page in Edit Mode
14
15 1.1 Authoring Templates and Page Design Sheets
16
17 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. Each form field can have different types of form elements. These form elements are defined by the properties of a class.
18
19 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.
20
21 ~~In this sample application, a new document is created and the object instance is automatically added to the new document. So, in truth, objects in XWiki are not really documents; they are added to a document. Once an object is added to a document, it's properties can easily be accessed by scripting in that document's content.~~
22
23 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.
24
25 1.1 Get Set with the Class Editor Wizard
26
27 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.
28
29 * 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.
30 * 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.
31 * Navigate to the XWiki.XWikiClasses page.
32
33 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:
34
35 * ClassSheet
36 * ClassTemplate
37 * ClassItemSheet
38 * ClassItemTemplate
39
40 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. 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. Once you have all of these pages in place, you are ready to start building your FAQs application.
41
42 * Get the [XWikiClasses>http://www.xwiki.com/xwiki/bin/view/XWiki/XWikiClasses?xpage=code] page code.
43 * Get the [ClassSheet>http://www.xwiki.com/xwiki/bin/view/XWiki/ClassSheet?xpage=code] page code
44 * Get the [ClassTemplate>http://www.xwiki.com/xwiki/bin/view/XWiki/ClassTemplate?xpage=code] page code.
45 * Get the [ClassItemSheet>http://www.xwiki.com/xwiki/bin/view/XWiki/ClassItemSheet?xpage=code] page code.
46 * Get the [ClassItemTemplate>http://www.xwiki.com/xwiki/bin/view/XWiki/ClassItemTemplate?xpage=code] page code.
47
48
49 1.1 Create the FAQ Class
50
51 * On the Class Editor wizard entry page (XWiki.XWikiClasses), under the heading "Create a new Class", enter the following web space and class name:
52 ** Web: FAQs
53 ** Class: FAQ
54 * Click the "Create this Class" button. You should then see a code page with the following code:
55
56 {code:xml}
57 <!-- replace Main with the Space where you want your documents to be created -->
58 <!-- replace the default parent with the one of your choice -->
59 <!-- Save this template using the &#8217;Save&#8217; button -->
60 #\set( $\class = $\doc.name.substring(0,$\doc.name.indexOf("Class")))
61 #\set($\defaultparent = "XWiki.$\{class}Class")
62 #\set($\defaultweb = "Main")
63 #\include\Form("XWiki.ClassSheet")
64 {code}
65
66 * 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:
67
68 {code:xml}
69 #\set($\defaultweb = "FAQs")
70 {code}
71
72 * Click the "Save" button. The class is now created and you should the be looking at a page titled "Class: FAQClass" that looks like this:
73
74 {image:FAQClassDoc.gif}
75
76 1.1 Add Properties to the Class
77
78 Under the page title, you should see the words "The first thing to do is to <u>Edit the Class</u> to add properties to it." So, let's just follow those instructions!
79
80 * Click on the 'Edit the Class' link; a blank page will be displayed.
81 * Note that the link trail in the header is something like "XWiki.XWikiClasses > FAQs.FAQClass". Even though the page is blank, this shows you are indeed on the class page.
82
83 In our document, we'll store both a ~~question~~ and an ~~answer~~. So we need a property for each.
84
85 * Enter the text ~~question~~ in the Property Name field of the Class Editor panel.
86 * 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.
87 * Configure this property with the following values:
88
89 {image:QuestionProperty.gif}
90
91 * Now add a property called ~~answer~~ in the same way that you did for the 'question' property (choosing TextArea for the property type).
92 * Configure this property with the following values:
93
94 {image:AnswerProperty.gif}
95
96 * When you are done adding and configuring the properties, click the 'Save Class' button.
97
98 1.1 Create the Page Design Sheet
99
100
101 * Search for the keywords 'FAQs.FAQClass' and click on the document to open it in XWiki.
102 * The title of the page should be "Class: FAQClass" and it should look like this:
103
104 {image:FAQClassSheet.gif}
105
106 * 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 in ~~read~~ mode. You should see the following page code for the document sheet:
107
108 {code:xml}
109 #\#\ you can modify this page to customize the presentation of your object
110 #\#\ at first you should keep the default presentation
111 #\#\ save this template using the save button at the top left
112
113 1\ Document $\doc.name
114
115 #\#\ Change class name to your class name
116 #\set($\class = $\doc.getObject("XWiki.MyClass").xWikiClass)
117
118 <table border="1" cellspacing="0" cellpadding="2">
119 #\foreach($prop in $class.properties)
120 <tr><td> *$\{prop.prettyName}* </td>
121 <td>$\doc.display($\prop.getName())</td>
122 </tr>
123 #\end
124 </table>
125 {code}
126
127 * Change the class name ~~XWiki.MyClass~~ in the code to ~~FAQs.FAQClass~~ so that the line looks like this:
128
129 {code:xml}
130 #\#\ Change class name to your class name
131 #\set($class = $doc.getObject("FAQs.FAQClass").xWikiClass)
132 {code}
133
134 * Click 'Save'.
135
136 1.1 Create the Authoring Template
137
138 * Search for the keywords 'FAQs.FAQClass' and click on the document to open it in XWiki again. The document should look like this:
139
140 {image:PageDesignSheetCreated.gif}
141
142 * Notice that now, there is a link for the FAQClassSheet in place of the button that was previously there.
143 * Click on the 'Create the document template' button. The template will be created with the following page code:
144
145 {code:xml}
146 #\#\ replace MyName with the real class name
147 #\#\ save this template using the save button at the top left
148 #\include\Form("XWiki.MyNameClassSheet")
149 {code}
150
151 * 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.
152 * Click 'Save' to save the page object.
153 * Now the saved page object (the authoring template) should show the page title "Document FAQClassTemplate". Now, we need to associate the class object with this page object to turn it into a true authoring template.
154 * Click 'More Actions > Edit Objects'.
155 * In the Object Editor panel, 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.
156 * Click 'Save Objects'. Congratulations; You just created an Authoring Template!
157 * Click the FAQs.FAQClass link in the header breadcrumb trail. As you can see, you are almost done!
158
159 {image:MakingProgress.gif}
160
161 1.1 Test the Application
162
163 Now let's just create a new document in our application to test it out.
164
165 * Enter a document title in the ~~Document~~ field and click ~~Create~~. For example, enter ~~'What is the meaning of life'~~. Don't use a question mark in the document name.
166 * You can then enter your question in longer form using the ~~question~~ field on the template, like this:
167
168 {image:FirstQuestion.gif}
169
170 * Click ~~Save~~ and then you will see the newly created document, like this:
171
172 {image:FirstQuestion2.gif}
173
174 * Search for 'FAQ' to find the FAQClass document again and click to open it. 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:
175
176 {image:Final.gif}
177
178 1.1 Displaying the FAQ Questions as summary
179
180 If you want to display the FAQ question instead of the FAQ document name in the summary area, you can proceed as follow:
181 * Edit the content of the FAQs.FAQClass page
182 * Replace the #\include\Form("XWiki.ClassSheet") with the content of the XWiki.ClassSheet (go to the XWiki.ClassSheet, edit the content and past it instead of the includeForm command
183 * After the #\foreach($\item in $\xwiki.searchDocuments($\sql)) command add the following line <br/> #\set ($\faq=$\xwiki.getDocument($\{item})) and replace the {code: xml}[\$\{item}]{code} with {code: xml}[\$\{faq.display("question")}>$\{item}]{code}
184
185 1.1 Finally, link to the FAQs.FAQClass page
186
187 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:
188
189 {code:xml}
190 *\ [\Frequently Asked Questions (FAQs) > FAQs.FAQClass]
191 {code}
192
193 1.1 Conclusion
194
195 This tutorial has shown how to use the Class Wizard app and it has introduced the concepts of classes, objects, properties, 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.
196
197 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