Commit 77d7d9b8 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Additional sitemesh conversion (JM-421).

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2926 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7ddf9f6e
...@@ -10,16 +10,14 @@ ...@@ -10,16 +10,14 @@
<%@ page import="org.jivesoftware.util.*, <%@ page import="org.jivesoftware.util.*,
java.util.*, java.util.*,
org.jivesoftware.admin.*,
org.jivesoftware.messenger.muc.MultiUserChatServer" org.jivesoftware.messenger.muc.MultiUserChatServer"
%> %>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%> <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" /> <jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% admin.init(request, response, session, application, out ); %> <% webManager.init(request, response, session, application, out ); %>
<% // Get parameters <% // Get parameters
String userJID = ParamUtils.getParameter(request,"userJID"); String userJID = ParamUtils.getParameter(request,"userJID");
...@@ -27,7 +25,7 @@ ...@@ -27,7 +25,7 @@
boolean delete = ParamUtils.getBooleanParameter(request,"delete"); boolean delete = ParamUtils.getBooleanParameter(request,"delete");
// Get muc server // Get muc server
MultiUserChatServer mucServer = admin.getMultiUserChatServer(); MultiUserChatServer mucServer = webManager.getMultiUserChatServer();
// Handle a save // Handle a save
Map errors = new HashMap(); Map errors = new HashMap();
...@@ -52,18 +50,13 @@ ...@@ -52,18 +50,13 @@
} }
%> %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /> <html>
<% // Title of this page and breadcrumbs <head>
String title = LocaleUtils.getLocalizedString("groupchat.admins.title"); <title><fmt:message key="groupchat.admins.title"/></title>
pageinfo.setTitle(title); <meta name="pageID" content="muc-sysadmin"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp")); <meta name="helpPage" content="edit_group_chat_service_administrators.html"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "muc-sysadmins.jsp")); </head>
pageinfo.setPageID("muc-sysadmin"); <body>
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="edit_group_chat_service_administrators.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<p> <p>
<fmt:message key="groupchat.admins.introduction" /> <fmt:message key="groupchat.admins.introduction" />
...@@ -163,4 +156,5 @@ ...@@ -163,4 +156,5 @@
</form> </form>
<jsp:include page="bottom.jsp" flush="true" /> </body>
\ No newline at end of file </html>
\ No newline at end of file
<%-- <%--
- $RCSfile$
- $Revision$ - $Revision$
- $Date$ - $Date$
- -
...@@ -11,17 +10,15 @@ ...@@ -11,17 +10,15 @@
<%@ page import="org.jivesoftware.util.*, <%@ page import="org.jivesoftware.util.*,
java.util.*, java.util.*,
org.jivesoftware.messenger.*, org.jivesoftware.messenger.muc.MultiUserChatServer"
org.jivesoftware.admin.*,
org.jivesoftware.messenger.muc.MultiUserChatServer,
java.util.Iterator"
errorPage="error.jsp" errorPage="error.jsp"
%> %>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" />
<% admin.init(request, response, session, application, out ); %> <jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% webManager.init(request, response, session, application, out ); %>
<% // Get parameters <% // Get parameters
boolean kickEnabled = ParamUtils.getBooleanParameter(request,"kickEnabled"); boolean kickEnabled = ParamUtils.getBooleanParameter(request,"kickEnabled");
...@@ -34,9 +31,9 @@ ...@@ -34,9 +31,9 @@
boolean logSettingSuccess = request.getParameter("logSettingSuccess") != null; boolean logSettingSuccess = request.getParameter("logSettingSuccess") != null;
// Get muc server // Get muc server
MultiUserChatServer mucServer = admin.getMultiUserChatServer(); MultiUserChatServer mucServer = webManager.getMultiUserChatServer();
Map errors = new HashMap(); Map<String, String> errors = new HashMap<String, String>();
// Handle an update of the kicking task settings // Handle an update of the kicking task settings
if (kickSettings) { if (kickSettings) {
if (!kickEnabled) { if (!kickEnabled) {
...@@ -106,18 +103,13 @@ ...@@ -106,18 +103,13 @@
} }
%> %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /> <html>
<% // Title of this page and breadcrumbs <head>
String title = LocaleUtils.getLocalizedString("muc.tasks.title"); <title><fmt:message key="muc.tasks.title"/></title>
pageinfo.setTitle(title); <meta name="pageID" content="muc-tasks"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp")); <meta name="helpPage" content="edit_idle_user_settings.html"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "muc-tasks.jsp")); </head>
pageinfo.setPageID("muc-tasks"); <body>
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="edit_idle_user_settings.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<p> <p>
<fmt:message key="muc.tasks.info" /> <fmt:message key="muc.tasks.info" />
...@@ -243,4 +235,5 @@ ...@@ -243,4 +235,5 @@
</form> </form>
<jsp:include page="bottom.jsp" flush="true" /> </body>
</html>
\ No newline at end of file
<%-- <%--
- $RCSfile$
- $Revision$ - $Revision$
- $Date$ - $Date$
- -
- Copyright (C) 2004 Jive Software. All rights reserved. - Copyright (C) 2004-2005 Jive Software. All rights reserved.
- -
- This software is published under the terms of the GNU Public License (GPL), - This software is published under the terms of the GNU Public License (GPL),
- a copy of which is included in this distribution. - a copy of which is included in this distribution.
--%> --%>
<%@ page import="org.jivesoftware.util.*, <%@ page import="org.jivesoftware.util.*,
java.util.Iterator,
org.jivesoftware.messenger.*, org.jivesoftware.messenger.*,
java.util.Date,
java.text.DateFormat,
java.util.HashMap, java.util.HashMap,
java.util.Map, java.util.Map,
org.jivesoftware.admin.*, java.text.DecimalFormat"
java.text.DecimalFormat,
java.text.NumberFormat"
errorPage="error.jsp" errorPage="error.jsp"
%> %>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" scope="page" /> <jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" scope="page" />
<% admin.init(request, response, session, application, out ); %> <% webManager.init(request, response, session, application, out ); %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /> <html>
<% // Title of this page and breadcrumbs <head>
String title = LocaleUtils.getLocalizedString("offline.messages.title"); <title><fmt:message key="offline.messages.title"/></title>
pageinfo.setTitle(title); <meta name="pageID" content="server-offline-messages"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp")); <meta name="helpPage" content="manage_offline_messages.html"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "offline-messages.jsp")); </head>
pageinfo.setPageID("server-offline-messages"); <body>
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="manage_offline_messages.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<c:set var="success" /> <c:set var="success" />
...@@ -62,10 +51,10 @@ ...@@ -62,10 +51,10 @@
DecimalFormat format = new DecimalFormat("#0.00"); DecimalFormat format = new DecimalFormat("#0.00");
// Get the offline message manager // Get the offline message manager
OfflineMessageStrategy manager = admin.getXMPPServer().getOfflineMessageStrategy(); OfflineMessageStrategy manager = webManager.getXMPPServer().getOfflineMessageStrategy();
// Update the session kick policy if requested // Update the session kick policy if requested
Map errors = new HashMap(); Map<String, String> errors = new HashMap<String, String>();
if (update) { if (update) {
// Validate params // Validate params
if (strategy != BOUNCE && strategy != DROP && strategy != STORE) { if (strategy != BOUNCE && strategy != DROP && strategy != STORE) {
...@@ -290,4 +279,5 @@ ...@@ -290,4 +279,5 @@
</form> </form>
<jsp:include page="bottom.jsp" flush="true" /> </body>
</html>
\ No newline at end of file
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
--%> --%>
<%@ page import="java.io.*, <%@ page import="java.io.*,
org.jivesoftware.admin.AdminPageBean,
org.jivesoftware.messenger.container.PluginManager, org.jivesoftware.messenger.container.PluginManager,
org.jivesoftware.util.*, org.jivesoftware.util.*,
org.jivesoftware.messenger.container.Plugin, org.jivesoftware.messenger.container.Plugin,
...@@ -173,19 +172,13 @@ ...@@ -173,19 +172,13 @@
} }
%> %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /> <html>
<% <head>
String title = LocaleUtils.getLocalizedString("plugin.admin.title"); <title><fmt:message key="plugin.admin.title"/></title>
pageinfo.setTitle(title); <meta name="pageID" content="plugin-settings"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp")); <meta name="helpPage" content="manage_system_plugins.html"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "plugin-admin.jsp")); </head>
pageinfo.setPageID("plugin-settings"); <body>
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="manage_system_plugins.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<% if ("true".equals(request.getParameter("deletesuccess"))) { %> <% if ("true".equals(request.getParameter("deletesuccess"))) { %>
...@@ -332,4 +325,5 @@ ...@@ -332,4 +325,5 @@
</table> </table>
</div> </div>
<jsp:include page="bottom.jsp" flush="true" /> </body>
\ No newline at end of file </html>
\ No newline at end of file
...@@ -18,28 +18,23 @@ ...@@ -18,28 +18,23 @@
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" /> <jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% admin.init(request, response, session, application, out ); %> <% webManager.init(request, response, session, application, out ); %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /> <html>
<% // Title of this page and breadcrumbs <head>
String title = LocaleUtils.getLocalizedString("private.data.settings.title"); <title><fmt:message key="private.data.settings.title"/></title>
pageinfo.setTitle(title); <meta name="pageID" content="server-data-settings"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp")); <meta name="helpPage" content="set_private_data_storage_policy.html"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "private-data-settings.jsp")); </head>
pageinfo.setPageID("server-data-settings"); <body>
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="set_private_data_storage_policy.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<% // Get parameters: <% // Get parameters:
boolean update = request.getParameter("update") != null; boolean update = request.getParameter("update") != null;
boolean privateEnabled = ParamUtils.getBooleanParameter(request,"privateEnabled"); boolean privateEnabled = ParamUtils.getBooleanParameter(request,"privateEnabled");
// Get an audit manager: // Get an audit manager:
PrivateStorage privateStorage = admin.getPrivateStore(); PrivateStorage privateStorage = webManager.getPrivateStore();
Map errors = new HashMap(); Map errors = new HashMap();
if (update) { if (update) {
...@@ -111,4 +106,5 @@ ...@@ -111,4 +106,5 @@
</form> </form>
<jsp:include page="bottom.jsp" flush="true" /> </body>
</html>
\ No newline at end of file
<%-- <%--
- $RCSfile$
- $Revision$ - $Revision$
- $Date$ - $Date$
- -
- Copyright (C) 2004 Jive Software. All rights reserved. - Copyright (C) 2004-2005 Jive Software. All rights reserved.
- -
- This software is published under the terms of the GNU Public License (GPL), - This software is published under the terms of the GNU Public License (GPL),
- a copy of which is included in this distribution. - a copy of which is included in this distribution.
...@@ -11,7 +10,6 @@ ...@@ -11,7 +10,6 @@
<%@ page import="org.jivesoftware.messenger.handler.IQRegisterHandler, <%@ page import="org.jivesoftware.messenger.handler.IQRegisterHandler,
org.jivesoftware.messenger.handler.IQAuthHandler, org.jivesoftware.messenger.handler.IQAuthHandler,
org.jivesoftware.admin.AdminPageBean,
java.util.*, java.util.*,
org.jivesoftware.messenger.ClientSession, org.jivesoftware.messenger.ClientSession,
org.jivesoftware.util.*" org.jivesoftware.util.*"
...@@ -21,22 +19,14 @@ ...@@ -21,22 +19,14 @@
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" />
<% admin.init(request, response, session, application, out ); %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" />
<% // Title of this page and breadcrumbs
String title = LocaleUtils.getLocalizedString("reg.settings.title");
pageinfo.setTitle(title);
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp"));
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "reg-settings.jsp"));
pageinfo.setPageID("server-reg-and-login");
%>
<jsp:include page="top.jsp" flush="true"> <html>
<jsp:param name="helpPage" value="manage_registration_and_login_settings.html" /> <head>
</jsp:include> <title><fmt:message key="reg.settings.title"/></title>
<jsp:include page="title.jsp" flush="true" /> <meta name="pageID" content="server-reg-and-login"/>
<meta name="helpPage" content="manage_registration_and_login_settings.html"/>
</head>
<body>
<% // Get parameters <% // Get parameters
boolean save = request.getParameter("save") != null; boolean save = request.getParameter("save") != null;
...@@ -183,7 +173,7 @@ ...@@ -183,7 +173,7 @@
<tbody> <tbody>
<tr> <tr>
<td width="1%"> <td width="1%">
<input type="radio" name="anonLogin" value="true" id="rb03" <input type="radio" name="anonLogin" value="true" id="rb05"
<%= ((anonLogin) ? "checked" : "") %>> <%= ((anonLogin) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
...@@ -192,7 +182,7 @@ ...@@ -192,7 +182,7 @@
</tr> </tr>
<tr> <tr>
<td width="1%"> <td width="1%">
<input type="radio" name="anonLogin" value="false" id="rb04" <input type="radio" name="anonLogin" value="false" id="rb06"
<%= ((!anonLogin) ? "checked" : "") %>> <%= ((!anonLogin) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
...@@ -230,4 +220,5 @@ ...@@ -230,4 +220,5 @@
</form> </form>
<jsp:include page="bottom.jsp" flush="true" /> </body>
</html>
\ No newline at end of file
<%-- <%--
- $RCSfile$
- $Revision$ - $Revision$
- $Date$ - $Date$
- -
- Copyright (C) 2004 Jive Software. All rights reserved. - Copyright (C) 2004-2005 Jive Software. All rights reserved.
- -
- This software is published under the terms of the GNU Public License (GPL), - This software is published under the terms of the GNU Public License (GPL),
- a copy of which is included in this distribution. - a copy of which is included in this distribution.
...@@ -11,7 +10,6 @@ ...@@ -11,7 +10,6 @@
<%@ page import="org.jivesoftware.util.*, <%@ page import="org.jivesoftware.util.*,
org.jivesoftware.database.DbConnectionManager, org.jivesoftware.database.DbConnectionManager,
org.jivesoftware.admin.AdminPageBean,
java.sql.*" java.sql.*"
errorPage="error.jsp" errorPage="error.jsp"
%> %>
...@@ -20,21 +18,13 @@ ...@@ -20,21 +18,13 @@
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /> <jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" />
<%-- Define Administration Bean --%> <html>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" /> <head>
<% admin.init(request, response, session, application, out ); %> <title><fmt:message key="server.db.title"/></title>
<meta name="pageID" content="server-db"/>
<% // Title of this page and breadcrumbs <meta name="helpPage" content="view_database_connection_properties.html"/>
String title = LocaleUtils.getLocalizedString("server.db.title"); </head>
pageinfo.setTitle(title); <body>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp"));
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "server-db.jsp"));
pageinfo.setPageID("server-db");
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="view_database_connection_properties.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<% // Get metadata about the database <% // Get metadata about the database
Connection con = null; Connection con = null;
...@@ -161,4 +151,6 @@ ...@@ -161,4 +151,6 @@
catch (SQLException e) { Log.error(e); } catch (SQLException e) { Log.error(e); }
} }
%> %>
<jsp:include page="bottom.jsp" flush="true" />
</body>
</html>
\ No newline at end of file
...@@ -59,8 +59,7 @@ ...@@ -59,8 +59,7 @@
<meta name="pageID" content="server-locale"/> <meta name="pageID" content="server-locale"/>
<meta name="helpPage" content="edit_server_properties.html"/> <meta name="helpPage" content="edit_server_properties.html"/>
</head> </head>
<body>
<body>
<p> <p>
<fmt:message key="locale.title.info" /> <fmt:message key="locale.title.info" />
......
<%-- <%--
- $RCSfile$
- $Revision$ - $Revision$
- $Date$ - $Date$
- -
- Copyright (C) 2004 Jive Software. All rights reserved. - Copyright (C) 2004-2005 Jive Software. All rights reserved.
- -
- This software is published under the terms of the GNU Public License (GPL), - This software is published under the terms of the GNU Public License (GPL),
- a copy of which is included in this distribution. - a copy of which is included in this distribution.
--%> --%>
<%@ page import="java.io.File, <%@ page import="java.util.*,
java.util.*,
org.jivesoftware.util.*, org.jivesoftware.util.*,
org.jivesoftware.util.ParamUtils, org.jivesoftware.util.ParamUtils,
org.jivesoftware.util.JiveGlobals, org.jivesoftware.util.JiveGlobals"
org.jivesoftware.admin.AdminPageBean"
errorPage="error.jsp" errorPage="error.jsp"
%> %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
...@@ -70,7 +67,7 @@ ...@@ -70,7 +67,7 @@
} }
} }
Map errors = new HashMap(); Map<String, String> errors = new HashMap<String, String>();
if (save) { if (save) {
if (propName == null || "".equals(propName.trim())) { if (propName == null || "".equals(propName.trim())) {
errors.put("propName",""); errors.put("propName","");
...@@ -102,18 +99,13 @@ ...@@ -102,18 +99,13 @@
} }
%> %>
<% // Title of this page and breadcrumbs <html>
String title = LocaleUtils.getLocalizedString("server.properties.title"); <head>
pageinfo.setTitle(title); <title><fmt:message key="server.properties.title"/></title>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp")); <meta name="pageID" content="server-props"/>
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "server-properties.jsp")); <meta name="helpPage" content="manage_system_properties.html"/>
pageinfo.setPageID("server-props"); </head>
%> <body>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="manage_system_properties.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<p> <p>
<fmt:message key="server.properties.info" /> <fmt:message key="server.properties.info" />
...@@ -368,4 +360,5 @@ function dodelete(propName) { ...@@ -368,4 +360,5 @@ function dodelete(propName) {
<br><br><br><br><br><br> <br><br><br><br><br><br>
<br><br><br><br><br><br> <br><br><br><br><br><br>
<jsp:include page="bottom.jsp" flush="true" /> </body>
\ No newline at end of file </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment