--- /dev/null
+<%--
+ Document : admin_category_selection_box
+ Created on : 14.08.2015, 12:51:05
+ Author : Roland Haeder
+--%>
+
+<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%>
+<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%>
+<jsp:useBean id="controller" scope="session" class="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean" type="PizzaBean" />
+
+<select class="select" name="categoryId" size="1">
+ <c:forEach var="category" items="${controller.allCategoriesIterator}">
+ <option value="${category.categoryId}">${category.decodedTitle}</option>
+ </c:forEach>
+</select>
--- /dev/null
+<%--
+ Document : admin_footer
+ Created on : 11.08.2015, 12:28:03
+ Author : Roland Haeder
+--%>
+
+<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<c:set var="basePath" value="${pageContext.request.contextPath}" />
+
+<div class="footer">
+ <ul class="footer_nav">
+ <li><a href="${basePath}/">Zur Webseite</a></li>
+ </ul>
+</div>
+
+<div class="clear"></div>
--- /dev/null
+<%--
+ Document : admin_menu
+ Created on : 06.08.2015, 12:41:44
+ Author : Roland Haeder
+--%>
+
+<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<c:set var="basePath" value="${pageContext.request.contextPath}" />
+
+<div id="menu">
+ <ul>
+ <li><a href="${basePath}/admin/" title="Eingangsseite">Home</a></li>
+ <li><a href="${basePath}/admin/category.jsp" title="Kazegorie">Kategorie</a></li>
+ <li><a href="${basePath}/admin/product.jsp" title="Produkt">Produkt</a></li>
+ </ul>
+
+ <ul>
+ <li><a href="${basePath}/admin/logout.jsp" title="Ausloggen">Ausloggen</a></li>
+ <li><a href="${basePath}/" title="Zur Webseite, aber eingeloggt bleiben">Webseite aufrufen</a></li>
+ </ul>
+</div>
--- /dev/null
+<%--
+ Document : admin_parent_category_selection_box
+ Created on : 14.08.2015, 12:51:05
+ Author : Roland Haeder
+--%>
+
+<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%>
+<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%>
+<jsp:useBean id="controller" scope="session" class="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean" type="PizzaBean" />
+
+<select class="select" name="parentId" size="1">
+ <option value="">Ist oberste Kategorie</option>
+ <c:forEach var="category" items="${controller.allCategoriesIterator}">
+ <option value="${category.categoryId}">${category.decodedTitle}</option>
+ </c:forEach>
+</select>
</div>
</div>
- <jsp:include page="/static/admin/admin_menu.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/admin/admin_menu.jsp" flush="false" />
<div id="content_outer">
<div id="content_title">
</div>
<div class="table_right">
- <jsp:include flush="false" page="/static/admin/admin_parent_category_selection_box.jsp" />
+ <jsp:include flush="false" page="/WEB-INF/static/admin/admin_parent_category_selection_box.jsp" />
</div>
<div class="clear"></div>
</div>
</div>
- <jsp:include page="/static/admin/admin_footer.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/admin/admin_footer.jsp" flush="false" />
</body>
</html>
</div>
</div>
- <jsp:include page="/static/admin/admin_menu.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/admin/admin_menu.jsp" flush="false" />
<div id="content_outer">
<div id="content_title">
</div>
</div>
- <jsp:include page="/static/admin/admin_footer.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/admin/admin_footer.jsp" flush="false" />
</body>
</html>
</div>
</div>
- <jsp:include page="/static/admin/admin_menu.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/admin/admin_menu.jsp" flush="false" />
<div id="content_outer">
<div id="content_title">
</div>
<div class="table_right">
- <jsp:include flush="false" page="/static/admin/admin_category_selection_box.jsp" />
+ <jsp:include flush="false" page="/WEB-INF/static/admin/admin_category_selection_box.jsp" />
</div>
<div class="clear"></div>
</div>
</div>
- <jsp:include page="/static/admin/admin_footer.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/admin/admin_footer.jsp" flush="false" />
</body>
</html>
</div>
</div>
- <jsp:include page="/static/guest/guest_menu.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/guest/guest_menu.jsp" flush="false" />
<div id="content_outer">
<div id="content_title">
</div>
</div>
- <jsp:include page="/static/guest/guest_footer.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/guest/guest_footer.jsp" flush="false" />
</body>
</html>
</div>
</div>
- <jsp:include page="/static/guest/guest_menu.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/guest/guest_menu.jsp" flush="false" />
<div id="content_outer">
<div id="content_title">
</div>
</div>
- <jsp:include page="/static/guest/guest_footer.jsp" flush="false" />
+ <jsp:include page="/WEB-INF/static/guest/guest_footer.jsp" flush="false" />
</body>
</html>
+++ /dev/null
-<%--
- Document : admin_category_selection_box
- Created on : 14.08.2015, 12:51:05
- Author : Roland Haeder
---%>
-
-<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
-<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%>
-<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%>
-<jsp:useBean id="controller" scope="session" class="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean" type="PizzaBean" />
-
-<select class="select" name="categoryId" size="1">
- <c:forEach var="category" items="${controller.allCategoriesIterator}">
- <option value="${category.categoryId}">${category.decodedTitle}</option>
- </c:forEach>
-</select>
+++ /dev/null
-<%--
- Document : admin_footer
- Created on : 11.08.2015, 12:28:03
- Author : Roland Haeder
---%>
-
-<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
-<c:set var="basePath" value="${pageContext.request.contextPath}" />
-
-<div class="footer">
- <ul class="footer_nav">
- <li><a href="${basePath}/">Zur Webseite</a></li>
- </ul>
-</div>
-
-<div class="clear"></div>
+++ /dev/null
-<%--
- Document : admin_menu
- Created on : 06.08.2015, 12:41:44
- Author : Roland Haeder
---%>
-
-<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
-<c:set var="basePath" value="${pageContext.request.contextPath}" />
-
-<div id="menu">
- <ul>
- <li><a href="${basePath}/admin/" title="Eingangsseite">Home</a></li>
- <li><a href="${basePath}/admin/category.jsp" title="Kazegorie">Kategorie</a></li>
- <li><a href="${basePath}/admin/product.jsp" title="Produkt">Produkt</a></li>
- </ul>
-
- <ul>
- <li><a href="${basePath}/admin/logout.jsp" title="Ausloggen">Ausloggen</a></li>
- <li><a href="${basePath}/" title="Zur Webseite, aber eingeloggt bleiben">Webseite aufrufen</a></li>
- </ul>
-</div>
+++ /dev/null
-<%--
- Document : admin_parent_category_selection_box
- Created on : 14.08.2015, 12:51:05
- Author : Roland Haeder
---%>
-
-<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
-<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%>
-<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%>
-<jsp:useBean id="controller" scope="session" class="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean" type="PizzaBean" />
-
-<select class="select" name="parentId" size="1">
- <option value="">Ist oberste Kategorie</option>
- <c:forEach var="category" items="${controller.allCategoriesIterator}">
- <option value="${category.categoryId}">${category.decodedTitle}</option>
- </c:forEach>
-</select>