Wiki source code of Best Practices

Version 3.2 by Silvia Macovei on 2010/02/26

Hide last authors
Silvia Macovei 3.2 1 {{toc/}}
Vincent Massol 1.1 2
Silvia Macovei 3.2 3 = XWiki Application Organization =
Vincent Massol 1.2 4
Silvia Macovei 3.1 5 This [[Best Practices document>>Best Practices XWiki Application Organization]] explains how to best organize an XWiki Application.
Ludovic Dubost 2.1 6
Silvia Macovei 3.2 7 = Check for Object existence in Class Sheets documents =
Vincent Massol 1.1 8
Vincent Massol 1.3 9 Class sheet documents should be written using the following construct (this is an example for displaying documents containing XWiki.XWikiUsers objects):
Vincent Massol 1.1 10
Silvia Macovei 3.1 11 {{code}}
Vincent Massol 1.5 12 #set($obj = $doc.getObject("XWiki.XWikiUsers"))
Vincent Massol 1.4 13 #if(!$obj)
14 1 User Sheet
Vincent Massol 1.3 15 This stylesheet must be applied on a document containing a XWiki.XWikiUsers object.
Vincent Massol 1.4 16 #else
17 1 $msg.get("userProfile", [$xwiki.getUserName($doc.fullName, false)])
Vincent Massol 1.3 18 ...
Vincent Massol 1.4 19 #end
Silvia Macovei 3.1 20 {{/code}}
Vincent Massol 1.1 21
Silvia Macovei 3.1 22 {{info}}The 'if' tests first for the non existence. This is so that XWiki extract the title from the //1 User Sheet//, which is a proper title to display when viewsing the sheet page, instead of the computed name which will usually display something wrong.{{/info}}

Get Connected