src/main/webapp/WEB-INF/jsp/issue-view.jsp

Wed, 18 Aug 2021 15:30:49 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Aug 2021 15:30:49 +0200
changeset 227
f0ede8046b59
parent 226
c8e1b5282f69
child 230
95b419e054fa
permissions
-rw-r--r--

#162 adds active flag to component

universe@75 1 <%--
universe@75 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@75 3
universe@180 4 Copyright 2021 Mike Becker. All rights reserved.
universe@75 5
universe@75 6 Redistribution and use in source and binary forms, with or without
universe@75 7 modification, are permitted provided that the following conditions are met:
universe@75 8
universe@75 9 1. Redistributions of source code must retain the above copyright
universe@75 10 notice, this list of conditions and the following disclaimer.
universe@75 11
universe@75 12 2. Redistributions in binary form must reproduce the above copyright
universe@75 13 notice, this list of conditions and the following disclaimer in the
universe@75 14 documentation and/or other materials provided with the distribution.
universe@75 15
universe@75 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@75 17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@75 18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@75 19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@75 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@75 21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@75 22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@75 23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@75 24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@75 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@75 26 --%>
universe@75 27 <%@page pageEncoding="UTF-8" %>
universe@75 28 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@75 29 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
universe@224 30 <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
universe@75 31
universe@146 32 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.IssueDetailView" scope="request"/>
universe@184 33
universe@184 34 <c:set var="project" scope="page" value="${viewmodel.project}"/>
universe@184 35 <c:set var="component" scope="page" value="${viewmodel.component}"/>
universe@184 36 <c:set var="version" scope="page" value="${viewmodel.version}"/>
universe@86 37 <c:set var="issue" scope="page" value="${viewmodel.issue}" />
universe@75 38
universe@184 39 <c:set var="issuesHref" scope="page" value="./projects/${project.node}/issues/${empty version ? '-' : version.node }/${empty component ? '-' : component.node}/"/>
universe@184 40
universe@212 41 <table class="issue-view fullwidth">
universe@146 42 <colgroup>
universe@146 43 <col>
universe@212 44 <col style="width: 50%">
universe@212 45 <col>
universe@212 46 <col style="width: 50%">
universe@146 47 </colgroup>
universe@146 48 <tbody>
universe@146 49 <tr>
universe@146 50 <th><fmt:message key="issue.id"/></th>
universe@146 51 <td>${issue.id}</td>
universe@212 52 <td colspan="2"></td>
universe@146 53 </tr>
universe@146 54 <tr>
universe@146 55 <th><fmt:message key="issue.created"/></th>
universe@156 56 <td>
universe@156 57 <c:set var="dateValue" value="${issue.created}"/>
universe@156 58 <%@include file="../jspf/date-with-tooltip.jspf"%>
universe@156 59 </td>
universe@146 60 <th><fmt:message key="issue.updated"/></th>
universe@156 61 <td>
universe@156 62 <c:set var="dateValue" value="${issue.updated}"/>
universe@156 63 <%@include file="../jspf/date-with-tooltip.jspf"%>
universe@156 64 </td>
universe@146 65 </tr>
universe@146 66 <tr>
universe@212 67 <th><fmt:message key="project"/></th>
universe@212 68 <td>
universe@212 69 <c:out value="${issue.project.name}" />
universe@212 70 </td>
universe@181 71 <th><fmt:message key="component"/></th>
universe@146 72 <td>
universe@146 73 <c:if test="${not empty issue.component}">
universe@146 74 <c:out value="${issue.component.name}"/>
universe@146 75 </c:if>
universe@146 76 <c:if test="${empty issue.component}">
universe@146 77 <fmt:message key="placeholder.null-component"/>
universe@146 78 </c:if>
universe@146 79 </td>
universe@146 80 </tr>
universe@146 81 <tr>
universe@146 82 <th><fmt:message key="issue.category"/></th>
universe@146 83 <td>
universe@146 84 <div class="issue-tag ${issue.category}" style="width: auto">
universe@146 85 <fmt:message key="issue.category.${issue.category}" />
universe@146 86 </div>
universe@146 87 </td>
universe@146 88 <th><fmt:message key="issue.status"/></th>
universe@146 89 <td>
universe@150 90 <div class="issue-tag phase-${issue.status.phase.number}" style="width: auto">
universe@146 91 <fmt:message key="issue.status.${issue.status}" />
universe@146 92 </div>
universe@146 93 </td>
universe@146 94 </tr>
universe@146 95 <tr>
universe@212 96 <th><fmt:message key="issue.resolved-versions"/></th>
universe@212 97 <td>
universe@212 98 <c:forEach var="version" items="${issue.resolvedVersions}">
universe@212 99 <c:out value="${version.name}"/>
universe@212 100 </c:forEach>
universe@212 101 </td>
universe@212 102 <th><fmt:message key="issue.affected-versions"/></th>
universe@212 103 <td>
universe@212 104 <c:forEach var="version" items="${issue.affectedVersions}">
universe@212 105 <c:out value="${version.name}"/>
universe@212 106 </c:forEach>
universe@212 107 </td>
universe@212 108 </tr>
universe@212 109 </tbody>
universe@212 110 </table>
universe@212 111 <table class="issue-view fullwidth">
universe@212 112 <colgroup>
universe@212 113 <col>
universe@212 114 <col style="width: 100%">
universe@212 115 </colgroup>
universe@212 116 <tbody>
universe@212 117 <tr>
universe@146 118 <th><fmt:message key="issue.subject"/></th>
universe@146 119 <td><c:out value="${issue.subject}"/></td>
universe@146 120 </tr>
universe@146 121 <tr>
universe@146 122 <th class="vtop"><fmt:message key="issue.description"/></th>
universe@146 123 <td>
universe@162 124 <div class="markdown-styled">
universe@162 125 ${issue.description}
universe@162 126 </div>
universe@146 127 </td>
universe@146 128 </tr>
universe@146 129 <tr>
universe@146 130 <th><fmt:message key="issue.assignee"/></th>
universe@146 131 <td>
universe@146 132 <c:if test="${not empty issue.assignee}">
universe@226 133 <c:if test="${not empty issue.assignee.mail}">
universe@226 134 <a href="mailto:<c:out value="${issue.assignee.mail}"/>">
universe@226 135 <c:out value="${issue.assignee.displayname}"/>
universe@226 136 </a>
universe@226 137 </c:if>
universe@226 138 <c:if test="${empty issue.assignee.mail}">
universe@146 139 <c:out value="${issue.assignee.displayname}"/>
universe@226 140 </c:if>
universe@146 141 </c:if>
universe@146 142 <c:if test="${empty issue.assignee}">
universe@146 143 <fmt:message key="placeholder.null-assignee" />
universe@146 144 </c:if>
universe@146 145 </td>
universe@146 146 </tr>
universe@146 147 <tr>
universe@146 148 <th><fmt:message key="issue.eta"/></th>
universe@146 149 <td><fmt:formatDate value="${issue.eta}" /></td>
universe@146 150 </tr>
universe@146 151 </tbody>
universe@146 152 </table>
universe@212 153 <div class="hright">
universe@212 154 <a href="${issuesHref}" class="button">
universe@212 155 <fmt:message key="button.back"/>
universe@212 156 </a>
universe@212 157 <a href="${issuesHref}${issue.id}/edit" class="button submit">
universe@212 158 <fmt:message key="button.issue.edit"/>
universe@212 159 </a>
universe@212 160 </div>
universe@146 161
universe@124 162 <hr class="comments-separator"/>
universe@224 163 <h2>
universe@224 164 <fmt:message key="issue.comments"/>
universe@224 165 <c:if test="${not empty viewmodel.comments}">
universe@224 166 (${fn:length(viewmodel.comments)})
universe@224 167 </c:if>
universe@224 168 </h2>
universe@124 169 <c:if test="${viewmodel.issue.id ge 0}">
universe@184 170 <form id="comment-form" action="${issuesHref}${issue.id}/comment" method="post">
universe@124 171 <table class="formtable fullwidth">
universe@124 172 <tbody>
universe@124 173 <tr>
universe@214 174 <td><textarea rows="3" name="comment" required></textarea></td>
universe@124 175 </tr>
universe@124 176 </tbody>
universe@124 177 <tfoot>
universe@124 178 <tr>
universe@124 179 <td>
universe@124 180 <button type="submit"><fmt:message key="button.comment"/></button>
universe@124 181 </td>
universe@124 182 </tr>
universe@124 183 </tfoot>
universe@124 184 </table>
universe@124 185 </form>
universe@124 186 <c:forEach var="comment" items="${viewmodel.comments}">
universe@124 187 <div class="comment">
universe@207 188 <div class="comment-author">
universe@124 189 <c:if test="${not empty comment.author}">
universe@165 190 <c:if test="${not empty comment.author.mail}">
universe@207 191 <a class="comment-author-name" href="mailto:${comment.author.mail}">
universe@165 192 </c:if>
universe@124 193 <c:out value="${comment.author.displayname}"/>
universe@165 194 <c:if test="${not empty comment.author.mail}">
universe@165 195 </a>
universe@165 196 </c:if>
universe@207 197 <c:if test="${comment.author.username eq pageContext.request.remoteUser}">
universe@207 198 <a class="comment-edit-icon" onclick="showCommentEditor(${comment.id})">&#x270e;</a>
universe@207 199 </c:if>
universe@124 200 </c:if>
universe@124 201 <c:if test="${empty comment.author}">
universe@124 202 <fmt:message key="issue.comments.anonauthor"/>
universe@124 203 </c:if>
universe@124 204 </div>
universe@124 205 <div class="smalltext">
universe@124 206 <fmt:formatDate type="BOTH" value="${comment.created}" />
universe@124 207 <c:if test="${comment.updateCount gt 0}">
universe@207 208 <span class="comment-edit-info">
universe@207 209 (<fmt:message key="issue.comments.lastupdate"/> <fmt:formatDate type="BOTH" value="${comment.updated}" />, ${comment.updateCount} <fmt:message key="issue.comments.updateCount"/>)
universe@207 210 </span>
universe@124 211 </c:if>
universe@124 212 </div>
universe@207 213 <div id="comment-view-${comment.id}" class="medskip markdown-styled">
universe@207 214 ${comment.commentFormatted}
universe@207 215 </div>
universe@207 216 <div id="comment-editor-${comment.id}" style="display: none">
universe@207 217 <form id="comment-form-${comment.id}" action="${issuesHref}${issue.id}/comment" method="post">
universe@207 218 <input type="hidden" name="commentid" value="${comment.id}">
universe@207 219 <table class="formtable fullwidth">
universe@207 220 <tbody>
universe@207 221 <tr>
universe@207 222 <td>
universe@207 223 <textarea rows="5" name="comment" required><c:out value="${comment.comment}"/></textarea>
universe@207 224 </td>
universe@207 225 </tr>
universe@207 226 </tbody>
universe@207 227 <tfoot>
universe@207 228 <tr>
universe@207 229 <td>
universe@207 230 <button type="submit"><fmt:message key="button.comment.edit"/></button>
universe@207 231 </td>
universe@207 232 </tr>
universe@207 233 </tfoot>
universe@207 234 </table>
universe@207 235 </form>
universe@124 236 </div>
universe@124 237 </div>
universe@124 238 </c:forEach>
universe@124 239 </c:if>
universe@124 240

mercurial