-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom template error #28
Comments
Bug from org.pentaho.cdf.CdfContentGenerator.renderHtmlDashboard method. out.write(intro.substring(0, headIndex + 6).getBytes("UTF-8"));
// Concat libraries to html head content
getHeaders(dashboardContent, requestParams, out);
out.write(intro.substring(headIndex + 7, length - 1).getBytes("UTF-8")); Should be: out.write(intro.substring(0, headIndex + 6).getBytes("UTF-8"));
// Concat libraries to html head content
getHeaders(dashboardContent, requestParams, out);
out.write(intro.substring(headIndex + 6, length).getBytes("UTF-8")); |
pamval
pushed a commit
that referenced
this issue
Sep 5, 2012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider a new template template-dashboard-itisbi.html, the content as flows:
CdfContentGenerator output:
1 head end tag miss "<"
/head>
2 body start tag miss ">"
The text was updated successfully, but these errors were encountered: