- Add Docker Compose configurations for dev, prod, and standalone environments - Add database initialization scripts (init-db.sh, init-db-docker.sh) - Add enhanced start-docker-linux.sh with DB init support - Add comprehensive database initialization guide - Support for automatic dbexport.pgsql import on first run - Include safety checks for production environment
10 lines
457 B
Plaintext
10 lines
457 B
Plaintext
<%@ page import="com.pms.common.utils.*"%>
|
|
<%
|
|
String menuObjid = CommonUtils.checkNull(request.getParameter("objid"));
|
|
%>
|
|
<frameset cols="60%,5%,35%" border="0" noresize>
|
|
<frame src="/admin/menuAuthMngPopUpLeft.do?objid=<%=menuObjid%>" name="menuAuthMngPopUpLeft">
|
|
<frame src="/admin/menuAuthMngPopUpCenter.do" name="menuAuthMngPopUpCenter">
|
|
<frame src="/admin/menuAuthMngPopUpRight.do?objid=<%=menuObjid%>" name="menuAuthMngPopUpRight">
|
|
</frameset>
|