This commit is contained in:
Socrates
2020-05-26 10:29:34 +02:00
commit 9ed0f2a056
1162 changed files with 162062 additions and 0 deletions

16
web/xava/portlet.jsp Normal file
View File

@@ -0,0 +1,16 @@
<%--
Calling directly to module.jsp does not work well in liferay (at least until 4.1.3)
because the parameter sent from the portlet to the jsp are frozen for all the next
JSP calls.
Therefore we use this JSP.
In the other hand we do now use <jsp:parm /> because it fails in WebSphere Portal 5.1
--%>
<%
String moduleURL = "module.jsp?application=" +
request.getParameter("xava.portlet.application") +
"&module=" +
request.getParameter("xava.portlet.module");
%>
<jsp:include page="<%=moduleURL%>"/>