2010-04-05 17:16:31 +00:00
|
|
|
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
|
|
|
|
|
|
|
|
<%-- Custom short view for ResearchActivity, TeachingActivity, OutreachActivity, and ServiceActivity
|
|
|
|
|
|
|
|
SUBJECT - entity
|
|
|
|
PREDICATE - predicateUri
|
|
|
|
OBJECT - individual
|
|
|
|
|
|
|
|
Predicates: on Person page: Person professionalServiceActivity ServiceActivity
|
|
|
|
|
|
|
|
--%>
|
|
|
|
|
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary"%>
|
|
|
|
|
|
|
|
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
|
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
|
|
<%@ taglib uri="http://vitro.mannlib.cornell.edu/vitro/tags/StringProcessorTag" prefix="p" %>
|
|
|
|
|
|
|
|
<c:set var="vivoCore" value="http://vivoweb.org/ontology/core#" />
|
|
|
|
<c:set var="rdfs" value="<%= VitroVocabulary.RDFS %>" />
|
|
|
|
<c:set var="labelUri" value="${rdfs}label" />
|
|
|
|
|
|
|
|
<c:set var="researchActivityUri" value="${vivoCore}hasResearchActivity" />
|
|
|
|
<c:set var="teachingActivityUri" value="${vivoCore}hasTeachingActivity" />
|
|
|
|
<c:set var="serviceActivityUri" value="${vivoCore}professionalServiceActivity" />
|
|
|
|
<c:set var="outreachActivityUri" value="${vivoCore}hasOutreachActivity" />
|
|
|
|
|
|
|
|
<c:set var="predicateIsActivity" value="${predicateUri == researchActivityUri ||
|
|
|
|
predicateUri == teachingActivityUri ||
|
|
|
|
predicateUri == serviceActivityUri ||
|
|
|
|
predicateUri == outreachActivityUri}" />
|
|
|
|
<c:choose>
|
|
|
|
<c:when test="${!empty individual}"><%-- individual is the OBJECT of the property referenced - in this case, the Activity object --%>
|
|
|
|
<c:choose>
|
|
|
|
<c:when test="${!empty predicateUri}">
|
|
|
|
<%-- RY may need another branch in here; predicateIsActivity vs predicate is something else...
|
|
|
|
depends if this would display on something other than a person page. --%>
|
|
|
|
<c:set var="activity" value="${individual}" />
|
|
|
|
|
|
|
|
<%-- Get the Activity label --%>
|
|
|
|
<c:set var="activityLabel" value=" ${activity.name}"/>
|
|
|
|
|
|
|
|
<%-- Get the role of the person in the activity --%>
|
|
|
|
<c:set var="role" value=" ${activity.dataPropertyMap['http://vivoweb.org/ontology/core#role'].dataPropertyStatements[0].data}"/>
|
|
|
|
|
2010-04-05 17:20:05 +00:00
|
|
|
<%-- Get the time span of the service activity --%>
|
|
|
|
<c:set var="startYearMonth" value="${activity.dataPropertyMap['http://vivoweb.org/ontology/core#startYearMonth'].dataPropertyStatements[0].data}"/>
|
|
|
|
<c:set var="endYearMonth" value="${activity.dataPropertyMap['http://vivoweb.org/ontology/core#endYearMonth'].dataPropertyStatements[0].data}"/>
|
|
|
|
<c:if test="${!empty startYearMonth}">
|
|
|
|
<%-- RY Don't know whether we should display just the year, or month and year.
|
|
|
|
Latter looks like too much info, but why collect it if we aren't going to display it?
|
|
|
|
Needs reformatting, otherwise we get e.g., "2008-10 - 2009-12"
|
|
|
|
<c:set var="startDate" value="${fn:substring(startYearMonth, 0, 4)}" /> --%>
|
|
|
|
<c:set var="start" value="${fn:split(startYearMonth, '-')}" />
|
|
|
|
<c:set var="startDate" value="${start[1]}/${start[0]}" />
|
|
|
|
<c:set var="timeSpan" value=", ${startDate} - "/>
|
|
|
|
<c:if test="${!empty endYearMonth}">
|
|
|
|
<%-- <c:set var="endDate" value="${fn:substring(endYearMonth, 0, 4)}" /> --%>
|
|
|
|
<c:set var="end" value="${fn:split(endYearMonth, '-')}" />
|
|
|
|
<c:set var="endDate" value="${end[1]}/${end[0]}" />
|
|
|
|
<c:set var="timeSpan" value="${timeSpan}${endDate}"/>
|
|
|
|
</c:if>
|
|
|
|
</c:if>
|
2010-04-05 17:16:31 +00:00
|
|
|
|
|
|
|
<%-- Create an html link element to the activity --%>
|
|
|
|
<c:url var="activityUrl" value="/individual"><c:param name="uri" value="${activity.URI}"/></c:url>
|
|
|
|
<c:set var="activityLink" ><a href='${activityUrl}'><p:process>${activityLabel}</p:process></a></c:set>
|
|
|
|
|
|
|
|
<%-- Final output --%>
|
2010-04-05 17:20:05 +00:00
|
|
|
<strong>${activityLink}</strong> <p:process>${role} ${timeSpan}</p:process>
|
2010-04-05 17:16:31 +00:00
|
|
|
</c:when>
|
|
|
|
|
|
|
|
<c:otherwise> <%-- no predicate --%>
|
|
|
|
<c:out value="No predicate available for custom rendering ..."/>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|
|
|
|
</c:when>
|
|
|
|
|
|
|
|
<c:otherwise> <%-- no object --%>
|
|
|
|
<c:out value="Got nothing to draw here ..."/>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|