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

Sat, 27 Nov 2021 10:44:17 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 27 Nov 2021 10:44:17 +0100
changeset 239
9365c7fb0240
parent 231
dcb1d5a7ea3a
child 263
aa22103809cd
permissions
-rw-r--r--

#109 add assignee filter to rss feed

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@230 84 <div class="issue-tag ${issue.category}">
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@230 90 <div class="issue-tag phase-${issue.status.phase.number}">
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@231 98 <c:out value="${issue.resolved.name}"/>
universe@212 99 </td>
universe@212 100 <th><fmt:message key="issue.affected-versions"/></th>
universe@212 101 <td>
universe@231 102 <c:out value="${issue.affected.name}"/>
universe@212 103 </td>
universe@212 104 </tr>
universe@212 105 </tbody>
universe@212 106 </table>
universe@212 107 <table class="issue-view fullwidth">
universe@212 108 <colgroup>
universe@212 109 <col>
universe@212 110 <col style="width: 100%">
universe@212 111 </colgroup>
universe@212 112 <tbody>
universe@212 113 <tr>
universe@146 114 <th><fmt:message key="issue.subject"/></th>
universe@146 115 <td><c:out value="${issue.subject}"/></td>
universe@146 116 </tr>
universe@146 117 <tr>
universe@146 118 <th class="vtop"><fmt:message key="issue.description"/></th>
universe@146 119 <td>
universe@162 120 <div class="markdown-styled">
universe@162 121 ${issue.description}
universe@162 122 </div>
universe@146 123 </td>
universe@146 124 </tr>
universe@146 125 <tr>
universe@146 126 <th><fmt:message key="issue.assignee"/></th>
universe@146 127 <td>
universe@146 128 <c:if test="${not empty issue.assignee}">
universe@226 129 <c:if test="${not empty issue.assignee.mail}">
universe@226 130 <a href="mailto:<c:out value="${issue.assignee.mail}"/>">
universe@226 131 <c:out value="${issue.assignee.displayname}"/>
universe@226 132 </a>
universe@226 133 </c:if>
universe@226 134 <c:if test="${empty issue.assignee.mail}">
universe@146 135 <c:out value="${issue.assignee.displayname}"/>
universe@226 136 </c:if>
universe@146 137 </c:if>
universe@146 138 <c:if test="${empty issue.assignee}">
universe@146 139 <fmt:message key="placeholder.null-assignee" />
universe@146 140 </c:if>
universe@146 141 </td>
universe@146 142 </tr>
universe@146 143 <tr>
universe@146 144 <th><fmt:message key="issue.eta"/></th>
universe@146 145 <td><fmt:formatDate value="${issue.eta}" /></td>
universe@146 146 </tr>
universe@146 147 </tbody>
universe@146 148 </table>
universe@212 149 <div class="hright">
universe@212 150 <a href="${issuesHref}" class="button">
universe@212 151 <fmt:message key="button.back"/>
universe@212 152 </a>
universe@212 153 <a href="${issuesHref}${issue.id}/edit" class="button submit">
universe@212 154 <fmt:message key="button.issue.edit"/>
universe@212 155 </a>
universe@212 156 </div>
universe@146 157
universe@124 158 <hr class="comments-separator"/>
universe@224 159 <h2>
universe@224 160 <fmt:message key="issue.comments"/>
universe@224 161 <c:if test="${not empty viewmodel.comments}">
universe@224 162 (${fn:length(viewmodel.comments)})
universe@224 163 </c:if>
universe@224 164 </h2>
universe@124 165 <c:if test="${viewmodel.issue.id ge 0}">
universe@184 166 <form id="comment-form" action="${issuesHref}${issue.id}/comment" method="post">
universe@124 167 <table class="formtable fullwidth">
universe@124 168 <tbody>
universe@124 169 <tr>
universe@214 170 <td><textarea rows="3" name="comment" required></textarea></td>
universe@124 171 </tr>
universe@124 172 </tbody>
universe@124 173 <tfoot>
universe@124 174 <tr>
universe@124 175 <td>
universe@124 176 <button type="submit"><fmt:message key="button.comment"/></button>
universe@124 177 </td>
universe@124 178 </tr>
universe@124 179 </tfoot>
universe@124 180 </table>
universe@124 181 </form>
universe@124 182 <c:forEach var="comment" items="${viewmodel.comments}">
universe@124 183 <div class="comment">
universe@207 184 <div class="comment-author">
universe@124 185 <c:if test="${not empty comment.author}">
universe@165 186 <c:if test="${not empty comment.author.mail}">
universe@207 187 <a class="comment-author-name" href="mailto:${comment.author.mail}">
universe@165 188 </c:if>
universe@124 189 <c:out value="${comment.author.displayname}"/>
universe@165 190 <c:if test="${not empty comment.author.mail}">
universe@165 191 </a>
universe@165 192 </c:if>
universe@207 193 <c:if test="${comment.author.username eq pageContext.request.remoteUser}">
universe@207 194 <a class="comment-edit-icon" onclick="showCommentEditor(${comment.id})">&#x270e;</a>
universe@207 195 </c:if>
universe@124 196 </c:if>
universe@124 197 <c:if test="${empty comment.author}">
universe@124 198 <fmt:message key="issue.comments.anonauthor"/>
universe@124 199 </c:if>
universe@124 200 </div>
universe@124 201 <div class="smalltext">
universe@124 202 <fmt:formatDate type="BOTH" value="${comment.created}" />
universe@124 203 <c:if test="${comment.updateCount gt 0}">
universe@207 204 <span class="comment-edit-info">
universe@207 205 (<fmt:message key="issue.comments.lastupdate"/> <fmt:formatDate type="BOTH" value="${comment.updated}" />, ${comment.updateCount} <fmt:message key="issue.comments.updateCount"/>)
universe@207 206 </span>
universe@124 207 </c:if>
universe@124 208 </div>
universe@207 209 <div id="comment-view-${comment.id}" class="medskip markdown-styled">
universe@207 210 ${comment.commentFormatted}
universe@207 211 </div>
universe@207 212 <div id="comment-editor-${comment.id}" style="display: none">
universe@207 213 <form id="comment-form-${comment.id}" action="${issuesHref}${issue.id}/comment" method="post">
universe@207 214 <input type="hidden" name="commentid" value="${comment.id}">
universe@207 215 <table class="formtable fullwidth">
universe@207 216 <tbody>
universe@207 217 <tr>
universe@207 218 <td>
universe@207 219 <textarea rows="5" name="comment" required><c:out value="${comment.comment}"/></textarea>
universe@207 220 </td>
universe@207 221 </tr>
universe@207 222 </tbody>
universe@207 223 <tfoot>
universe@207 224 <tr>
universe@207 225 <td>
universe@207 226 <button type="submit"><fmt:message key="button.comment.edit"/></button>
universe@207 227 </td>
universe@207 228 </tr>
universe@207 229 </tfoot>
universe@207 230 </table>
universe@207 231 </form>
universe@124 232 </div>
universe@124 233 </div>
universe@124 234 </c:forEach>
universe@124 235 </c:if>
universe@124 236

mercurial