~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to contrib/jetty-ant-demo/webapp/index.jsp

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2009-08-09 08:48:10 UTC
  • Revision ID: james.westby@ubuntu.com-20090809084810-k522b97ind2robyd
ImportĀ upstreamĀ versionĀ 6.1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%@ taglib prefix="c" uri="/WEB-INF/tlds/c.tld" %>
 
2
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %>
 
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
4
<html>
 
5
<head>
 
6
<title>Loop Example</title>
 
7
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
 
8
</head>
 
9
<body>
 
10
<h1>Even numbers from 1 to 100:</h1>
 
11
<c:forEach var="i" begin="1" end="100">
 
12
  <c:if test="${i % 2 == 0}">
 
13
    ${i}
 
14
  </c:if>
 
15
</c:forEach>
 
16
<tags:a/>
 
17
<%= "testProperty=" + System.getProperty("testProperty") %>
 
18
</body>
 
19
</html>
 
 
b'\\ No newline at end of file'