Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.1.3
-
None
-
All operating systems, all app servers, all JDKs
Description
The JSP portlet decorators always use:
jetspeed/decorations/portlet/decorator.jsp
If you have a decorator named "my-decorator", then the layout should check for a file named:
jetspeed/decorations/portlet/my-decorator/decorator.jsp
and if found, use that. Otherwise fall back to the default.
The following info came from Woonsan Ko (thanks!):
BEGIN QUOTE
In the /jetspeed/WEB-INF/templates/layout/html/*/ folders, there are layout.jsp containing the some code fragments like the following:
String _tempPath = _frag.getDecoration().getBasePath();
String _portletJSP = _tempPath.substring(0,_tempPath.lastIndexOf('/')) +
"/decorator.jsp";
I think you can modify the above as follows:
String _portletJSP = "/" + _frag.getDecoration().getResource("decorator.jsp");
END QUOTE
This works well.