// engine. This is a crappy hack until we find a better solution.
String wasFiltered = (String) req.getAttribute("org.apache.jetspeed.content.filtered");
if (wasFiltered == null || !wasFiltered.equals("true"))
{
RequestContextComponent contextComponent = (RequestContextComponent) Jetspeed.getComponentManager()
.getComponent(RequestContextComponent.class);
RequestContext context = contextComponent.create(req, res, getServletConfig());
engine.service(context);
contextComponent.release(context);
}
}
catch (JetspeedException e)
{