franta-hg@3: <?xml version="1.0" encoding="UTF-8"?>
franta-hg@10: <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
franta-hg@10: 	  xmlns:c="http://java.sun.com/jsp/jstl/core"
franta-hg@10: 	  version="2.0">
franta-hg@3:     <jsp:directive.page contentType="application/xhtml+xml"/>
franta-hg@3:     <jsp:output doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
franta-hg@3: 		doctype-root-element="html"
franta-hg@3: 		omit-xml-declaration="false"/>
franta-hg@3: 
franta-hg@3:     <html xmlns="http://www.w3.org/1999/xhtml">
franta-hg@3: 	<head>
franta-hg@3: 	    <title>Nekuřák.net</title>
franta-hg@3: 	</head>
franta-hg@3: 	<body>
franta-hg@3: 	    <h1>Nekuřák.net</h1>
franta-hg@3: 	    <p>Začínáme s J2EE…</p>
franta-hg@8: 
franta-hg@10: 
franta-hg@10: 	    <!-- jednoduchá podmínka -->
franta-hg@10: 	    <c:if test="${param.akce == 'informace'}">
franta-hg@10: 		<p>Vypíšeme nějaké informace.</p>
franta-hg@10: 	    </c:if>
franta-hg@10: 
franta-hg@10: 	    <!-- složitější větvení -->
franta-hg@10: 	    <c:choose>
franta-hg@10: 		<!-- if -->
franta-hg@10: 		<c:when test="${param.akce == 'seznam'}">
franta-hg@10: 		    <p>Vypíšeme seznam hospod.</p>
franta-hg@10: 		    <!-- Vytvoříme si instanci JavaBeany -->
franta-hg@14: 		    <jsp:useBean id="podnikyWeb" class="cz.frantovo.nekurak.web.PodnikyWeb" scope="request"/>
franta-hg@10: 		    <ul>
franta-hg@14: 			<c:forEach var="p" items="${podnikyWeb.podniky}">
franta-hg@10: 			    <!-- vypíšeme název podniku (měli bychom escapovat) -->
franta-hg@10: 			    <li>${p.nazev}</li>
franta-hg@10: 			</c:forEach>
franta-hg@10: 		    </ul>
franta-hg@10: 		</c:when>
franta-hg@10: 		<!-- else if -->
franta-hg@10: 		<c:when test="${param.akce == 'podrobnosti'}">
franta-hg@10: 		    <p>Vypíšeme podrobnosti.</p>
franta-hg@10: 		</c:when>
franta-hg@10: 		<!-- else -->
franta-hg@10: 		<c:otherwise>
franta-hg@10: 		    <p>Zobrazíme úvodní stránku.</p>
franta-hg@10: 		</c:otherwise>
franta-hg@10: 	    </c:choose>
franta-hg@10: 
franta-hg@10: 
franta-hg@8: 	    <!-- vložíme si obsah jiného souboru
franta-hg@8: 		 obsah WEB-INF není přímo dostupný uživateli -->
franta-hg@8: 	    <jsp:include page="WEB-INF/casti/paticka.jsp">
franta-hg@8: 		<jsp:param name="rok" value="2010" />
franta-hg@8: 	    </jsp:include>
franta-hg@3: 	</body>
franta-hg@3:     </html>
franta-hg@3: 
franta-hg@3: </jsp:root>