Tweak the build script, so a developer can build vitro-core and it won't have any effect when they build vivoweb in the same workspace.
This commit is contained in:
commit
3f17d16d7b
68 changed files with 40148 additions and 0 deletions
95
themes/vivo-basic/jsp/footer.jsp
Normal file
95
themes/vivo-basic/jsp/footer.jsp
Normal file
|
@ -0,0 +1,95 @@
|
|||
<%-- $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 */ %>
|
||||
|
||||
<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" />
|
||||
<%
|
||||
/**
|
||||
* @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()%>"/>
|
||||
|
||||
<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>
|
||||
|
||||
<li><a href="${aboutHref}" title="more about this web site">About</a></li>
|
||||
|
||||
<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>
|
||||
<li class="last"><a href="${contactHref}" title="feedback form">Contact Us</a></li>
|
||||
</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>
|
Loading…
Add table
Add a link
Reference in a new issue