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

Fri, 23 Oct 2020 18:40:50 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 23 Oct 2020 18:40:50 +0200
changeset 149
30b840ed8c0e
parent 134
f47e82cd6077
child 178
88207b860cba
permissions
-rw-r--r--

migrate WebColor

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

Copyright 2018 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.
--%>
<%@page pageEncoding="UTF-8" import="de.uapcore.lightpit.viewmodel.ProjectView" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

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

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

<div id="tool-area">
    <a href="./projects/${project.node}/create-issue" class="button"><fmt:message key="button.issue.create"/></a>
    <c:if test="${viewmodel.versionFilter.id gt 0}">
        <a href="./projects/${project.node}/versions/${viewmodel.versionFilter.node}/edit" class="button"><fmt:message key="button.version.edit"/></a>
    </c:if>
    <a href="./projects/${project.node}/create-version" class="button"><fmt:message key="button.version.create"/></a>
    <c:if test="${viewmodel.componentFilter.id gt 0}">
        <a href="./projects/${project.node}/components/${viewmodel.componentFilter.node}/edit" class="button"><fmt:message key="button.component.edit"/></a>
    </c:if>
    <a href="./projects/${project.node}/create-component" 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="${viewmodel.versionFilter eq ProjectView.NO_VERSION or viewmodel.versionFilter eq ProjectView.ALL_VERSIONS}">
        <h2>
            <c:if test="${viewmodel.versionFilter eq ProjectView.NO_VERSION}">
                <fmt:message key="issue.without-version" />
            </c:if>
            <c:if test="${viewmodel.versionFilter ne ProjectView.NO_VERSION}">
                <fmt:message key="issues" />
            </c:if>
        </h2>
        <c:set var="summary" value="${viewmodel.projectDetails.issueSummary}"/>
        <c:set var="issues" value="${viewmodel.projectDetails.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.projectDetails.versionInfo}"/>
        <h2>
            <fmt:message key="version.name" /> <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