adds mailto link to issue-view.jsp

Wed, 18 Aug 2021 15:04:59 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Aug 2021 15:04:59 +0200
changeset 226
c8e1b5282f69
parent 225
87328572e36f
child 227
f0ede8046b59

adds mailto link to issue-view.jsp

src/main/webapp/WEB-INF/changelogs/changelog-de.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jsp/issue-view.jsp file | annotate | diff | comparison | revisions
     1.1 --- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Wed Aug 18 14:57:45 2021 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Wed Aug 18 15:04:59 2021 +0200
     1.3 @@ -30,6 +30,7 @@
     1.4      <li>Datum der Veröffentlichung und des Supportendes zu Versionen hinzugefügt.</li>
     1.5      <li>Gesamtanzahl der Kommentare wird nun angezeigt.</li>
     1.6      <li>Spalte für zugewiesener Entwickler zu den Vorgangstabellen hinzugefügt.</li>
     1.7 +    <li>E-Mail Link in Vorgangsansicht hinzugefügt, wenn der Zugewiesene eine Mailadresse hat.</li>
     1.8      <li>Installationsanweisungen hinzugefügt.</li>
     1.9  </ul>
    1.10  
     2.1 --- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Wed Aug 18 14:57:45 2021 +0200
     2.2 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Wed Aug 18 15:04:59 2021 +0200
     2.3 @@ -30,6 +30,7 @@
     2.4      <li>Adds release and end of life dates to versions.</li>
     2.5      <li>Adds the total number of comments to the caption.</li>
     2.6      <li>Adds assignee to the issue overview tables.</li>
     2.7 +    <li>Adds mailto link in issue view when the assignee has a mail address.</li>
     2.8      <li>Adds install instructions.</li>
     2.9  </ul>
    2.10  
     3.1 --- a/src/main/webapp/WEB-INF/jsp/issue-view.jsp	Wed Aug 18 14:57:45 2021 +0200
     3.2 +++ b/src/main/webapp/WEB-INF/jsp/issue-view.jsp	Wed Aug 18 15:04:59 2021 +0200
     3.3 @@ -130,7 +130,14 @@
     3.4          <th><fmt:message key="issue.assignee"/></th>
     3.5          <td>
     3.6              <c:if test="${not empty issue.assignee}">
     3.7 +                <c:if test="${not empty issue.assignee.mail}">
     3.8 +                <a href="mailto:<c:out value="${issue.assignee.mail}"/>">
     3.9 +                    <c:out value="${issue.assignee.displayname}"/>
    3.10 +                </a>
    3.11 +                </c:if>
    3.12 +                <c:if test="${empty issue.assignee.mail}">
    3.13                  <c:out value="${issue.assignee.displayname}"/>
    3.14 +                </c:if>
    3.15              </c:if>
    3.16              <c:if test="${empty issue.assignee}">
    3.17                  <fmt:message key="placeholder.null-assignee" />

mercurial