web/WEB-INF/dynamic_fragments/modules.jsp

Sun, 08 Apr 2018 14:40:57 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 08 Apr 2018 14:40:57 +0200
changeset 24
8137ec335416
parent 21
b213fef2539e
child 26
65d5a0ca49ae
permissions
-rw-r--r--

updates copyright header

universe@13 1 <%--
universe@13 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@13 3
universe@24 4 Copyright 2018 Mike Becker. All rights reserved.
universe@13 5
universe@13 6 Redistribution and use in source and binary forms, with or without
universe@13 7 modification, are permitted provided that the following conditions are met:
universe@13 8
universe@13 9 1. Redistributions of source code must retain the above copyright
universe@13 10 notice, this list of conditions and the following disclaimer.
universe@13 11
universe@13 12 2. Redistributions in binary form must reproduce the above copyright
universe@13 13 notice, this list of conditions and the following disclaimer in the
universe@13 14 documentation and/or other materials provided with the distribution.
universe@13 15
universe@13 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@13 17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@13 18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@13 19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@13 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@13 21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@13 22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@13 23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@13 24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@13 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@13 26 --%>
universe@13 27 <%@page pageEncoding="UTF-8" session="true" %>
universe@13 28 <%@page import="de.uapcore.lightpit.Constants" %>
universe@13 29 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@13 30 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
universe@13 31
universe@21 32 <%-- TODO: a lot of work --%>
universe@21 33 <table>
universe@21 34 <tr>
universe@21 35 <th>Module</th>
universe@21 36 <th>Path</th>
universe@21 37 <th>Description</th>
universe@21 38 <th>Active</th>
universe@21 39 <th>Class</th>
universe@21 40 <th>Resource Bundle</th>
universe@21 41 </tr>
universe@21 42 <c:forEach items="${modules}" var="module">
universe@21 43 <tr>
universe@21 44 <td>${module.annotatedInfos.nameKey}</td>
universe@21 45 <td>${module.annotatedInfos.modulePath}</td>
universe@21 46 <td>${module.annotatedInfos.descKey}</td>
universe@21 47 <td align="center">${module.visible}</td>
universe@21 48 <td>${module.classname}</td>
universe@21 49 <td>${module.annotatedInfos.bundleBaseName}</td>
universe@21 50 </tr>
universe@13 51 </c:forEach>
universe@21 52 </table>

mercurial