src/main/webapp/WEB-INF/jsp/projects.jsp

Thu, 08 Oct 2020 20:38:43 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 08 Oct 2020 20:38:43 +0200
changeset 110
9d0be0b1580f
parent 109
2e0669e814ff
child 117
874ff787949b
permissions
-rw-r--r--

adds indicators for version status

replaces table column "Status" with version tag
fixes New Version form button not overriding the session version ID

47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 <%--
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4 Copyright 2018 Mike Becker. All rights reserved.
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 Redistribution and use in source and binary forms, with or without
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 modification, are permitted provided that the following conditions are met:
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 1. Redistributions of source code must retain the above copyright
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 notice, this list of conditions and the following disclaimer.
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 2. Redistributions in binary form must reproduce the above copyright
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 notice, this list of conditions and the following disclaimer in the
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 documentation and/or other materials provided with the distribution.
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 --%>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 <%@page pageEncoding="UTF-8" %>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30
99
a369fb1b3aa2 cleanup ProjectsModule
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.ProjectView" scope="request"/>
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32
99
a369fb1b3aa2 cleanup ProjectsModule
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
33 <c:if test="${empty viewmodel.projectList}">
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34 <div class="info-box">
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
35 <fmt:message key="no-projects"/>
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
36 </div>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37 </c:if>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 <div id="tool-area">
78
bb4c52bf3439 bloat removal 2/3 - moduleInfo
Mike Becker <universe@uap-core.de>
parents: 74
diff changeset
40 <a href="./projects/edit" class="button"><fmt:message key="button.create"/></a>
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
41 </div>
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
42
99
a369fb1b3aa2 cleanup ProjectsModule
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
43 <c:if test="${not empty viewmodel.projectList}">
81
1a2e7b5d48f7 adds issue summaries
Mike Becker <universe@uap-core.de>
parents: 78
diff changeset
44 <table id="project-list" class="datatable medskip">
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
45 <colgroup>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
46 <col>
81
1a2e7b5d48f7 adds issue summaries
Mike Becker <universe@uap-core.de>
parents: 78
diff changeset
47 <col width="20%">
1a2e7b5d48f7 adds issue summaries
Mike Becker <universe@uap-core.de>
parents: 78
diff changeset
48 <col width="50%">
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
49 <col width="6%">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
50 <col width="6%">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
51 <col width="6%">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
52 <col width="6%">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
53 <col width="6%">
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
54 </colgroup>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
55 <thead>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
56 <tr>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
57 <th></th>
82
4ec7f2600c83 removes stupid thead prefix from every resource file
Mike Becker <universe@uap-core.de>
parents: 81
diff changeset
58 <th><fmt:message key="name"/></th>
4ec7f2600c83 removes stupid thead prefix from every resource file
Mike Becker <universe@uap-core.de>
parents: 81
diff changeset
59 <th><fmt:message key="repoUrl"/></th>
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
60 <th class="hcenter"><fmt:message key="version.latest"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
61 <th class="hcenter"><fmt:message key="version.next"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
62 <th class="hcenter"><fmt:message key="issues.open"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
63 <th class="hcenter"><fmt:message key="issues.active"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
64 <th class="hcenter"><fmt:message key="issues.done"/></th>
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
65 </tr>
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
66 </thead>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
67 <tbody>
99
a369fb1b3aa2 cleanup ProjectsModule
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
68 <c:forEach var="projectInfo" items="${viewmodel.projectList}">
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
69 <c:set var="project" scope="page" value="${projectInfo.project}"/>
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
70 <tr class="nowrap">
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
71 <td style="width: 2em;"><a href="./projects/edit?pid=${project.id}">&#x270e;</a></td>
109
2e0669e814ff adds versions overview
Mike Becker <universe@uap-core.de>
parents: 99
diff changeset
72 <td><a href="./projects/versions?pid=${project.id}"><c:out value="${project.name}"/></a>
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
73 </td>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
74 <td>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
75 <c:if test="${not empty project.repoUrl}">
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
76 <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
77 value="${project.repoUrl}"/></a>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
78 </c:if>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
79 </td>
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
80 <td class="hright">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
81 <c:if test="${not empty projectInfo.latestVersion}">
99
a369fb1b3aa2 cleanup ProjectsModule
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
82 <a href="./projects/view?pid=${project.id}&vid=${projectInfo.latestVersion.id}"><c:out value="${projectInfo.latestVersion.name}"/></a>
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
83 </c:if>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
84 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
85 <td class="hright">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
86 <c:if test="${not empty projectInfo.nextVersion}">
99
a369fb1b3aa2 cleanup ProjectsModule
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
87 <a href="./projects/view?pid=${project.id}&vid=${projectInfo.nextVersion.id}"><c:out value="${projectInfo.nextVersion.name}"/></a>
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
88 </c:if>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
89 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
90 <td class="hright">${projectInfo.issueSummary.open}</td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
91 <td class="hright">${projectInfo.issueSummary.active}</td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents: 82
diff changeset
92 <td class="hright">${projectInfo.issueSummary.done}</td>
72
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
93 </tr>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
94 </c:forEach>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
95 </tbody>
0646c14e36fb some reformatting
Mike Becker <universe@uap-core.de>
parents: 70
diff changeset
96 </table>
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
97 </c:if>

mercurial