How to apply a skin at page level?

Version 4.2 by Vincent Massol on 2011/10/28

This is currently not possible at page level (see Skins)

However here's a workaround:

In XWiki Syntax 2.0:
{{velocity}}
#if("$!request.skin" != "XWiki.YourSkin")
$response.sendRedirect($doc.getURL("view", "skin=XWiki.YourSkin"))
#end
{{/velocity}}

In XWiki Syntax 1.0:
#if("$!request.skin" != "XWiki.YourSkin")
$response.sendRedirect($doc.getURL("view", "skin=XWiki.YourSkin"))
#end

Get Connected