Wiki source code of Skins

Version 13.6 by Sorin Burjan on 2011/04/13

Show last authors
1 {{velocity}}
2 $xwiki.ssx.use($doc.fullName)
3 {{/velocity}}
4
5 (% class="floatinginfobox" %)
6 (((
7 **Contents**
8
9 {{toc depth="3" start="2"/}}
10 )))
11
12 = XWiki Skins =
13
14 == How to create a new Skin ==
15
16 {{warning}}
17 To create a new Skin, you must have access to the server side of the XWiki Enterprise instance.
18 {{/warning}}
19
20 To create a new Skin, you have to create a new direcory inside the webapps/xwiki/skins folder and then add Velocity templates,CSS stylesheets, Javascript files and images inside it. For example, if you want to remove the logo from the header of the pages, follow these steps:
21
22 1. Inside the webapps/xwiki/skins folder, create a folder named myskin. Copy all files from webapps/xwiki/skins/colibri folder into your new skin directory.
23 1. Change the Skin at global or instance level and set it as myskin ( see [[this>>AdminGuide.Skins]] page for more informations about how to change the Skin )
24 1. Open any page in view mode and you will notice that myskin layout is the same as the colibri layout (if the skin changes to albatross means that your theme wasn't used. Check the names of your skin directory. Note that skin names are case-sensitive)
25 1. Change the global template:
26 1*. to remove the logo, modify the global.vm template under the new Skin and delete the line:(((
27 {{code language="html"}}
28 <img src="$!logourl" alt="Wiki Logo"/>
29 {{/code}}
30 )))
31 1. Save the template
32
33 Open any page in view mode and you will notice that the XWiki logo is not displayed anymore. Congratulations! You have created a new minimal XWiki Skin.
34
35 == How to override a Skin ==
36
37 {{warning}}
38 To change the Skin, the user must have administrating rights. In the case that you have these rights, make sure that you switch to the Advanced mode in your profile, to enable the advanced options on the top main menu.
39 {{/warning}}
40
41 An alternative for creating a new Skin is the possibility to override an existing Skin. The advantage of overriding an existing Skin is the fact that you don't need access to the server filesystem in order to modify the files used by the current Skin.
42 To override a Skin, you have to use the same document that is used to store the Skin.
43 {{id name="5a"/}}
44
45 === A. Creating a Skin document ===
46
47 {{warning}}
48 You need to have the **advance edition mode** activated to access the object editor. Please refer to [[platform:Features.PageEditing]] for more information.
49 {{/warning}}
50
51 To create a new Skin document, follow these steps:
52
53 |(% style="width: 60%; color: rgb(34, 34, 34);" %)(((
54 1. create a new page - if there is the option (% class="sectionblockcodecolored" %)CREATE -> PAGE(%%) on the main menu, use it to create a page, or, if there is no such option, add the (% class="sectionblockcodecolored" %)New Page(%%) panel on the interface by following these steps:
55 1*. go to (% class="sectionblockcodecolored" %)Administration -> Panel Wizard
56 1*. select the (% class="sectionblockcodecolored" %)Tools(%%) category
57 1*. add the (% class="sectionblockcodecolored" %)New Page(%%) panel on the interface by using drag&drop
58 1*. click on (% class="sectionblockcodecolored" %)Save the new layout(%%) to save your changes
59 1*. open any page in view mode and
60 1*. use the (% class="sectionblockcodecolored" %)New Page(%%) panel to create a page
61 1. edit the document's objects ( if you are in (% class="sectionblockcodecolored" %)edit(%%) mode, use the right panel and choose the (% class="sectionblockcodecolored" %)Objects(%%) editor, or, if you are in (% class="sectionblockcodecolored" %)view(%%) mode, use the top-left menu: (% class="sectionblockcodecolored" %)EDIT{{html}}&nbsp;->&nbsp;{{/html}}OBJECTS(%%))
62 1. add an object of type (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) to the document (use the **ADD OBJECT** panel from the right and select the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) class, then click on (% class="sectionblockcodecolored" %)ADD OBJECT FROM THIS CLASS(%%))
63 1. save the document
64 )))|(((
65 [[[[image:4.png||style="border: 3px solid rgb(221, 221, 221);" width="100%"]]>>attach:4.png]]
66 )))
67
68 {{id name="5b"/}}
69
70 === B. Working with the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) class ===
71
72 The base element in overriding a Skin is the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) class ( http://localhost:8080/xwiki/bin/view/XWiki/XWikiSkins ). In order to modify the templates or the files used by a Skin, you have to work with the properties of this class.
73 By default, the Skin class contains a set of properties that allows you to override some of the templates and files used by the Skin, and it also allows you to set the name of the logo displayed in the header of the interface.
74 To override other templates or files, you have to add new properties to the Skin class. For example, if you want to override (% class="sectionblockcodecolored" %)myfile.vm(%%) ( or myfile.css, or myfile.js ), follow these steps:
75
76 |(% style="width: 60%; color: rgb(34, 34, 34);" %)(((
77 1. go to the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) document
78 1. click on the (% class="sectionblockcodecolored" %)add or modify the class properties(%%) link
79 ( or follow this link: http://localhost:8080/xwiki/bin/edit/XWiki/XWikiSkins?editor=class )
80 1. from the **ADD PROPERTY** panel in the right, set the name of the property as being (% class="sectionblockcodecolored" %)myfile.vm(%%), choose the (% class="sectionblockcodecolored" %)TextArea(%%) type, and click on (% class="sectionblockcodecolored" %)Add
81 1. save the document
82 )))|(((
83 [[[[image:5.png||style="border: 3px solid rgb(221, 221, 221);" width="100%"]]>>attach:5.png]]
84 )))
85
86 {{id name="5c"/}}
87
88 === C. Using a Skin document ===
89
90 To use a Skin document, follow these steps:
91
92 1. go to the (% class="sectionblockcodecolored" %)Skin(%%) property from inside the (% class="sectionblockcodecolored" %)Administration(%%) interface
93 1. set the value of the property as being the full name of the Skin document
94 1. save the preferences
95
96 {{id name="5d"/}}
97
98 === D. Overriding the Skin components ===
99
100 Let's add a "HELLO," before the username on the top right menu, not by modifying the (% class="sectionblockcodecolored" %)global.vm(%%) template on the server, but overriding it inside the Skin document. Follow these steps:
101
102 ==== Method 1: By editing the XWiki.XWikiSkins properties on the Skin document ====
103
104 |(% style="width: 60%; color: rgb(34, 34, 34); overflow-x: auto;" %)(((
105 1. add a (% class="sectionblockcodecolored" %)TextArea(%%) property named (% class="sectionblockcodecolored" %)global.vm(%%) to the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) class
106 1. edit the Skin document's objects ( use the top-left menu: (% class="sectionblockcodecolored" %)EDIT -> OBJECTS(%%) ) and open the properties of the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) object
107 1. copy the original content of the (% class="sectionblockcodecolored" %)global.vm(%%) template and paste it in the property field named (% class="sectionblockcodecolored" %)global.vm(%%); if you don't have access to the server filesystem, open the template by following one of these links:
108 1*. http://localhost:8080/xwiki/skins/mybaseskin/global.vm ( where mybaseskin is the current Skin used in the Skin document ), or
109 1*. if the previous link is not valid, go to http://localhost:8080/xwiki/templates/global.vm
110 1. replace the following code:(((
111 {{code language="xml"}}
112 <a class="glink"
113 href="$!xwiki.getURL($context.user, 'view')"
114 id="headeruser">
115 $!xwiki.getUserName($context.user, false)
116 </a>
117 {{/code}}
118 )))with(((
119 {{code language="xml"}}
120 <a class="glink"
121 href="$!xwiki.getURL($context.user, 'view')"
122 id="headeruser">
123 HELLO,
124 $!xwiki.getUserName($context.user, false)
125 </a>
126 {{/code}}
127 )))
128 1. save the document
129 )))|(((
130 [[[[image:6.png||style="border: 3px solid rgb(221, 221, 221);" width="100%"]]>>attach:6.png]]
131 )))
132
133 ==== Method 2: By attaching files to the current Skin document ====
134
135 1. create a copy of the global.vm template; if you don't have access to the server filesystem, open the template by following one of these links:
136 1*. http://localhost:8080/xwiki/skins/mybaseskin/global.vm ( where mybaseskin is the current Skin used in the Skin document ), or
137 1*. if the previous link is not valid, go to http://localhost:8080/xwiki/templates/global.vm
138 1. replace the following code inside the copy of global.vm template:(((
139 {{code language="xml"}}
140 <a class="glink"
141 href="$!xwiki.getURL($context.user, 'view')"
142 id="headeruser">
143 $!xwiki.getUserName($context.user, false)
144 </a>
145 {{/code}}
146 )))with(((
147 {{code language="xml"}}
148 <a class="glink"
149 href="$!xwiki.getURL($context.user, 'view')"
150 id="headeruser">
151 HELLO,
152 $!xwiki.getUserName($context.user, false)
153 </a>
154 {{/code}}
155 )))
156 1. attach the copy of global.vm template to the current Skin document page
157
158 Now, open any document in view mode and you will notice the nice "HELLO," before your username.
159 Follow the same process in order to override (% class="sectionblockcodecolored" %)Javascript(%%) and (% class="sectionblockcodecolored" %){{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}}(%%) files ( http://localhost:8080/xwiki/skins/colibri/myfile.css ).
160
161 ==== 3. Overriding a skin resource ====
162
163 Just like templates, resource files such as images or css/js files can be overridden. To do that, the replacement must be attached to the Skin document, making sure it complies with the naming convention explained below. To find out the right name for your replacement resource, here is the trick:
164
165 1. find the path on the filesystem of the resource to replace (you can easily obtain that information using development tools such as [[Firebug>>http://getfirebug.com/]]); for instance, let's say this path is either
166 {{code}}/xwiki/resources/icons/silk/myicon.gif{{/code}}
167 for a resource found in the general resource directry, or
168 {{code}}/xwiki/skins/colibri/myimage.png{{/code}}
169 if the resource is specific to a certain skin, in this case 'colibri'.
170 1. strip from this path everything from the beginning until 'resources/' or the name of the skin, included; in the previous examples, you will obtain in the first case
171 {{code}}icons/silk/myicon.gif{{/code}}
172 and in the second case simply
173 {{code}}myimage.png{{/code}}
174 1. in this path, replace '/' with '.'; after this operation, we will get {{code}}icons.silk.myicon.gif{{/code}} for the first image example, while the second one remains unchanged. **This is the name of the file corresponding to the resource that you need to attach to the Skin document in order to make the replacement**.
175 1. create a file named as explained above and attach it to your Skin
176
177 {{info}}
178 **Technical note**: This trick works for any resource whose URL is generated in the skin by the {{code}}$xwiki.getSkinFile(){{/code}}, {{code}}$xwiki.jsfx(){{/code}} or {{code}}$xwiki.ssfx(){{/code}} methods, for instance like this:
179
180 {{code language="none"}}
181 .infomessage {
182 background-image: url("$xwiki.getSkinFile('icons/silk/information.gif')");
183 }
184 {{/code}}
185
186 In this case, {{code}}$xwiki.getSkinFile('icons/silk/information.gif'){{/code}} will first search for an image called 'icons.silk.information.gif' attached to the configured Skin document, if any. If that image exists, it will generate its URL. Otherwise, it will continue to search for 'icons/silk/information.gif' in the base skins and finally in the general 'resources/' directory.
187 {{/info}}
188
189
190 {{id name="5e"/}}
191
192 === E. Adding new components to the Skin ===
193
194 If you want to add new files to the skin, like (% class="sectionblockcodecolored" %){{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} (%%) or (% class="sectionblockcodecolored" %)Javascript(%%) files, you have two options:
195
196 * attach the files to the Skin document and reffer them by their URL, or
197 * add new properties to the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) object from inside the Skin document, and refer them by their name
198
199 For example, if you want to add a new {{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} file to the Skin, named (% class="sectionblockcodecolored" %)mynewfile.css(%%), follow one of these set of steps:
200
201 |(% style="width: 60%; color: rgb(34, 34, 34);" %)(((
202 1. attach the {{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} file to the Skin document
203 1. override the stylesheets.vm template ( check the section [[D>>#5d]] to learn how to override a Skin component ), and add the reference to your file in the template:(((
204 {{code language="xml"}}
205 <link rel="stylesheet"
206 type="text/css"
207 href="$xwiki.getSkinFile('mynewfile.css')"
208 />
209 {{/code}}
210 )))
211 1. save the document
212 )))|(((
213 [[[[image:7.png||style="border: 3px solid rgb(221, 221, 221);" width="100%"]]>>attach:7.png]]
214 )))
215
216 OR
217
218 |(% style="width: 60%; color: rgb(34, 34, 34);" %)(((
219 1. add a new property to the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%), name it (% class="sectionblockcodecolored" %)mynewfile.css(%%) ( check the section [[B>>#5b]] for more information about how to work with this class ), edit the Skin document's objects ( use the top-left menu: (% class="sectionblockcodecolored" %)EDIT -> OBJECTS(%%) ), and paste the {{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} code into the (% class="sectionblockcodecolored" %)mynewfile.css(%%) field
220 1. override the (% class="sectionblockcodecolored" %)style.css(%%) component ( see the section [[D>>#5d]] for more information about how to override a Skin compoment ) and add the following line to the content of the (% class="sectionblockcodecolored" %)style.css(%%) property:(((
221 {{code language="css"}}
222 @import "mynewfile.css";
223 {{/code}}
224 )))the important thing is to add a reference to the new component from a existing one; you must know most of the components content, so that you will take the best decision about which existing component will contain a reference to the new one
225 1. save the document
226 )))|(((
227 [[[[image:8.png||style="border: 3px solid rgb(221, 221, 221);" width="100%"]]>>attach:8.png]]
228 )))
229
230 Open any document in view mode and you will notice that the stylesheet is now applied.
231
232 {{id name="5f"/}}
233
234 === F. Using (% class="sectionblockcodecolored" %)images(%%) in a Skin document ===
235
236 {{id name="5f1"/}}
237
238 ==== 1. Changing the (% class="sectionblockcodecolored" %)logo(%%) ====
239
240 For example, if you want to add an image named (% class="sectionblockcodecolored" %)myimage.jpg(%%) as being the logo for the current Skin, follow these steps:
241
242 1. attach the image to the Skin document
243 1. edit the document's objects ( use the top-left menu: (% class="sectionblockcodecolored" %)EDIT -> OBJECTS(%%) )
244 1. use the (% class="sectionblockcodecolored" %)XWiki.XWikiSkins(%%) object and set the (% class="sectionblockcodecolored" %)Logo(%%) property as being the name of the attached image: (% class="sectionblockcodecolored" %)myimage.jpg
245 1. save the document
246
247 Open any page in view mode and you will notice that the logo is now changed.
248
249 {{id name="5f2"/}}
250
251 ==== 2. Adding images to the Skin interface ====
252
253 To add images to the interface, attach them to the Skin document and use them in the {{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} code. For example, if you want to use (% class="sectionblockcodecolored" %)myimage.jpg(%%) as background image for the pages inside your XWiki Enterprise instance, follow these steps:
254
255 1. attach the image to the Skin document
256 1. choose one of these actions:
257 1*. add a new {{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} component to the Skin, name it (% class="sectionblockcodecolored" %)pagebackground.css(%%) and add a reference to it from the (% class="sectionblockcodecolored" %)style.css(%%) component ( see the section [[E>>#5e]] for more information about how to add new components to the Skin )
258 1*. override the (% class="sectionblockcodecolored" %)mybaseskin.css(%%) component ( where mybaseskin is the name of the current Skin - for example: (% class="sectionblockcodecolored" %)albatross.css(%%), (% class="sectionblockcodecolored" %)toucan.css(%%) or (% class="sectionblockcodecolored" %)colibri.css(%%) )
259 1. paste the following code inside the {{html}}<acronym title="Cascading Style Sheets">CSS</acronym>{{/html}} component:(((
260 {{code language="css"}}
261 body{
262 background-image: url($xwiki.getSkinFile("myimage.jpg"));
263 }
264 {{/code}}
265 )))
266
267 Open any page in view mode and you will notice that the the background of the page contains your image.
268 Have fun taking advantage of the power of XWiki Skins!
269
270 == More about XWiki Skins ==
271
272 In order to find more about XWiki Skins, check the [[Skins Tutorial>>AdminGuide.Skins]] from inside the Admin Guide and the [[Skins Tutorial>>Features.Skins]] from inside the User Guide
273
274 == Further reading ==
275
276 * the [[XWiki Data Model>>http://platform.xwiki.org/xwiki/bin/view/DevGuide/DataModel]]
277 * using the [[Skin Editor Application>>extensions:Extension.Skin Editor Application]]
278 * [[edit only one object>>http://dev.xwiki.org/xwiki/bin/view/Drafts/EditOneObject]]

Get Connected