|
[
Permlink
| « Hide
]
Anton Mazkovoi [Atlassian] added a comment - 08/Mar/07 05:00 PM
I think the fix involves adding the WebResourceManager call to the printable decorator. Need to run past Scott to ask why this was left out.
Will this really not be fixed until 3.8? Is there a time frame for the release of such a version?
Joel,
3.8 is already out but it still contains this problem. We hope to fix this in JIRA 3.8.1 which we hope to ship in a week or so. the patch is manual, but very simple.
in the file webapp/decorators/printable.jsp add the following just before the </head> element: <%
webResourceManagerPrintable.includeResources(out);
%>
so the whole head should look like: <head> <title><%= headerAP.getDefaultBackedString(APKeys.JIRA_TITLE) %> - <decorator:title default="New Generation Issue Tracking" /></title> <link rel="stylesheet" type="text/css" media="print,screen" href="<%= request.getContextPath() %>/styles/combined.css"> <link rel="stylesheet" type="text/css" media="print,screen" href="<%= webResourceManagerPrintable.getStaticResourcePrefix(String.valueOf(lookAndFeelBeanPrintable.getVersion())) %>/styles/global.css"> <%-- Ensure that the printable style sheet is last so it overrides the previous styles --%> <link rel="stylesheet" type="text/css" media="print,screen" href="<%= request.getContextPath() %>/styles/combined-printable.css"> <script language="JavaScript" type="text/javascript" src="<%=request.getContextPath()%>/includes/js/combined-javascript.js"></script> <% webResourceManagerPrintable.includeResources(out); %> </head> attaching complete patched printable.jsp replace existing webapp/decorators/printable.jsp with new version
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||