File: ForEach.jsp

package info (click to toggle)
glassfish 1%3A2.1.1-b31-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 137,420 kB
  • ctags: 168,594
  • sloc: java: 1,051,703; xml: 48,451; jsp: 4,967; ansic: 1,442; perl: 1,200; sh: 562; makefile: 340; cpp: 336; sql: 78; haskell: 76; awk: 69; ruby: 58; sed: 21; lisp: 5
file content (83 lines) | stat: -rw-r--r-- 1,765 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>

<html>
<head>
  <title>JSTL: XML Support -- Parse / ForEach</title>
</head>

<body bgcolor="#FFFFFF">

<h3>&lt;x:parse&gt; / &lt;x:forEach&gt;</h3>

<c:import var="docString" url="ForEachDoc.xml"/>

<x:parse var="document" doc="${docString}"/>

<table border=1>
  <tr>
    <td valign="top"><pre><c:out value="${docString}"/></pre></td>
    <td valign="top">
      <table border=1>
        <tr>
          <th>Expression</th>
          <th>Result</th>
        </tr>
        <tr>
          <td><pre>
&lt;x:forEach select="$document//a" varStatus="status">
  ${status.index}:  &lt;x:out select="."/> &lt;br>
&lt;x:forEach>
</pre>
          </td>
          <td>
<x:forEach select="$document//a" varStatus="status">
  ${status.index}:  <x:out select="."/>
  <br />
</x:forEach>
</td>
        </tr>

        <tr>
          <td><pre>
&lt;x:forEach select="$document//a" begin="1" end="2" varStatus="status">
  -> &lt;x:out select="."/> &lt;br>
&lt;x:forEach>
</pre>
          </td>
          <td>
<x:forEach select="$document//a" begin="1" end="2" varStatus="status">
  ${status.index}: <x:out select="."/>
  <br />
</x:forEach>
</td>
        </tr>
        
        <tr>
          <td><pre>
&lt;x:forEach select="$document//a" varStatus="status">
  ${status.index}:  
  &lt;x:if select=".//d">
    &lt;d&gt; element present
  &lt;x:if>
  &lt;br>
&lt;x:forEach>
</pre>
          </td>
          <td>
<x:forEach select="$document//a" varStatus="status">
  ${status.index}:  
  <x:if select=".//d">
    &lt;d&gt; element present
  </x:if>
  <br />
</x:forEach>
</td>
        </tr>      
      </table>
    </td>
  </tr>
</table>

</body>
</html>