Wiki source code of Skin Extension Tutorial

Version 18.6 by Sergiu Dumitriu on 2011/11/02

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 This tutorial demonstrates how to write a XWiki Skin Extension.
6
7 {{velocity}}
8 ## $xwiki.ssx.use("$doc.fullName") ## Load the SSX object held in this document
9 {{/velocity}}
10
11 = Introduction to XWiki Skin Extensions =
12
13 XWiki Skins eXtensions (abbreviated as **SX**) is a mechanism available in XWiki that allows to customize the layout of your wiki, or just some pages of your wiki, without the need of changing its skin templates and/or stylesheets. For this, the [[Skin Extension plugin>>extensions:Extension.Skin Extension Plugin]] (bundled in all XWiki Enterprise versions superior to 1.5) provides the ability to send to the browser extra JavaScript and CSS files that are not part of the actual skin of the wiki. The code for these //extensions// is defined in [[wiki objects>>platform:DevGuide.DataModel]].
14
15 This tutorial assumes that you already have basic knowledge of application development with XWiki. If this is not the case, we strongly advise you to start with the [[FAQ application tutorial>>platform:DevGuide.FAQTutorial]] or the [[TODO application tutorial>>http://www.theserverside.com/tt/articles/article.tss?l=XWiki]].
16 To illustrate usage of Skin Extension in XWiki, this tutorial will guide you through the creation of minimal JavaScript and StyleSheet working extensions. Then, will push it further to build a fully functional extension based on Natalie Downe's [[addSizes.js>>http://natbat.net/2008/Aug/27/addSizes/]] script.
17
18 A minimal [[JavaScript>>http://en.wikipedia.org/wiki/JavaScript]] and [[CSS>>http://en.wikipedia.org/wiki/CSS]] knowledge is also needed to take full advantage of XWiki Skin Extensions, although expert knowledge in those fields is not needed to follow the tutorial.
19
20 {{info}}
21 If you are interested by the Skin eXtension mechanism itself and its internals, you should read its [[plugin page>>extensions:Extension.Skin Extension Plugin]], and its [[design page on dev.xwiki.org>>dev:Design.Skin Extensions]]. This tutorial does not address this topic. Or, since this is an Open Source project, feel free to {{scm path="xwiki-platform-core/xwiki-platform-skin/xwiki-platform-skin-skinx"}}browse the code{{/scm}}, and [[propose enhancements or improvements>>dev:Community.Contributing]].
22 {{/info}}
23
24 = My first Skin eXtension =
25
26 Skin eXtensions are defined as [[XWiki Objects>>platform:DevGuide.DataModel#HXWikiClasses2CObjects2CandProperties]]. As a consequence, you can create them from your browser. Two types of extensions are currently supported: JavaScript eXtensions (incarnated by XWiki objects of class **XWiki.JavaScriptExtension**), and StyleSheet eXtensions (incarnated by XWiki objects of class **XWiki.StyleSheetExtension**). The very first step to create an eXtension is then... to create its object!
27
28 == Minimal JavaScript eXtension ==
29
30 === Creating an eXtension object ===
31
32 Point your wiki on the page you want to create your extension in, and edit it with the object editor. The page itself can be any XWiki page - an existing page or a new page. I use in this example the page **XWiki.MyFirstJavascriptExtension**. From the **Add Object** panel of the object editor choose **XWiki.JavaScriptExtension** in the Class selector menu. Then, click the "Add Object from this class" button.
33
34 [[image:CreateJSXObject.png]]
35
36 {{info}}
37 The object editor is available only to [[advanced users>>platform:Features.PageEditing#HSimpleandAdvancededitionmodes]].
38 {{/info}}
39
40 Once the page is loaded, you should see your extension object in the object list.
41
42 === Writing the eXtension ===
43
44 Now that the object is available, we can just start writing the actual eXtension. For this, we will fill in all the fields of the created object. The first one is the extension name. This is easy! We can just say here **My First JavaScript eXtension** (this information is only descriptive, it is not actually used by the SX plugin). The next field name is **code**, and this is where we will write the javascript code we want our extension to execute. This eXtension is supposed to be minimalist, so let's write something very basic here: a traditional greeting alert ;)
45
46 {{code}}
47 alert("World, Hello from JSX !");
48 {{/code}}
49
50 Now next field asks us if we want this extension to be used **Always** or **On Demand**. We will explore all the differences between those two modes later in the tutorial, let us for now just precise we want it **On Demand**, which will force us to call the eXtension explicitly to see it executed.
51
52 Next thing our eXtension wants to know is if we want its content being parsed or not. This option allows to write **[[velocity code>>platform:DevGuide.Scripting]]**, for example to dynamically generate the javascript code to be executed. We did not write any velocity, so we can just say **No**. We will see later on an example of an extension with parsed content.
53
54 Finally, we can precise a **caching policy**, to tune the HTTP headers that will be returned with the generated javascript file. Let's not go wild, and chose the **default** one here :)
55
56 That's it ! our eXtension is production-ready ! It should by now look like the following :
57
58 [[image:MyFirstJSX.png]]
59
60 //Note: the "code" area size has been intentionally reduced for this Screenshot.//
61
62 === Testing the actual extension ===
63
64 Let's now test the whole thing! Remember we chose that our extension should be used //on demand//? Well, that's what we are going to do right now. For this we will make a call to the [[Skin Extension plugin>>extensions:Extension.Skin Extension Plugin]]. We can do it for instance in the wiki content of our extension page, or any other page. For this, we edit the target page in Wiki mode, and write the following :
65
66 {{code}}
67 {{velocity}}
68 $xwiki.jsx.use("XWiki.MyFirstJavascriptExtension")
69 {{/velocity}}
70 {{/code}}
71
72 Of course, if you did not use this page name for your extension, you should adapt it. Click "Save and View", et voila ! If everything is fine, you should see the magic :
73
74 [[image:JSXMagic.png]]
75
76 You may have noticed that the javascript alert displays before the document is fully loaded in the browser. This is actually expected! If you look close at the generated sources, you will see that your extension has actually been added in the HTML header as any other **.js files** from the skin: (comments added for this tutorial)
77
78 {{code}}
79 <script type="text/javascript" src="/xwiki/skins/albatross/skin.js"></script>
80 <!-- [SNIP] here are all others javascript files from the skin -->
81 <script type="text/javascript" src="/xwiki/bin/skin/skins/albatross/scripts/shortcuts.js"></script>
82
83 <!-- And here is your JSX ! You can open its URL in a browser and see the code -->
84 <script type='text/javascript' src='/xwiki/bin/jsx/XWiki/MyFirstJavascriptExtension?lang=en'></script>
85 {{/code}}
86
87 == Minimal StyleSheet eXtension ==
88
89 Good, we wrote our first javascript extension. But, we see things big and we already are looking forward to modify the graphical appearance of wiki pages using those eXtensions. That's what **StyleSheet eXtensions** are meant for. And the good news is that it just work the same as javascript extensions, the only difference being that the code written is **CSS code**.
90
91 Create a new page named **XWiki.MyFirstStylesheetExtension**. In the object editor, go to the **Add Object** panel on your right and add an object of class **XWiki.StyleSheetExtension**. We will give it the name **My First StyleSheet extension**, give it a **default** cache policy, ask it not to parse the content, and write the following **code** :
92
93 {{code}}
94 #xwikicontent {
95 background-color: lightBlue;
96 }
97 {{/code}}
98
99 {{info}}
100 If you want to use the colors of your active ColorTheme you can check how to [[call those variables>>extensions:Extension.Color Theme Application#HUsingColorThemesvariables]].
101 {{/info}}
102
103 Now let's try something new with this eXtension. Instead of loading it "On Demand", we can ask to have it used **"Always on this wiki"**. For this to happen however, you need to save the extension document with [[programming rights>>platform:Features.RightsManagement]].
104 {{velocity}}## TODO change this link once a better description of the programming right is written.{{/velocity}}
105 Your StyleSheet eXtension should now look like the following :
106
107 [[image:MyFirstSSX.png]]
108
109 //Note: the "code" area size has been intentionally reduced for this Screenshot.//
110
111 It's time to test it. No need to call the SkinExtension plugin this time, this is the power of **Use Always** extensions, just click "Save and View" and see the SSX Magic. You can browse your wiki, all pages will be affected by your extension, for example the Main.WebHome page :
112
113 [[image:SSXMagic.png]]
114
115 Note: if you want to use StyleSheet extension on demand, the principle is the same as for javascript, except that the plugin name is **ssx**, not **jsx**. Just make your call like this, and you are done :
116
117 {{code}}
118 {{velocity}}
119 $xwiki.ssx.use("XWiki.MyFirstStylesheetExtension")
120 {{/velocity}}
121 {{/code}}
122
123 {{info}}
124 A document can have as many **ssx** or **jsx** object as it needs, but a skin extension is identified by the name of the document, so in the end an extension is a document. The content of a skin extension is the concatenation of the objects in that document, so it's impossible to write two different extensions in a single document, only different parts of the same extension.
125 {{/info}}
126
127 = Real-world eXtension with addSizes.js =
128
129 Let's now go further with this idea, and build a complete extension that will dynamically add the file type and size next to certain links that are present in a wiki document. This extension will make usage of the **[[addSizes.js>>http://natbat.net/2008/Aug/27/addSizes/]]** script published by [[Natalie Downe>>http://natbat.net/]]. This Javascript snippet itself relies on **[[json-head>>http://simonwillison.net/2008/Jul/29/jsonhead/]]**, a Google App Engine application by [[Simon Willison>>http://simonwillison.net/]] which //"provides a JSON-P API for running [[HEAD requests>>http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.4]] against an arbitrary URL"//. addSizes.js consumes this service to dynamically add the file type and size next to links in HTML documents. And this is what we will do in our new eXtension, using the aforementioned script and service.
130
131 Our new skin extension will be composed of a javascript and a stylesheet extension. We will hold the two objects in the same wiki page, namely **XWiki.AddSizesExtension**.
132
133 The javascript extension will be in charge of, once the document is loaded, finding all the interesting links we want to decorate with sizes and file type icons, actually query for their size on the cloud, and finally inject this information next to each concerned link.
134
135 The stylesheet extension will just define the style we want for the extra size information that is injected next to the links.
136
137 The implementation below looks for the following file formats :
138
139 * OpenOffice.org Writer, Calc, and Impress (.odt, .ods, .odp)
140 * The most well known proprietary equivalents of the formats above
141 * Zip archives (.zip)
142 * PDFs (.pdf)
143
144 Of course, this can adapted to look for other formats that are relevant for your business :)
145
146 == Requesting and injecting files size with JSX ==
147
148 Our javascript extension will be composed of two code snippets. The second one will be the actual addSizes.js code, ported to work with Prototype instead of jQuery. The first one is a function needed by this portage.
149
150 AddSizes.js relies on the [[JSON with padding technique>>http://en.wikipedia.org/wiki/JSON#JSONP]] to query the **json-head** service, which is located on a different domain than the wiki, in a transparent manner. An alternative to this would be to have a similar service on the wiki itself (for example, in the [[groovy language>>platform:DevGuide.Scripting#HXWiki27sGroovyAPI]]), and query it using a traditional AJAX request. [[Prototype.js>>http://www.prototypejs.org]], the javascript framework bundled with XWiki, does not yet provide support for JSON-P requests. We will use for this a code snippet by [[Juriy Zaytsev>>http://thinkweb2.com/projects/prototype/]] written for this purpose. Let's first paste his code in a new **JSX** object, in **XWiki.AddSizesExtension** :
151
152 {{code}}
153 // getJSON function by Juriy Zaytsev
154 // http://github.com/kangax/protolicious/tree/master/get_json.js
155 (function(){
156 var id = 0, head = $$('head')[0], global = this;
157 global.getJSON = function(url, callback) {
158 var script = document.createElement('script'), token = '__jsonp' + id;
159
160 // callback should be a global function
161 global[token] = callback;
162
163 // url should have "?" parameter which is to be replaced with a global callback name
164 script.src = url.replace(/\?(&|$)/, '__jsonp' + id + '$1');
165
166 // clean up on load: remove script tag, null script variable and delete global callback function
167 script.onload = function() {
168 script.remove();
169 script = null;
170 delete global[token];
171 };
172 head.appendChild(script);
173
174 // callback name should be unique
175 id++;
176 }
177 })();
178 {{/code}}
179
180 With this, we can now have a prototype version of addSizes.js. We can just paste this second snippet under the first one in the **code** are of our extension object, or add a new JavaScriptExtension object to the page (as SX combines all the objects of the same page into a single response):
181
182 {{code}}
183 // addSizes was written by Natalie Downe
184 // http://natbat.net/2008/Aug/27/addSizes/
185 // ported to prototype.js by Jerome Velociter, and adapted to XWiki for this tutorial
186
187 // Copyright (c) 2008, Natalie Downe under the BSD license
188 // http://www.opensource.org/licenses/bsd-license.php
189
190 Event.observe(window, 'load', function(event) {
191 $('xwikicontent').select(
192 'a[href$=".pdf"], a[href$=".doc"], a[href$=".zip"], a[href$=".xls"], a[href$=".odt"], a[href$=".ods"], a[href$=".odp"], a[href$=".ppt"]]')
193 .each(function(link){
194 var bits = link.href.split('.');
195 var type = bits[bits.length -1];
196
197 var url = "http://json-head.appspot.com/?url="+encodeURIComponent (link.href)+"&callback=?";
198
199 getJSON(url, function(json){
200 var content_length = json.headers['Content-Length'];
201 if(!content_length) {
202 content_length = json.headers['content-length'];
203 }
204 if(json.ok && content_length) {
205 var length = parseInt(content_length, 10);
206
207 // divide the length into its largest unit
208 var units = [
209 [1024 * 1024 * 1024, 'GB'],
210 [1024 * 1024, 'MB'],
211 [1024, 'KB'],
212 [1, 'bytes']
213 ];
214
215 for(var i = 0; i < units.length; i++){
216
217 var unitSize = units[i][0];
218 var unitText = units[i][1];
219 if (length >= unitSize) {
220 length = length / unitSize;
221 // 1 decimal place
222 length = Math.ceil(length * 10) / 10;
223 var lengthUnits = unitText;
224 break;
225 }
226 }
227
228 // insert the text in a span directly after the link and add a class to the link
229 Element.insert(link, {'after':
230 ' <span class="filesize">(' + length + ' ' + lengthUnits + ')</span>'});
231 link.addClassName(type);
232 }
233 });
234 }); // each matched link
235 });
236 {{/code}}
237
238 This is it! At this point, the extension should be already functional. If you test it now, you should be able to see the size of links getting injected next to matching each link in the content of a wiki document.
239
240 We will now make this information looks nicer, and add an icon to represent the file type of the link, thanks to a stylesheet extension.
241
242 == Making it look nice with SSX ==
243
244 This time, we will take advantage of the **Parse** attribute of extensions that has been evoked upper in this tutorial. This way, we can be lazy and generate the CSS code using the velocity templating language, instead of writing a rule for each file format manually. Thanks to velocity and to the XWiki api, we will also be able to reference images attached to the extension document.
245
246 The class name that is added to each matching link by the JSX is actually the matching file extension itself (doc, pdf, etc.). Thus, we can then iterate over the extensions that we target, and generate a rule for each one of them. And more, if we name our icons with the convention of using the file extension, we can also reference the image within the same iteration.
247
248 You can [[download here>>attach:addSizesIcons.zip]] an archive with the set of icons used for this tutorial. The icons for MS products and for zip and pdf files are from the **[[Silk Icons Set>>http://www.famfamfam.com/lab/icons/silk/]]** by Mark James, under the [[Creative Commons Attribution 2.5 License>>http://creativecommons.org/licenses/by/2.5/]] license. To add the icons to your extension, just unzip the archive and attach them manually to your **XWiki.AddSizesExtension** document. Of course, you can also use your own set of icons. If you change the files name however, keep in mind you will have to adapt the stylesheet extension below.
249
250 Once you have the icons attached, create the stylesheet extension, set its parse attribute to **Yes**, and we go:
251
252 {{code language="velocity"}}
253 /* A little padding on the right of links for the icons to fit */
254 #foreach($ext in ["odt","ods","odp","doc","xls","ppt","pdf","zip"])
255 #xwikicontent a.${ext} #if($velocityCount < 8), #end
256 #end {
257 padding-right:20px;
258 }
259
260 /* Files icons as background for the links */
261 #foreach($ext in ["odt","ods","odp","doc","xls","ppt","pdf","zip"])
262 #xwikicontent a.${ext} {
263 background:transparent url($doc.getAttachmentURL("${ext}.png")) no-repeat scroll right center;
264 }
265 #end
266
267 /* Nice spans for file size information */
268 #xwikicontent span.filesize {
269 font-size: 0.6em;
270 background-color:lightYellow;
271 }
272 {{/code}}
273
274 When asked to serve the CSS file, XWiki will evaluate this code using its Velocity Rendering engine, and will return a file that contains pure CSS code!
275
276 == Testing the final eXtension ==
277
278 Ok, it's time for us to see the whole thing in action! The snippet below is intended to showcase the extension on its own wiki page. It request to the **jsx** and **ssx** plugins the use of the contained objects, and then give an example of all the supported links.
279
280 {{code}}
281 {{velocity}}
282 #set($void = $xwiki.jsx.use($doc.fullName))
283 #set($void = $xwiki.ssx.use($doc.fullName))
284 {{/velocity}}
285
286 * [[An OpenOffice.org Writer document>>http://pt.openoffice.org/coop/ooo2prodspeca4pt.odt]]
287 * [[A MS Word document>>http://www.microsoft.com/hiserver/techinfo/Insurance.doc]]
288 * [[An OOo Spreadshet>>http://documentation.openoffice.org/Samples_Templates/Samples/Business_planner.ods]]
289 * [[Link to a MS Excel document>>http://www.microsoft.com/MSFT/download/financialhistoryT4Q.xls]]
290 * [[An OOo Presentation>>http://pt.openoffice.org/coop/ooo2prodintroen.odp]]
291 * [[Link to a MS Powerpoint file>>http://research.microsoft.com/ACM97/nmNoVid.ppt]]
292 * [[A great archive>>http://maven.xwiki.org/releases/com/xpn/xwiki/products/xwiki-enterprise-jetty-hsqldb/2.0/xwiki-enterprise-jetty-hsqldb-2.0.zip]]
293 * [[A PDF file>>http://www.adobe.com/motion/pdfs/sjsu_fumi_ss.pdf]]
294 {{/code}}
295
296 Now there are two things to keep in mind :
297
298 * The browser must be able to reach the Internet, since the extension does need the help of the json-head service hosted on Google App Engine.
299 * As Natalie Downe [[wrote>>http://natbat.net/2008/Aug/27/addSizes/]], //"this may not be 100% reliable due to App Engine being occasionally and unavoidably flakey."//. You may for example experience a long loading time (but since the extension triggers only once the whole wiki document is loaded, this will not penalize the wiki users).
300
301 In a future extension of this tutorial, we will address those two issues writing our own version of the json-head service on the wiki itself, using the [[groovy programming language>>platform:DevGuide.Scripting]].
302
303 Enough talk, let us see the result !
304
305 [[image:AddSizesMagic.png]]
306
307 == Bonus: links to activate/deactivate the extension ==
308
309 [[image:bonus.gif]]
310
311 You can add this snippet in the wiki content of the extension document, and users with the programming right granted will be provided a link to activate or not the extension on all pages of the wiki :
312
313 {{code}}
314 {{velocity}}{{html}}
315 #if($xwiki.hasAccessLevel("programming",$context.user)) ## Only programmers should be able to change the loading type
316 ## otherwise, Always-used extensions will not work
317
318 #if($doc.getObject("XWiki.JavaScriptExtension").getProperty("use").value=="always")
319 #info("This extension is configured to be loaded on all the pages of this wiki.")
320
321 <span class=buttonwrapper>
322 <a href="$doc.getURL('save','XWiki.JavaScriptExtension_0_use=onDemand&XWiki.StyleSheetExtension_0_use=onDemand')">
323 De-activate loading for all pages.
324 </a>
325 </span>
326 #else
327 #info("This extension is configured to be loaded only on pages that request it")
328
329 <span class=buttonwrapper>
330 <a href="$doc.getURL('save','XWiki.JavaScriptExtension_0_use=always&XWiki.StyleSheetExtension_0_use=always')">
331 Activate loading for all pages.
332 </a>
333 </span>
334 #end
335
336 #end
337 {{/html}}{{/velocity}}
338 {{/code}}
339
340 = References =
341
342 * [[Skin Extension Plugin>>extensions:Extension.Skin Extension Plugin]]
343 * JSON with Padding : [[http://en.wikipedia.org/wiki/JSON#JSONP]]
344 * HTTP HEAD Request : [[http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.4]]
345 * json-head : [[http://simonwillison.net/2008/Jul/29/jsonhead/]]
346 * get_json.js : [[http://github.com/kangax/protolicious/tree/master/get_json.js]]
347 * addSizes.js : [[http://natbat.net/2008/Aug/27/addSizes/]]

Get Connected