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

Fri, 30 Dec 2022 19:14:04 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 30 Dec 2022 19:14:04 +0100
changeset 264
7d67245e5121
parent 259
30ec2cf1e495
child 266
65c72e65ff67
permissions
-rw-r--r--

disable autocomplete for issue relations

The reason is that autocomplete would suggest issues
from other projects. But we only want the datalist
to serve the suggestions.

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
180
009700915269 merge resource bundles
Mike Becker <universe@uap-core.de>
parents: 134
diff changeset
4 Copyright 2021 Mike Becker. All rights reserved.
47
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
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.ProjectsView" scope="request"/>
47
57cfb94ab99f projects can now be added and updated
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
33 <c:if test="${empty viewmodel.projects}">
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">
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
40 <a href="./projects/-/create" class="button"><fmt:message key="button.project.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
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
43 <c:if test="${not empty viewmodel.projects}">
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>
259
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
47 <col style="width: 20%">
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
48 <col style="width: 50%">
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
49 <col style="width: 6%">
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
50 <col style="width: 6%">
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
51 <col style="width: 6%">
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
52 <col style="width: 6%">
30ec2cf1e495 fix obsolete width attribute in col
Mike Becker <universe@uap-core.de>
parents: 184
diff changeset
53 <col style="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>
181
502a10e24b85 renames several resource keys
Mike Becker <universe@uap-core.de>
parents: 180
diff changeset
58 <th><fmt:message key="project.name"/></th>
502a10e24b85 renames several resource keys
Mike Becker <universe@uap-core.de>
parents: 180
diff changeset
59 <th><fmt:message key="project.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>
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
68 <c:forEach var="projectInfo" items="${viewmodel.projects}">
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">
134
f47e82cd6077 completes feature: project components
Mike Becker <universe@uap-core.de>
parents: 132
diff changeset
71 <td style="width: 2em;"><a href="./projects/${project.node}/edit">&#x270e;</a></td>
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
72 <td><a href="./projects/${project.node}"><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}">
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
82 <a href="./projects/${project.node}/issues/${projectInfo.latestVersion.node}/-/"><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}">
184
e8eecee6aadf completes kotlin migration
Mike Becker <universe@uap-core.de>
parents: 181
diff changeset
87 <a href="./projects/${project.node}/issues/${projectInfo.nextVersion.node}/-/"><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