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

Sat, 22 Jul 2023 22:32:04 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 22 Jul 2023 22:32:04 +0200
changeset 284
671c1c8fbf1c
parent 269
8646c229bd32
child 292
703591e739f4
permissions
-rw-r--r--

add full support for commit references - fixes #276

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@263 158 <hr class="issue-view-separator"/>
universe@284 159
universe@284 160 <c:if test="${not empty viewmodel.commitLinks}">
universe@284 161 <h2><fmt:message key="issue.commits" /></h2>
universe@284 162 <table class="issue-view fullwidth">
universe@284 163 <colgroup>
universe@284 164 <col>
universe@284 165 <col class="fullwidth">
universe@284 166 </colgroup>
universe@284 167 <thead>
universe@284 168 <tr>
universe@284 169 <th><fmt:message key="issue.commits.hash"/></th>
universe@284 170 <th><fmt:message key="issue.commits.message"/></th>
universe@284 171 </tr>
universe@284 172 </thead>
universe@284 173 <tbody>
universe@284 174 <c:forEach var="commitLink" items="${viewmodel.commitLinks}">
universe@284 175 <tr>
universe@284 176 <td><a href="${commitLink.url}" target="_blank">${commitLink.hash}</a></td>
universe@284 177 <td><c:out value="${commitLink.message}"/> </td>
universe@284 178 </tr>
universe@284 179 </c:forEach>
universe@284 180 </tbody>
universe@284 181 </table>
universe@284 182 </c:if>
universe@284 183
universe@263 184 <h2>
universe@263 185 <fmt:message key="issue.relations"/>
universe@263 186 </h2>
universe@263 187 <form id="relation-form" action="${issuesHref}${issue.id}/relation" method="post">
universe@263 188 <c:if test="${not empty viewmodel.relationError}">
universe@263 189 <div class="error-box">
universe@263 190 <fmt:message key="${viewmodel.relationError}"/>
universe@263 191 </div>
universe@263 192 </c:if>
universe@263 193 <table class="issue-view relation-editor fullwidth">
universe@263 194 <colgroup>
universe@263 195 <col>
universe@263 196 <col>
universe@263 197 <col class="fullwidth">
universe@263 198 </colgroup>
universe@263 199 <thead>
universe@263 200 <tr>
universe@263 201 <th></th>
universe@263 202 <th><fmt:message key="issue.relations.type"/></th>
universe@263 203 <th><fmt:message key="issue.relations.issue"/></th>
universe@263 204 </tr>
universe@263 205 </thead>
universe@263 206 <tbody>
universe@263 207 <tr>
universe@263 208 <td>
universe@263 209 <button type="submit"><fmt:message key="button.add"/></button>
universe@263 210 </td>
universe@263 211 <td>
universe@263 212 <select name="type">
universe@263 213 <c:forEach var="type" items="${viewmodel.relationTypes}">
universe@263 214 <option value="${type}"><fmt:message key="issue.relations.type.${type}"/></option>
universe@263 215 <c:if test="${not type.bidi}">
universe@263 216 <option value="!${type}"><fmt:message key="issue.relations.type.${type}.rev"/></option>
universe@263 217 </c:if>
universe@263 218 </c:forEach>
universe@263 219 </select>
universe@263 220 </td>
universe@263 221 <td>
universe@264 222 <input name="issue" list="linkable-issues" autocomplete="off">
universe@263 223 <datalist id="linkable-issues">
universe@263 224 <c:forEach var="linkableIssue" items="${viewmodel.linkableIssues}">
universe@269 225 <option value="#${linkableIssue.id} - <c:out value="${linkableIssue.subject}"/> (<fmt:message key="issue.category.${linkableIssue.category}" />)"></option>
universe@263 226 </c:forEach>
universe@263 227 </datalist>
universe@263 228 </td>
universe@263 229 </tr>
universe@263 230 <c:forEach var="relation" items="${viewmodel.currentRelations}">
universe@263 231 <tr>
universe@263 232 <td>
universe@263 233 <a href="${issuesHref}${issue.id}/removeRelation?to=${relation.to.id}&type=${relation.type}&reverse=${relation.reverse}" class="button submit">
universe@263 234 <fmt:message key="button.remove"/>
universe@263 235 </a>
universe@263 236 </td>
universe@263 237 <td><fmt:message key="issue.relations.type.${relation.type}${relation.reverse?'.rev':''}"/></td>
universe@263 238 <td>
universe@263 239 <a href="${issuesHref}${relation.to.id}">
universe@269 240 #${relation.to.id} - <c:out value="${relation.to.subject}"/>
universe@263 241 </a>
universe@269 242 <div style="display: inline-block; width: .25em"></div>
universe@269 243 <div class="issue-tag ${relation.to.category}">
universe@269 244 <fmt:message key="issue.category.${relation.to.category}" />
universe@269 245 </div>
universe@269 246 <div class="issue-tag phase-${relation.to.status.phase.number}">
universe@269 247 <fmt:message key="issue.status.${relation.to.status}" />
universe@269 248 </div>
universe@263 249 </td>
universe@263 250 </tr>
universe@263 251 </c:forEach>
universe@263 252 </tbody>
universe@263 253 </table>
universe@263 254 </form>
universe@263 255
universe@263 256 <hr class="issue-view-separator"/>
universe@224 257 <h2>
universe@224 258 <fmt:message key="issue.comments"/>
universe@224 259 <c:if test="${not empty viewmodel.comments}">
universe@224 260 (${fn:length(viewmodel.comments)})
universe@224 261 </c:if>
universe@224 262 </h2>
universe@124 263 <c:if test="${viewmodel.issue.id ge 0}">
universe@184 264 <form id="comment-form" action="${issuesHref}${issue.id}/comment" method="post">
universe@124 265 <table class="formtable fullwidth">
universe@124 266 <tbody>
universe@124 267 <tr>
universe@214 268 <td><textarea rows="3" name="comment" required></textarea></td>
universe@124 269 </tr>
universe@124 270 </tbody>
universe@124 271 <tfoot>
universe@124 272 <tr>
universe@124 273 <td>
universe@124 274 <button type="submit"><fmt:message key="button.comment"/></button>
universe@124 275 </td>
universe@124 276 </tr>
universe@124 277 </tfoot>
universe@124 278 </table>
universe@124 279 </form>
universe@124 280 <c:forEach var="comment" items="${viewmodel.comments}">
universe@124 281 <div class="comment">
universe@207 282 <div class="comment-author">
universe@124 283 <c:if test="${not empty comment.author}">
universe@165 284 <c:if test="${not empty comment.author.mail}">
universe@207 285 <a class="comment-author-name" href="mailto:${comment.author.mail}">
universe@165 286 </c:if>
universe@124 287 <c:out value="${comment.author.displayname}"/>
universe@165 288 <c:if test="${not empty comment.author.mail}">
universe@165 289 </a>
universe@165 290 </c:if>
universe@207 291 <c:if test="${comment.author.username eq pageContext.request.remoteUser}">
universe@207 292 <a class="comment-edit-icon" onclick="showCommentEditor(${comment.id})">&#x270e;</a>
universe@207 293 </c:if>
universe@124 294 </c:if>
universe@124 295 <c:if test="${empty comment.author}">
universe@124 296 <fmt:message key="issue.comments.anonauthor"/>
universe@124 297 </c:if>
universe@124 298 </div>
universe@124 299 <div class="smalltext">
universe@124 300 <fmt:formatDate type="BOTH" value="${comment.created}" />
universe@124 301 <c:if test="${comment.updateCount gt 0}">
universe@207 302 <span class="comment-edit-info">
universe@207 303 (<fmt:message key="issue.comments.lastupdate"/> <fmt:formatDate type="BOTH" value="${comment.updated}" />, ${comment.updateCount} <fmt:message key="issue.comments.updateCount"/>)
universe@207 304 </span>
universe@124 305 </c:if>
universe@124 306 </div>
universe@207 307 <div id="comment-view-${comment.id}" class="medskip markdown-styled">
universe@207 308 ${comment.commentFormatted}
universe@207 309 </div>
universe@207 310 <div id="comment-editor-${comment.id}" style="display: none">
universe@207 311 <form id="comment-form-${comment.id}" action="${issuesHref}${issue.id}/comment" method="post">
universe@207 312 <input type="hidden" name="commentid" value="${comment.id}">
universe@207 313 <table class="formtable fullwidth">
universe@207 314 <tbody>
universe@207 315 <tr>
universe@207 316 <td>
universe@207 317 <textarea rows="5" name="comment" required><c:out value="${comment.comment}"/></textarea>
universe@207 318 </td>
universe@207 319 </tr>
universe@207 320 </tbody>
universe@207 321 <tfoot>
universe@207 322 <tr>
universe@207 323 <td>
universe@207 324 <button type="submit"><fmt:message key="button.comment.edit"/></button>
universe@207 325 </td>
universe@207 326 </tr>
universe@207 327 </tfoot>
universe@207 328 </table>
universe@207 329 </form>
universe@124 330 </div>
universe@124 331 </div>
universe@124 332 </c:forEach>
universe@124 333 </c:if>
universe@124 334

mercurial