* made.
*/
protected String bodyInsertContent(ReplayParseContext context) {
if (jspInsertPath == null)
return null;
JSPExecutor jspExec = context.getJspExec();
// FIXME bad chain of references. add method to ReplayParseContext?
WaybackRequest wbRequest = jspExec.getUiResults().getWbRequest();
// isAnyEmbeddedContext() used as shorthand for (isFrameWrapperContext()
// && isIFrameWrapperContext()).
if (wbRequest.isAnyEmbeddedContext())
return null;
try {
return jspExec.jspToString(jspInsertPath);
} catch (ServletException ex) {
LOGGER.log(Level.WARNING, "execution of " + jspInsertPath +
" failed", ex);
return null;
} catch (IOException ex) {