src/main/webapp/WEB-INF/jsp/project-details.jsp

Mon, 09 Aug 2021 16:58:38 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 09 Aug 2021 16:58:38 +0200
changeset 218
0e4a9b6f7a12
parent 184
e8eecee6aadf
child 225
87328572e36f
permissions
-rw-r--r--

Added tag v0.6 for changeset a5ad7cd5d000

<%--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright 2021 Mike Becker. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

<jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.ProjectDetails" scope="request" />

<c:set var="project" scope="page" value="${viewmodel.projectInfo.project}"/>
<c:set var="component" scope="page" value="${viewmodel.component}"/>
<c:set var="version" scope="page" value="${viewmodel.version}"/>
<%@include file="../jspf/project-header.jspf"%>

<div id="tool-area">
    <a href="./projects/${project.node}/issues/${empty version ? '-' : version.node}/${empty component ? '-' : component.node}/-/create" class="button"><fmt:message key="button.issue.create"/></a>
    <a href="./projects/${project.node}/edit" class="button"><fmt:message key="button.project.edit"/></a>
    <c:if test="${not empty version}">
        <a href="./projects/${project.node}/versions/${version.node}/edit" class="button"><fmt:message key="button.version.edit"/></a>
    </c:if>
    <a href="./projects/${project.node}/versions/-/create" class="button"><fmt:message key="button.version.create"/></a>
    <c:if test="${not empty component}">
        <a href="./projects/${project.node}/components/${component.node}/edit" class="button"><fmt:message key="button.component.edit"/></a>
    </c:if>
    <a href="./projects/${project.node}/components/-/create" class="button"><fmt:message key="button.component.create"/></a>
</div>

<h2><fmt:message key="progress" /></h2>

<c:set var="summary" value="${viewmodel.projectInfo.issueSummary}" />
<%@include file="../jspf/issue-summary.jspf"%>

<c:choose>
    <c:when test="${empty viewmodel.versionInfo}">
        <h2>
            <fmt:message key="issues" />
        </h2>
        <c:set var="summary" value="${viewmodel.issueSummary}"/>
        <c:set var="issues" value="${viewmodel.issues}"/>
        <%@include file="../jspf/issue-summary.jspf"%>
        <c:if test="${not empty issues}">
            <%@include file="../jspf/issue-list.jspf"%>
        </c:if>
    </c:when>
    <c:otherwise>
        <c:set var="versionInfo" value="${viewmodel.versionInfo}"/>
        <h2>
            <fmt:message key="version" /> <c:out value="${versionInfo.version.name}" /> - <fmt:message key="version.status.${versionInfo.version.status}"/>
        </h2>

        <h3><fmt:message key="issues.resolved"/> </h3>
        <c:set var="summary" value="${versionInfo.resolvedTotal}"/>
        <%@include file="../jspf/issue-summary.jspf"%>
        <c:set var="issues" value="${versionInfo.resolved}"/>
        <c:if test="${not empty issues}">
            <%@include file="../jspf/issue-list.jspf"%>
        </c:if>

        <c:set var="issues" value="${versionInfo.reported}"/>
        <c:if test="${not empty issues}">
            <h3><fmt:message key="issues.reported"/> </h3>
            <c:set var="summary" value="${versionInfo.reportedTotal}"/>
            <%@include file="../jspf/issue-summary.jspf"%>
            <%@include file="../jspf/issue-list.jspf"%>
        </c:if>
    </c:otherwise>
</c:choose>

mercurial