java/nekurak.net-web/web/WEB-INF/tags/nekurak/komentareVypis.tag
author František Kučera <franta-hg@frantovo.cz>
Sat Jun 19 11:19:27 2010 +0200 (2010-06-19)
changeset 142 44ef544460ca
parent 135 ec558dd0ca34
child 143 91c4282ea15f
permissions -rw-r--r--
AJAX komentáře
franta-hg@126
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@126
     2
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
franta-hg@126
     3
	  xmlns:c="http://java.sun.com/jsp/jstl/core"
franta-hg@126
     4
	  xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
franta-hg@126
     5
	  xmlns:fn="http://java.sun.com/jsp/jstl/functions"
franta-hg@126
     6
	  xmlns:nkfn="/WEB-INF/nekurakFunkce"
franta-hg@126
     7
	  version="2.0">
franta-hg@126
     8
franta-hg@126
     9
    <jsp:directive.attribute name="podnik" type="cz.frantovo.nekurak.dto.Podnik" required="true"/>
franta-hg@126
    10
franta-hg@126
    11
    <div class="komentare">
franta-hg@126
    12
	<h3><fmt:message key="komentare.vypisNadpis"/></h3>
franta-hg@128
    13
franta-hg@128
    14
	<!-- Zatím nikdo nekomentoval? -->
franta-hg@128
    15
	<c:if test="${fn:length(podnik.komentare) == 0}">
franta-hg@128
    16
	    <p><fmt:message key="komentare.zadneKomentare"/></p>
franta-hg@128
    17
	</c:if>
franta-hg@128
    18
franta-hg@128
    19
	<!-- Komentovat! -->
franta-hg@126
    20
	<c:choose>
franta-hg@126
    21
	    <c:when test="${prihlasenyUzivatel == null}">
franta-hg@127
    22
		<p><fmt:message key="komentare.prihlasitSe"/></p>
franta-hg@126
    23
	    </c:when>
franta-hg@126
    24
	    <c:otherwise>
franta-hg@128
    25
		<p><a href="javascript:komentare.zobrazFormular()"><fmt:message key="komentare.komentovat"/></a></p>
franta-hg@128
    26
		<div id="formularKomentuj" style="display: none;">
franta-hg@142
    27
		    <form method="post" action="?akce=odeslatKomentar" onsubmit="javascript:komentare.odeslat(); return false;">
franta-hg@134
    28
			<fieldset>
franta-hg@134
    29
			    <input type="hidden" name="podnik" maxlength="255" value="${podnik.id}"/>
franta-hg@134
    30
			    <label><fmt:message key="komentare.nadpis"/>: <input type="text" name="nadpis" maxlength="255"/></label>
franta-hg@134
    31
			    <br/>
franta-hg@134
    32
			    <textarea name="komentar" cols="30" rows="10"></textarea>
franta-hg@134
    33
			    <br/>
franta-hg@134
    34
			    <select name="typ">
franta-hg@134
    35
				<option value="PROSTY_TEXT" selected="selected"><fmt:message key="komentar.typ.prostyText"/></option>
franta-hg@134
    36
				<option value="XHTML"><fmt:message key="komentar.typ.xhtml"/></option>
franta-hg@134
    37
				<option value="TEXY"><fmt:message key="komentar.typ.texy"/></option>
franta-hg@134
    38
			    </select>
franta-hg@134
    39
			    <br/>
franta-hg@142
    40
			    <button value="ano" name="nahled" onclick="javascript:komentare.nahled(); return false;"><fmt:message key="komentare.tlacitkoNahled"/></button>
franta-hg@134
    41
			    <button value="submit"><fmt:message key="komentare.tlacitkoOdeslat"/></button>
franta-hg@134
    42
			</fieldset>
franta-hg@134
    43
		    </form>
franta-hg@142
    44
		    <div class="vystup"></div>
franta-hg@142
    45
		    <div class="cistic"/>
franta-hg@128
    46
		</div>
franta-hg@126
    47
	    </c:otherwise>
franta-hg@126
    48
	</c:choose>
franta-hg@126
    49
franta-hg@128
    50
	<!-- Výpis komentářů -->
franta-hg@127
    51
	<c:forEach var="k" items="${podnik.komentare}">
franta-hg@127
    52
	    <div class="komentar">
franta-hg@127
    53
		<h4>
franta-hg@129
    54
		    <fmt:message key="komentare.napsal"/>: <c:out value="${k.uzivatel}" />,
franta-hg@127
    55
		    <fmt:formatDate value="${k.datum}" pattern="dd. MMMM yyyy HH:mm"/>
franta-hg@134
    56
		    <c:if test="${k.nadpis != null &amp;&amp; k.nadpis != ''}">
franta-hg@134
    57
			<br/>
franta-hg@134
    58
			<fmt:message key="komentare.nadpis"/>: <c:out value="${k.nadpis}" />
franta-hg@134
    59
		    </c:if>
franta-hg@127
    60
		</h4>
franta-hg@127
    61
		<!-- Pozor: předpokládáme, že v DB jsou pouze zkontrolovaná data -->
franta-hg@127
    62
		<c:out value="${k.komentar}" escapeXml="false" />
franta-hg@127
    63
	    </div>
franta-hg@127
    64
	</c:forEach>
franta-hg@126
    65
    </div>
franta-hg@126
    66
franta-hg@126
    67
</jsp:root>