src/main/webapp/WEB-INF/dynamic_fragments/version-form.jsp

Sun, 17 May 2020 16:23:39 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 17 May 2020 16:23:39 +0200
changeset 59
c759c60507a2
parent 51
src/main/webapp/WEB-INF/dynamic_fragments/user-form.jsp@dd0a45ae25d7
child 60
ed51c5b1f3e5
permissions
-rw-r--r--

adds version management

universe@51 1 <%--
universe@51 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@51 3
universe@51 4 Copyright 2018 Mike Becker. All rights reserved.
universe@51 5
universe@51 6 Redistribution and use in source and binary forms, with or without
universe@51 7 modification, are permitted provided that the following conditions are met:
universe@51 8
universe@51 9 1. Redistributions of source code must retain the above copyright
universe@51 10 notice, this list of conditions and the following disclaimer.
universe@51 11
universe@51 12 2. Redistributions in binary form must reproduce the above copyright
universe@51 13 notice, this list of conditions and the following disclaimer in the
universe@51 14 documentation and/or other materials provided with the distribution.
universe@51 15
universe@51 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@51 17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@51 18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@51 19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@51 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@51 21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@51 22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@51 23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@51 24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@51 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@51 26 --%>
universe@51 27 <%@page pageEncoding="UTF-8" %>
universe@51 28 <%@page import="de.uapcore.lightpit.Constants" %>
universe@51 29 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@51 30 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
universe@51 31
universe@51 32 <c:set scope="page" var="moduleInfo" value="${requestScope[Constants.REQ_ATTR_MODULE_INFO]}"/>
universe@59 33 <c:set scope="page" var="selectedProject" value="${sessionScope[ProjectsModule.SESSION_ATTR_SELECTED_PROJECT]}"/>
universe@51 34
universe@59 35 <jsp:useBean id="version" type="de.uapcore.lightpit.entities.Version" scope="request"/>
universe@59 36 <jsp:useBean id="versionStatusEnum" type="de.uapcore.lightpit.entities.VersionStatus[]" scope="request" />
universe@51 37
universe@59 38 <form action="./${moduleInfo.modulePath}/versions/commit" method="post">
universe@51 39 <table class="formtable" style="width: 35ch">
universe@51 40 <colgroup>
universe@51 41 <col>
universe@51 42 <col style="width: 100%">
universe@51 43 </colgroup>
universe@51 44 <tbody>
universe@51 45 <tr>
universe@59 46 <th><fmt:message key="thead.version.name"/></th>
universe@59 47 <td><input name="name" type="text" maxlength="20" required value="${version.name}" /> </td>
universe@51 48 </tr>
universe@51 49 <tr>
universe@59 50 <th><fmt:message key="thead.version.status"/></th>
universe@59 51 <td>
universe@59 52 <select name="status" required>
universe@59 53 <c:forEach var="elem" items="${versionStatusEnum}">
universe@59 54 <option value="${elem}"><fmt:message key="version.status.${elem}" /> </option>
universe@59 55 </c:forEach>
universe@59 56 </select>
universe@59 57 </td>
universe@51 58 </tr>
universe@59 59 <tr title="<fmt:message key="tooltip.ordinal" />">
universe@59 60 <th><fmt:message key="thead.version.ordinal"/></th>
universe@59 61 <td>
universe@59 62 <input name="ordinal" type="number" min="0" value="${version.ordinal}" />
universe@59 63 </td>
universe@51 64 </tr>
universe@51 65 </tbody>
universe@51 66 <tfoot>
universe@51 67 <tr>
universe@51 68 <td colspan="2">
universe@59 69 <input type="hidden" name="id" value="${version.id}" />
universe@59 70 <a href="./${moduleInfo.modulePath}/versions/" class="button"><fmt:message bundle="${lightpit_bundle}" key="button.cancel"/></a>
universe@51 71 <button type="submit"><fmt:message bundle="${lightpit_bundle}" key="button.okay" /></button>
universe@51 72 </td>
universe@51 73 </tr>
universe@51 74 </tfoot>
universe@51 75 </table>
universe@51 76 </form>

mercurial