2010-01-29 22:12:41 +00:00
|
|
|
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
|
|
|
|
|
|
|
|
<%@ page language="java"%>
|
|
|
|
|
|
|
|
<%@ page import="java.util.Calendar" %>
|
|
|
|
<%@ page import="org.apache.commons.logging.Log" %>
|
|
|
|
<%@ page import="org.apache.commons.logging.LogFactory" %>
|
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest"%>
|
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.web.*"%>
|
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Portal" %>
|
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.Controllers" %>
|
|
|
|
|
|
|
|
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %><%/* this odd thing points to something in web.xml */ %>
|
|
|
|
|
2010-04-02 23:17:48 +00:00
|
|
|
<%@page import="edu.cornell.mannlib.vitro.webapp.controller.ContactMailServlet"%><jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" />
|
2010-01-29 22:12:41 +00:00
|
|
|
<%
|
|
|
|
/**
|
|
|
|
* @version 1.00
|
|
|
|
* @author Jon Corson-Rikert
|
|
|
|
* UPDATES:
|
|
|
|
* 2006-01-04 bdc removed <head> and <body> tags and moved from <table> to <div>
|
|
|
|
* 2005-07-07 JCR included LoginFormBean so can substitute filterbrowse for portalbrowse for authorized users
|
|
|
|
*/
|
|
|
|
|
|
|
|
final Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.web.themes.vivo-basic.footer.jsp");
|
|
|
|
|
|
|
|
VitroRequest vreq = new VitroRequest(request);
|
|
|
|
|
|
|
|
Portal portal = vreq.getPortal();
|
|
|
|
if (portal==null) {
|
|
|
|
log.error("portal from vreq.getPortal() null in themes/vivo-basic/footer.jsp");
|
|
|
|
}
|
|
|
|
HttpSession currentSession = request.getSession();
|
|
|
|
|
|
|
|
boolean authorized = false;
|
|
|
|
if (loginHandler.getLoginStatus().equals("authenticated")) /* test if session is still valid */
|
|
|
|
if (currentSession.getId().equals(loginHandler.getSessionId()))
|
|
|
|
if (request.getRemoteAddr().equals(
|
|
|
|
loginHandler.getLoginRemoteAddr()))
|
|
|
|
authorized = true;
|
|
|
|
|
|
|
|
%>
|
|
|
|
|
|
|
|
<c:set var="currentYear" value="<%= Calendar.getInstance().get(Calendar.YEAR) %>" />
|
|
|
|
<c:set var='context' value="<%=vreq.getContextPath()%>" />
|
|
|
|
<c:set var='themePath'>
|
|
|
|
<c:if test="${!empty context && context != ''}">/${context}</c:if>/<%=portal.getThemeDir()%>
|
|
|
|
</c:set>
|
|
|
|
<c:set var='themeDir'><c:out value='${themePath}' default='/themes/vivo-basic/' /></c:set>
|
|
|
|
<c:set var="currentPortal" value="<%=portal.getPortalId()%>"/>
|
2010-04-02 23:17:48 +00:00
|
|
|
<c:set var="contactMailSetup" value="<%= ContactMailServlet.getSmtpHostFromProperties() != null %>"/>
|
2010-01-29 22:12:41 +00:00
|
|
|
|
|
|
|
<div id='footer'>
|
|
|
|
|
|
|
|
<% if (!(portal.getBannerImage() == null || portal.getBannerImage().equals("")))
|
|
|
|
{ %>
|
|
|
|
<img class="footerLogo" src="${themeDir}site_icons/<%=portal.getBannerImage()%>" alt="<%=portal.getShortHand()%>"/>
|
|
|
|
<% } %>
|
|
|
|
|
|
|
|
<div class='footerLinks'>
|
|
|
|
<ul class="otherNav">
|
|
|
|
<c:url var="aboutHref" value="<%= Controllers.ABOUT %>">
|
|
|
|
<c:param name="home" value="${currentPortal}"/>
|
|
|
|
</c:url>
|
|
|
|
<c:set var="aboutHref">
|
|
|
|
<c:out value="${aboutHref}" escapeXml="true"/>
|
|
|
|
</c:set>
|
|
|
|
|
2010-04-29 19:21:35 +00:00
|
|
|
<li<c:if test="${!empty contactMailSetup}"> class="last"</c:if>><a href="${aboutHref}" title="more about this web site">About</a></li>
|
2010-01-29 22:12:41 +00:00
|
|
|
|
|
|
|
<c:url var="contactHref" value="/comments">
|
|
|
|
<c:param name="home" value="${currentPortal}"/>
|
|
|
|
</c:url>
|
|
|
|
<c:set var="contactHref">
|
|
|
|
<c:out value="${contactHref}" escapeXml="true"/>
|
|
|
|
</c:set>
|
2010-04-02 23:17:48 +00:00
|
|
|
<c:if test="${contactMailSetup}">
|
|
|
|
<li class="last"><a href="${contactHref}" title="feedback form">Contact Us</a></li>
|
|
|
|
</c:if>
|
2010-01-29 22:12:41 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<% if (portal.getCopyrightAnchor() != null && portal.getCopyrightAnchor().length()>0) { %>
|
|
|
|
<div class='copyright'>
|
|
|
|
©${currentYear}
|
|
|
|
<% if (portal.getCopyrightURL() != null && portal.getCopyrightURL().length()>0) { %>
|
|
|
|
<a href="<%=portal.getCopyrightURL()%>">
|
|
|
|
<% } %>
|
|
|
|
<%=portal.getCopyrightAnchor()%>
|
|
|
|
<% if (portal.getCopyrightURL() != null && portal.getCopyrightURL().length()>0) { %>
|
|
|
|
</a>
|
|
|
|
<% } %>
|
|
|
|
</div>
|
|
|
|
<div class='copyright'>
|
|
|
|
All Rights Reserved. <a href="termsOfUse?home=<%=portal.getPortalId()%>">Terms of Use</a>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
</div>
|