You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2008/06/06 22:53:33 UTC

svn commit: r664120 [8/13] - in /geronimo/samples/trunk/samples: ./ app-per-port/ app-per-port/app-per-port-connector-war/ app-per-port/app-per-port-connector-war/src/main/webapp/WEB-INF/ app-per-port/app-per-port-ear/ app-per-port/app-per-port-tomcat/...

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/CheckTest.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/CheckTest.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/CheckTest.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/CheckTest.html Fri Jun  6 13:53:24 2008
@@ -17,16 +17,18 @@
 -->
 
 <HEAD>
-<title>
-checkbox.CheckTest Bean Properties
-</title>
+    <title>
+        checkbox.CheckTest Bean Properties
+    </title>
 <BODY BGCOLOR="white">
 <H2>
-checkbox.CheckTest Bean Properties
+    checkbox.CheckTest Bean Properties
 </H2>
 <HR>
 <DL>
-<DT>public class <B>CheckTest</B><DT>extends Object</DL>
+    <DT>public class <B>CheckTest</B>
+    <DT>extends Object
+</DL>
 
 <P>
 <HR>
@@ -34,22 +36,22 @@
 <P>
 
 <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0">
-<TR BGCOLOR="#EEEEFF">
-<TD COLSPAN=3><FONT SIZE="+2">
-<B>Properties Summary</B></FONT></TD>
-</TR>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-String
-</FONT></TD>
-<TD><B>CheckTest:fruit</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Multi
-</FONT></TD>
+    <TR BGCOLOR="#EEEEFF">
+        <TD COLSPAN=3><FONT SIZE="+2">
+            <B>Properties Summary</B></FONT></TD>
+    </TR>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                String
+            </FONT></TD>
+        <TD><B>CheckTest:fruit</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Multi
+            </FONT></TD>
 </TABLE>
 <HR>
 </BODY>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/check.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/check.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/check.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/check.html Fri Jun  6 13:53:24 2008
@@ -20,19 +20,19 @@
 
 
 <FORM TYPE=POST ACTION=checkresult.jsp>
-<BR>
-<font size=5 color="red">
-Check all Favorite fruits: <br>
+    <BR>
+    <font size=5 color="red">
+        Check all Favorite fruits: <br>
 
-<input TYPE=checkbox name=fruit VALUE=apples> Apples <BR>
-<input TYPE=checkbox name=fruit VALUE=grapes> Grapes <BR>
-<input TYPE=checkbox name=fruit VALUE=oranges> Oranges <BR>
-<input TYPE=checkbox name=fruit VALUE=melons> Melons <BR>
+        <input TYPE=checkbox name=fruit VALUE=apples> Apples <BR>
+        <input TYPE=checkbox name=fruit VALUE=grapes> Grapes <BR>
+        <input TYPE=checkbox name=fruit VALUE=oranges> Oranges <BR>
+        <input TYPE=checkbox name=fruit VALUE=melons> Melons <BR>
 
 
-<br> <INPUT TYPE=submit name=submit Value="Submit">
+        <br> <INPUT TYPE=submit name=submit Value="Submit">
 
-</font>
+    </font>
 </FORM>
 </BODY>
 </HTML>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/checkresult.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/checkresult.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/checkresult.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/checkresult.jsp Fri Jun  6 13:53:24 2008
@@ -18,47 +18,51 @@
 
 <body bgcolor="white">
 <font size=5 color="red">
-<%! String[] fruits; %>
-<jsp:useBean id="foo" scope="page" class="checkbox.CheckTest" />
+    <%! String[] fruits; %>
+    <jsp:useBean id="foo" scope="page" class="checkbox.CheckTest"/>
 
-<jsp:setProperty name="foo" property="fruit" param="fruit" />
-<hr>
-The checked fruits (got using request) are: <br>
-<% 
-	fruits = request.getParameterValues("fruit");
-%>
-<ul>
-<%
-    if (fruits != null) {
-	  for (int i = 0; i < fruits.length; i++) {
-%>
-<li>
-<%
-	      out.println (util.HTMLFilter.filter(fruits[i]));
-	  }
-	} else out.println ("none selected");
-%>
-</ul>
-<br>
-<hr>
-
-The checked fruits (got using beans) are <br>
-
-<% 
-		fruits = foo.getFruit();
-%>
-<ul>
-<%
-    if (!fruits[0].equals("1")) {
-	  for (int i = 0; i < fruits.length; i++) {
-%>
-<li>
-<%
-		  out.println (util.HTMLFilter.filter(fruits[i]));
-	  }
-	} else out.println ("none selected");
-%>
-</ul>
+    <jsp:setProperty name="foo" property="fruit" param="fruit"/>
+    <hr>
+    The checked fruits (got using request) are: <br>
+    <%
+        fruits = request.getParameterValues("fruit");
+    %>
+    <ul>
+        <%
+            if (fruits != null) {
+                for (int i = 0; i < fruits.length; i++) {
+        %>
+        <li>
+            <%
+
+                          out.println (util.HTMLFilter.filter(fruits[i]));
+                      }
+                    } else out.println ("none selected");
+
+            %>
+    </ul>
+    <br>
+    <hr>
+
+    The checked fruits (got using beans) are <br>
+
+    <%
+        fruits = foo.getFruit();
+    %>
+    <ul>
+        <%
+            if (!fruits[0].equals("1")) {
+                for (int i = 0; i < fruits.length; i++) {
+        %>
+        <li>
+            <%
+
+                              out.println (util.HTMLFilter.filter(fruits[i]));
+                      }
+                    } else out.println ("none selected");
+
+            %>
+    </ul>
 </font>
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/cresult.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/cresult.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/cresult.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/checkbox/cresult.html Fri Jun  6 13:53:24 2008
@@ -17,18 +17,18 @@
 -->
 
 <head>
-<title>Untitled Document</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>Untitled Document</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
 <p><font color="#0000FF"><a href="check.html"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
 
 <h3><a href="checkresult.jsp.html">Source Code for Checkbox Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 <h3><a href="CheckTest.html">Property Sheet for CheckTest
-<font color="#0000FF"></a> </font> </h3>
+    <font color="#0000FF"></a> </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/ColorGameBean.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/ColorGameBean.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/ColorGameBean.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/ColorGameBean.html Fri Jun  6 13:53:24 2008
@@ -17,16 +17,18 @@
 -->
 
 <HEAD>
-<title>
-colors.ColorGameBean Bean Properties
-</title>
+    <title>
+        colors.ColorGameBean Bean Properties
+    </title>
 <BODY BGCOLOR="white">
 <H2>
-colors.ColorGameBean Bean Properties
+    colors.ColorGameBean Bean Properties
 </H2>
 <HR>
 <DL>
-<DT>public class <B>ColorGameBean</B><DT>extends Object</DL>
+    <DT>public class <B>ColorGameBean</B>
+    <DT>extends Object
+</DL>
 
 <P>
 <HR>
@@ -34,82 +36,82 @@
 <P>
 
 <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0">
-<TR BGCOLOR="#EEEEFF">
-<TD COLSPAN=3><FONT SIZE="+2">
-<B>Properties Summary</B></FONT></TD>
-</TR>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-String
-</FONT></TD>
-<TD><B>ColorGameBean:color2</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Single
-</FONT></TD>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-String
-</FONT></TD>
-<TD><B>ColorGameBean:color1</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Single
-</FONT></TD>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-int
-</FONT></TD>
-<TD><B>ColorGameBean:attempts</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Single
-</FONT></TD>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-boolean
-</FONT></TD>
-<TD><B>ColorGameBean:hint</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Single
-</FONT></TD>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-boolean
-</FONT></TD>
-<TD><B>ColorGameBean:success</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Single
-</FONT></TD>
-<TR BGCOLOR="white">
-<td align="right" valign="top" width="1%">
-<FONT SIZE="-1">
-boolean
-</FONT></TD>
-<TD><B>ColorGameBean:hintTaken</B>
-<BR>
-       </TD>
-<td width="1%">
-<FONT SIZE="-1">
-Single
-</FONT></TD>
+    <TR BGCOLOR="#EEEEFF">
+        <TD COLSPAN=3><FONT SIZE="+2">
+            <B>Properties Summary</B></FONT></TD>
+    </TR>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                String
+            </FONT></TD>
+        <TD><B>ColorGameBean:color2</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Single
+            </FONT></TD>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                String
+            </FONT></TD>
+        <TD><B>ColorGameBean:color1</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Single
+            </FONT></TD>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                int
+            </FONT></TD>
+        <TD><B>ColorGameBean:attempts</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Single
+            </FONT></TD>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                boolean
+            </FONT></TD>
+        <TD><B>ColorGameBean:hint</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Single
+            </FONT></TD>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                boolean
+            </FONT></TD>
+        <TD><B>ColorGameBean:success</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Single
+            </FONT></TD>
+    <TR BGCOLOR="white">
+        <td align="right" valign="top" width="1%">
+            <FONT SIZE="-1">
+                boolean
+            </FONT></TD>
+        <TD><B>ColorGameBean:hintTaken</B>
+            <BR>
+        </TD>
+        <td width="1%">
+            <FONT SIZE="-1">
+                Single
+            </FONT></TD>
 </TABLE>
 <HR>
 </BODY>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/clr.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/clr.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/clr.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/clr.html Fri Jun  6 13:53:24 2008
@@ -17,18 +17,18 @@
 -->
 
 <head>
-<title>Untitled Document</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>Untitled Document</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
 <p><font color="#0000FF"><a href="colors.html"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
 
 <h3><a href="colrs.jsp.html">Source Code for Color Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 <h3><a href="ColorGameBean.html">Property Sheet for ColorGameBean
-<font color="#0000FF"></a> </font> </h3>
+    <font color="#0000FF"></a> </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colors.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colors.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colors.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colors.html Fri Jun  6 13:53:24 2008
@@ -16,31 +16,32 @@
   limitations under the License.
 -->
 
-<body bgcolor= white>
+<body bgcolor=white>
 <font size=6 color=red>
 
-<hr>
-This web page is an example using JSP and BEANs. 
-<p>
-Guess my favorite two colors 
-
-<p> If you fail to guess both of them - you get yellow on red.
-
-<p> If you guess one of them right, either your foreground or 
-    your background will change to the color that was guessed right.
-
-<p> Guess them both right and your browser foreground/background 
-    will change to my two favorite colors to display this page.
-
-<hr>
-<form method=GET action=colrs.jsp>
-Color #1: <input type=text name= color1 size=16>
-<br>
-Color #2: <input type=text name= color2 size=16>
-<p>
-<input type=submit name=action value="Submit">
-<input type=submit name=action value="Hint">
-</form>
+    <hr>
+    This web page is an example using JSP and BEANs.
+    <p>
+        Guess my favorite two colors
+
+    <p> If you fail to guess both of them - you get yellow on red.
+
+    <p> If you guess one of them right, either your foreground or
+        your background will change to the color that was guessed right.
+
+    <p> Guess them both right and your browser foreground/background
+        will change to my two favorite colors to display this page.
+
+    <hr>
+    <form method=GET action=colrs.jsp>
+        Color #1: <input type=text name=color1 size=16>
+        <br>
+        Color #2: <input type=text name=color2 size=16>
+
+        <p>
+            <input type=submit name=action value="Submit">
+            <input type=submit name=action value="Hint">
+    </form>
 
 </font>
 </body>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colrs.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colrs.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colrs.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/colors/colrs.jsp Fri Jun  6 13:53:24 2008
@@ -16,54 +16,58 @@
   limitations under the License.
 -->
 
-<jsp:useBean id="cb" scope="session" class="colors.ColorGameBean" />
-<jsp:setProperty name="cb" property="*" />
+<jsp:useBean id="cb" scope="session" class="colors.ColorGameBean"/>
+<jsp:setProperty name="cb" property="*"/>
 
 <%
-	cb.processRequest(request);
+    cb.processRequest(request);
 %>
 
 <body bgcolor=<%= cb.getColor1() %>>
 <font size=6 color=<%= cb.getColor2() %>>
-<p>
+    <p>
 
-<% if (cb.getHint()==true) { %>
-	
-	<p> Hint #1: Vampires prey at night!
-	<p>  <p> Hint #2: Nancy without the n.
+        <% if (cb.getHint()==true) { %>
 
-<% } %>
+    <p> Hint #1: Vampires prey at night!
 
-<% if  (cb.getSuccess()==true) { %>
+    <p>
+
+    <p> Hint #2: Nancy without the n.
+
+        <% } %>
+
+        <% if  (cb.getSuccess()==true) { %>
 
     <p> CONGRATULATIONS!!
-	<% if  (cb.getHintTaken()==true) { %>
-    
-        <p> ( although I know you cheated and peeked into the hints)
+        <% if  (cb.getHintTaken()==true) { %>
+
+    <p> ( although I know you cheated and peeked into the hints)
+
+        <% } %>
 
-	<% } %>
+        <% } %>
 
-<% } %>
+    <p> Total attempts so far: <%= cb.getAttempts() %>
 
-<p> Total attempts so far: <%= cb.getAttempts() %>
-<p>
+    <p>
 
-<p>
+    <p>
 
-<form method=POST action=colrs.jsp>
+    <form method=POST action=colrs.jsp>
 
-Color #1: <input type=text name= color1 size=16>
+        Color #1: <input type=text name=color1 size=16>
 
-<br>
+        <br>
 
-Color #2: <input type=text name= color2 size=16>
+        Color #2: <input type=text name=color2 size=16>
 
-<p>
+        <p>
 
-<input type=submit name=action value="Submit">
-<input type=submit name=action value="Hint">
+            <input type=submit name=action value="Submit">
+            <input type=submit name=action value="Hint">
 
-</form>
+    </form>
 
 </font>
 </body>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.html Fri Jun  6 13:53:24 2008
@@ -17,15 +17,15 @@
 -->
 
 <head>
-<title>Untitled Document</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>Untitled Document</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
 <p><font color="#0000FF"><a href="date.jsp"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
 
 <h3><a href="date.jsp.html">Source Code for Date Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/dates/date.jsp Fri Jun  6 13:53:24 2008
@@ -16,25 +16,36 @@
   limitations under the License.
 -->
 
-<%@ page session="false"%>
+<%@ page session="false" %>
 
 <body bgcolor="white">
-<jsp:useBean id='clock' scope='page' class='dates.JspCalendar' type="dates.JspCalendar" />
+<jsp:useBean id='clock' scope='page' class='dates.JspCalendar' type="dates.JspCalendar"/>
 
 <font size=4>
-<ul>
-<li>	Day of month: is  <jsp:getProperty name="clock" property="dayOfMonth"/>
-<li>	Year: is  <jsp:getProperty name="clock" property="year"/>
-<li>	Month: is  <jsp:getProperty name="clock" property="month"/>
-<li>	Time: is  <jsp:getProperty name="clock" property="time"/>
-<li>	Date: is  <jsp:getProperty name="clock" property="date"/>
-<li>	Day: is  <jsp:getProperty name="clock" property="day"/>
-<li>	Day Of Year: is  <jsp:getProperty name="clock" property="dayOfYear"/>
-<li>	Week Of Year: is  <jsp:getProperty name="clock" property="weekOfYear"/>
-<li>	era: is  <jsp:getProperty name="clock" property="era"/>
-<li>	DST Offset: is  <jsp:getProperty name="clock" property="DSTOffset"/>
-<li>	Zone Offset: is  <jsp:getProperty name="clock" property="zoneOffset"/>
-</ul>
+    <ul>
+        <li> Day of month: is
+            <jsp:getProperty name="clock" property="dayOfMonth"/>
+        <li> Year: is
+            <jsp:getProperty name="clock" property="year"/>
+        <li> Month: is
+            <jsp:getProperty name="clock" property="month"/>
+        <li> Time: is
+            <jsp:getProperty name="clock" property="time"/>
+        <li> Date: is
+            <jsp:getProperty name="clock" property="date"/>
+        <li> Day: is
+            <jsp:getProperty name="clock" property="day"/>
+        <li> Day Of Year: is
+            <jsp:getProperty name="clock" property="dayOfYear"/>
+        <li> Week Of Year: is
+            <jsp:getProperty name="clock" property="weekOfYear"/>
+        <li> era: is
+            <jsp:getProperty name="clock" property="era"/>
+        <li> DST Offset: is
+            <jsp:getProperty name="clock" property="DSTOffset"/>
+        <li> Zone Offset: is
+            <jsp:getProperty name="clock" property="zoneOffset"/>
+    </ul>
 </font>
 
 </body>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/er.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/er.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/er.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/er.html Fri Jun  6 13:53:24 2008
@@ -17,15 +17,15 @@
 -->
 
 <head>
-<title>Untitled Document</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>Untitled Document</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
 <p><font color="#0000FF"><a href="error.html"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
 
 <h3><a href="err.jsp.html">Source Code for Error Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/err.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/err.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/err.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/err.jsp Fri Jun  6 13:53:24 2008
@@ -17,28 +17,30 @@
 -->
 <body bgcolor="lightblue">
 
-	<%@ page errorPage="errorpge.jsp" %>
-	<jsp:useBean id="foo" scope="request" class="error.Smart" />
-	<% 
-		String name = null;
-
-		if (request.getParameter("name") == null) {
-	%>
-	<%@ include file="/error/error.html" %>
-	<%
-		} else {
-		  foo.setName(request.getParameter("name"));
-		  if (foo.getName().equalsIgnoreCase("integra"))
-		  	name = "acura";
-		  if (name.equalsIgnoreCase("acura")) {
-	%>
-
-	<H1> Yes!!! <a href="http://www.acura.com">Acura</a> is my favorite car.
-
-	<% 
-		  }
-		}	
-	%>	
+<%@ page errorPage="errorpge.jsp" %>
+<jsp:useBean id="foo" scope="request" class="error.Smart"/>
+<%
+    String name = null;
+
+    if (request.getParameter("name") == null) {
+%>
+<%@ include file="/error/error.html" %>
+<%
+} else {
+    foo.setName(request.getParameter("name"));
+    if (foo.getName().equalsIgnoreCase("integra"))
+        name = "acura";
+    if (name.equalsIgnoreCase("acura")) {
+%>
+
+<H1> Yes!!! <a href="http://www.acura.com">Acura</a> is my favorite car.
+
+    <%
+
+                  }
+                }
+
+    %>
 </body>
 </html>
 

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/error.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/error.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/error.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/error.html Fri Jun  6 13:53:24 2008
@@ -20,17 +20,19 @@
 
 <h1> This example uses <b>errorpage</b> directive </h1>
 <br>
+
 <h3> Select my favourite car.</h3>
+
 <form method=get action=err.jsp>
-<!-- <br> Make a guess: -->
-<SELECT NAME="name" SIZE=5>
-<OPTION VALUE="integra"> Acura Integra <BR>
-<OPTION VALUE="bmw328i"> BMW 328I <BR>
-<OPTION VALUE="z3"> BMW Z3 <BR>
-<OPTION VALUE="infiniti"> InfinitiQ3 <BR>
-<OPTION VALUE="audi"> Audi A8 <BR>
-</SELECT>
-<br> <INPUT TYPE=submit name=submit Value="Submit">
+    <!-- <br> Make a guess: -->
+    <SELECT NAME="name" SIZE=5>
+        <OPTION VALUE="integra"> Acura Integra <BR>
+        <OPTION VALUE="bmw328i"> BMW 328I <BR>
+        <OPTION VALUE="z3"> BMW Z3 <BR>
+        <OPTION VALUE="infiniti"> InfinitiQ3 <BR>
+        <OPTION VALUE="audi"> Audi A8 <BR>
+    </SELECT>
+    <br> <INPUT TYPE=submit name=submit Value="Submit">
 </form>
 
 </body>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/errorpge.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/errorpge.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/errorpge.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/error/errorpge.jsp Fri Jun  6 13:53:24 2008
@@ -18,8 +18,8 @@
 
 <body bgcolor="red">
 
-	<%@ page isErrorPage="true" %>
-	<h1> The exception <%= exception.getMessage() %> tells me you
-	     made a wrong choice. 
+<%@ page isErrorPage="true" %>
+<h1> The exception <%= exception.getMessage() %> tells me you
+    made a wrong choice.
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/forward.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/forward.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/forward.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/forward.jsp Fri Jun  6 13:53:24 2008
@@ -1,25 +1,25 @@
 <!--
-   Licensed to the Apache Software Foundation (ASF) under one or more
-   contributor license agreements.  See the NOTICE file distributed with
-   this work for additional information regarding copyright ownership.
-   The ASF licenses this file to You under the Apache License, Version 2.0
-   (the "License"); you may not use this file except in compliance with
-   the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
 -->
 <html>
-<% 
-   double freeMem = Runtime.getRuntime().freeMemory();
-   double totlMem = Runtime.getRuntime().totalMemory();
-   double percent = freeMem/totlMem;
-   if (percent < 0.5) { 
+<%
+    double freeMem = Runtime.getRuntime().freeMemory();
+    double totlMem = Runtime.getRuntime().totalMemory();
+    double percent = freeMem / totlMem;
+    if (percent < 0.5) {
 %>
 
 <jsp:forward page="/forward/one.jsp"/>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/fwd.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/fwd.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/fwd.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/fwd.html Fri Jun  6 13:53:24 2008
@@ -16,15 +16,15 @@
 -->
 <html>
 <head>
-<title>Untitled Document</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>Untitled Document</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
 <p><font color="#0000FF"><a href="forward.jsp"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
 
 <h3><a href="forward.jsp.html">Source Code for Forward Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/one.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/one.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/one.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/one.jsp Fri Jun  6 13:53:24 2008
@@ -1,22 +1,22 @@
 <!--
-   Licensed to the Apache Software Foundation (ASF) under one or more
-   contributor license agreements.  See the NOTICE file distributed with
-   this work for additional information regarding copyright ownership.
-   The ASF licenses this file to You under the Apache License, Version 2.0
-   (the "License"); you may not use this file except in compliance with
-   the License.  You may obtain a copy of the License at
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
 -->
 <html>
 <body bgcolor="white">
 <font color="red">
 
-VM Memory usage < 50%.
+    VM Memory usage < 50%.
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/two.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/two.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/two.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/forward/two.html Fri Jun  6 13:53:24 2008
@@ -17,5 +17,5 @@
 <html>
 <font color="red">
 
-VM Memory usage > 50%.
+    VM Memory usage > 50%.
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/foo.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/foo.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/foo.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/foo.jsp Fri Jun  6 13:53:24 2008
@@ -1,21 +1,21 @@
 <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
 -->
 
 <body bgcolor="white">
 <font color="red">
 
-<%= System.currentTimeMillis() %>
+    <%= System.currentTimeMillis() %>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/inc.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/inc.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/inc.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/inc.html Fri Jun  6 13:53:24 2008
@@ -16,15 +16,15 @@
   limitations under the License.
 -->
 <head>
-<title>Untitled Document</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>Untitled Document</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
 <p><font color="#0000FF"><a href="include.jsp"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
 
 <h3><a href="include.jsp.html">Source Code for Include Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/include.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/include.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/include.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/include/include.jsp Fri Jun  6 13:53:24 2008
@@ -20,16 +20,17 @@
 
 <font color="red">
 
-<%@ page buffer="5kb" autoFlush="false" %>
+    <%@ page buffer="5kb" autoFlush="false" %>
 
-<p>In place evaluation of another JSP which gives you the current time:
+    <p>In place evaluation of another JSP which gives you the current time:
 
-<%@ include file="foo.jsp" %>
+        <%@ include file="foo.jsp" %>
 
-<p> <jsp:include page="/include/foo.html" flush="true"/> by including the output of another JSP:
+    <p>
+        <jsp:include page="/include/foo.html" flush="true"/> by including the output of another JSP:
 
-<jsp:include page="foo.jsp" flush="true"/>
+        <jsp:include page="foo.jsp" flush="true"/>
 
-:-) 
+        :-)
 
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/index.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/index.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/index.html Fri Jun  6 13:53:24 2008
@@ -17,356 +17,359 @@
   limitations under the License.
 -->
 <head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="GENERATOR" content="Mozilla/4.61 [en] (WinNT; I) [Netscape]">
-   <meta name="Author" content="Anil K. Vijendran">
-   <title>JSP Examples</title>
-<!--
-  Copyright (c) 1999 The Apache Software Foundation.  All rights 
-  reserved.
--->
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <meta name="GENERATOR" content="Mozilla/4.61 [en] (WinNT; I) [Netscape]">
+    <meta name="Author" content="Anil K. Vijendran">
+    <title>JSP Examples</title>
+    <!--
+      Copyright (c) 1999 The Apache Software Foundation.  All rights
+      reserved.
+    -->
 </head>
 <body bgcolor="#FFFFFF">
 <b><font face="Arial, Helvetica, sans-serif"><font size=+2>JSP
-Samples</font></font></b>
+    Samples</font></font></b>
+
 <p>This is a collection of samples demonstrating the usage of different
-parts of the Java Server Pages (JSP) specification.  Both JSP 2.0 and
-JSP 1.2 examples are presented below.
+    parts of the Java Server Pages (JSP) specification. Both JSP 2.0 and
+    JSP 1.2 examples are presented below.
+
 <p>These examples will only work when these pages are being served by a
-servlet engine; of course, we recommend
-<a href="http://jakarta.apache.org/tomcat/">Tomcat</a>.
-They will not work if you are viewing these pages via a
-"file://..." URL.
+    servlet engine; of course, we recommend
+    <a href="http://jakarta.apache.org/tomcat/">Tomcat</a>.
+    They will not work if you are viewing these pages via a
+    "file://..." URL.
+
 <p>To navigate your way through the examples, the following icons will
-help:
-<br>&nbsp;
-<table BORDER=0 CELLSPACING=5 WIDTH="85%" >
-<tr VALIGN=TOP>
-<td WIDTH="30"><img SRC="images/execute.gif" ></td>
+    help:
+    <br>&nbsp;
+<table BORDER=0 CELLSPACING=5 WIDTH="85%">
+    <tr VALIGN=TOP>
+        <td WIDTH="30"><img SRC="images/execute.gif"></td>
 
-<td>Execute the example</td>
-</tr>
+        <td>Execute the example</td>
+    </tr>
 
-<tr VALIGN=TOP>
-<td WIDTH="30"><img SRC="images/code.gif" height=24 width=24></td>
+    <tr VALIGN=TOP>
+        <td WIDTH="30"><img SRC="images/code.gif" height=24 width=24></td>
 
-<td>Look at the source code for the example</td>
-</tr>
+        <td>Look at the source code for the example</td>
+    </tr>
 
-<!--<tr VALIGN=TOP>
-<td WIDTH="30"><img SRC="images/read.gif" height=24 width=24></td>
+    <!--<tr VALIGN=TOP>
+    <td WIDTH="30"><img SRC="images/read.gif" height=24 width=24></td>
 
-<td>Read more about this feature</td>
--->
+    <td>Read more about this feature</td>
+    -->
 
-</tr>
-<tr VALIGN=TOP>
-<td WIDTH="30"><img SRC="images/return.gif" height=24 width=24></td>
+    </tr>
+    <tr VALIGN=TOP>
+        <td WIDTH="30"><img SRC="images/return.gif" height=24 width=24></td>
 
-<td>Return to this screen</td>
-</tr>
+        <td>Return to this screen</td>
+    </tr>
 </table>
 
 <p>Tip: For session scoped beans to work, the cookies must be enabled.
-This can be done using browser options.
-<br>&nbsp;
-<br>
-<b><u><font size="+1">JSP 2.0 Examples</font></u></b><br>
+    This can be done using browser options.
+    <br>&nbsp;
+    <br>
+    <b><u><font size="+1">JSP 2.0 Examples</font></u></b><br>
 
-<table BORDER=0 CELLSPACING=5 WIDTH="85%" >
+<table BORDER=0 CELLSPACING=5 WIDTH="85%">
 <tr valign=TOP>
-<td><b>Expression Language</b></td>
+    <td><b>Expression Language</b></td>
 </tr>
 
 <tr valign=TOP>
-<td>Basic Arithmetic</td>
-<td valign=TOP width="30%"><a href="jsp2/el/basic-arithmetic.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/el/basic-arithmetic.jsp">Execute</a></td>
+    <td>Basic Arithmetic</td>
+    <td valign=TOP width="30%"><a href="jsp2/el/basic-arithmetic.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/el/basic-arithmetic.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/el/basic-arithmetic.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/basic-arithmetic.html">Source</a></td>
+    <td width="30%"><a href="jsp2/el/basic-arithmetic.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/basic-arithmetic.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Basic Comparisons</td>
-<td valign=TOP width="30%"><a href="jsp2/el/basic-comparisons.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/el/basic-comparisons.jsp">Execute</a></td>
+    <td>Basic Comparisons</td>
+    <td valign=TOP width="30%"><a href="jsp2/el/basic-comparisons.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/el/basic-comparisons.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/el/basic-comparisons.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/basic-comparisons.html">Source</a></td>
+    <td width="30%"><a href="jsp2/el/basic-comparisons.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/basic-comparisons.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Implicit Objects</td>
-<td valign=TOP width="30%"><a href="jsp2/el/implicit-objects.jsp?foo=bar"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/el/implicit-objects.jsp?foo=bar">Execute</a></td>
+    <td>Implicit Objects</td>
+    <td valign=TOP width="30%"><a href="jsp2/el/implicit-objects.jsp?foo=bar"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/el/implicit-objects.jsp?foo=bar">Execute</a></td>
 
-<td width="30%"><a href="jsp2/el/implicit-objects.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/implicit-objects.html">Source</a></td>
+    <td width="30%"><a href="jsp2/el/implicit-objects.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/implicit-objects.html">Source</a></td>
 </tr>
 <tr valign=TOP>
 
-<td>Functions</td>
-<td valign=TOP width="30%"><a href="jsp2/el/functions.jsp?foo=JSP+2.0"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/el/functions.jsp?foo=JSP+2.0">Execute</a></td>
+    <td>Functions</td>
+    <td valign=TOP width="30%"><a href="jsp2/el/functions.jsp?foo=JSP+2.0"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/el/functions.jsp?foo=JSP+2.0">Execute</a></td>
 
-<td width="30%"><a href="jsp2/el/functions.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/functions.html">Source</a></td>
+    <td width="30%"><a href="jsp2/el/functions.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/el/functions.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td><br><b>SimpleTag Handlers and JSP Fragments</b></td>
+    <td><br><b>SimpleTag Handlers and JSP Fragments</b></td>
 </tr>
 
 <tr valign=TOP>
-<td>Hello World Tag</td>
-<td valign=TOP width="30%"><a href="jsp2/simpletag/hello.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/simpletag/hello.jsp">Execute</a></td>
+    <td>Hello World Tag</td>
+    <td valign=TOP width="30%"><a href="jsp2/simpletag/hello.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/simpletag/hello.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/simpletag/hello.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/simpletag/hello.html">Source</a></td>
+    <td width="30%"><a href="jsp2/simpletag/hello.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/simpletag/hello.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Repeat Tag</td>
-<td valign=TOP width="30%"><a href="jsp2/simpletag/repeat.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/simpletag/repeat.jsp">Execute</a></td>
+    <td>Repeat Tag</td>
+    <td valign=TOP width="30%"><a href="jsp2/simpletag/repeat.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/simpletag/repeat.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/simpletag/repeat.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/simpletag/repeat.html">Source</a></td>
+    <td width="30%"><a href="jsp2/simpletag/repeat.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/simpletag/repeat.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Book Example</td>
-<td valign=TOP width="30%"><a href="jsp2/simpletag/book.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/simpletag/book.jsp">Execute</a></td>
+    <td>Book Example</td>
+    <td valign=TOP width="30%"><a href="jsp2/simpletag/book.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/simpletag/book.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/simpletag/book.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/simpletag/book.html">Source</a></td>
+    <td width="30%"><a href="jsp2/simpletag/book.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/simpletag/book.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td><br><b>Tag Files</b></td>
+    <td><br><b>Tag Files</b></td>
 </tr>
 
 <tr valign=TOP>
-<td>Hello World Tag File</td>
-<td valign=TOP width="30%"><a href="jsp2/tagfiles/hello.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/tagfiles/hello.jsp">Execute</a></td>
+    <td>Hello World Tag File</td>
+    <td valign=TOP width="30%"><a href="jsp2/tagfiles/hello.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/tagfiles/hello.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/tagfiles/hello.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/tagfiles/hello.html">Source</a></td>
+    <td width="30%"><a href="jsp2/tagfiles/hello.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/tagfiles/hello.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Panel Tag File</td>
-<td valign=TOP width="30%"><a href="jsp2/tagfiles/panel.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/tagfiles/panel.jsp">Execute</a></td>
+    <td>Panel Tag File</td>
+    <td valign=TOP width="30%"><a href="jsp2/tagfiles/panel.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/tagfiles/panel.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/tagfiles/panel.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/tagfiles/panel.html">Source</a></td>
+    <td width="30%"><a href="jsp2/tagfiles/panel.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/tagfiles/panel.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Display Products Example</td>
-<td valign=TOP width="30%"><a href="jsp2/tagfiles/products.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/tagfiles/products.jsp">Execute</a></td>
+    <td>Display Products Example</td>
+    <td valign=TOP width="30%"><a href="jsp2/tagfiles/products.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/tagfiles/products.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/tagfiles/products.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/tagfiles/products.html">Source</a></td>
+    <td width="30%"><a href="jsp2/tagfiles/products.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/tagfiles/products.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td><br><b>New JSP XML Syntax (.jspx)</b></td>
+    <td><br><b>New JSP XML Syntax (.jspx)</b></td>
 </tr>
 
 <tr valign=TOP>
-<td>XHTML Basic Example</td>
-<td valign=TOP width="30%"><a href="jsp2/jspx/basic.jspx"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/jspx/basic.jspx">Execute</a></td>
+    <td>XHTML Basic Example</td>
+    <td valign=TOP width="30%"><a href="jsp2/jspx/basic.jspx"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/jspx/basic.jspx">Execute</a></td>
 
-<td width="30%"><a href="jsp2/jspx/basic.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspx/basic.html">Source</a></td>
+    <td width="30%"><a href="jsp2/jspx/basic.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspx/basic.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>SVG (Scalable Vector Graphics)</td>
-<td valign=TOP width="30%"><a href="jsp2/jspx/svgexample.html"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/jspx/svgexample.html">Execute</a></td>
+    <td>SVG (Scalable Vector Graphics)</td>
+    <td valign=TOP width="30%"><a href="jsp2/jspx/svgexample.html"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/jspx/svgexample.html">Execute</a></td>
 
-<td width="30%"><a href="jsp2/jspx/textRotate.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspx/textRotate.html">Source</a></td>
+    <td width="30%"><a href="jsp2/jspx/textRotate.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspx/textRotate.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td><br><b>Other JSP 2.0 Features</b></td>
+    <td><br><b>Other JSP 2.0 Features</b></td>
 </tr>
 
 <tr valign=TOP>
-<td>&lt;jsp:attribute&gt; and &lt;jsp:body&gt;</td>
-<td valign=TOP width="30%"><a href="jsp2/jspattribute/jspattribute.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/jspattribute/jspattribute.jsp">Execute</a></td>
+    <td>&lt;jsp:attribute&gt; and &lt;jsp:body&gt;</td>
+    <td valign=TOP width="30%"><a href="jsp2/jspattribute/jspattribute.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/jspattribute/jspattribute.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/jspattribute/jspattribute.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspattribute/jspattribute.html">Source</a></td>
+    <td width="30%"><a href="jsp2/jspattribute/jspattribute.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspattribute/jspattribute.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Shuffle Example</td>
-<td valign=TOP width="30%"><a href="jsp2/jspattribute/shuffle.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/jspattribute/shuffle.jsp">Execute</a></td>
+    <td>Shuffle Example</td>
+    <td valign=TOP width="30%"><a href="jsp2/jspattribute/shuffle.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/jspattribute/shuffle.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/jspattribute/shuffle.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspattribute/shuffle.html">Source</a></td>
+    <td width="30%"><a href="jsp2/jspattribute/shuffle.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/jspattribute/shuffle.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>Attributes With Dynamic Names</td>
-<td valign=TOP width="30%"><a href="jsp2/misc/dynamicattrs.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/misc/dynamicattrs.jsp">Execute</a></td>
+    <td>Attributes With Dynamic Names</td>
+    <td valign=TOP width="30%"><a href="jsp2/misc/dynamicattrs.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/misc/dynamicattrs.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/misc/dynamicattrs.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/misc/dynamicattrs.html">Source</a></td>
+    <td width="30%"><a href="jsp2/misc/dynamicattrs.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/misc/dynamicattrs.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>JSP Configuration</td>
-<td valign=TOP width="30%"><a href="jsp2/misc/config.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="jsp2/misc/config.jsp">Execute</a></td>
+    <td>JSP Configuration</td>
+    <td valign=TOP width="30%"><a href="jsp2/misc/config.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="jsp2/misc/config.jsp">Execute</a></td>
 
-<td width="30%"><a href="jsp2/misc/config.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/misc/config.html">Source</a></td>
+    <td width="30%"><a href="jsp2/misc/config.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsp2/misc/config.html">Source</a></td>
 </tr>
 
 </table>
 
 <br>
 <b><u><font size="+1">JSP 1.2 Examples</font></u></b><br>
-<table BORDER=0 CELLSPACING=5 WIDTH="85%" >
+<table BORDER=0 CELLSPACING=5 WIDTH="85%">
 <tr VALIGN=TOP>
-<td>Numberguess&nbsp;</td>
+    <td>Numberguess&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="num/numguess.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="num/numguess.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="num/numguess.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="num/numguess.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="num/numguess.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="num/numguess.html">Source</a></td>
+    <td WIDTH="30%"><a href="num/numguess.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="num/numguess.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Date&nbsp;</td>
+    <td>Date&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="dates/date.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="dates/date.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="dates/date.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="dates/date.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="dates/date.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="dates/date.html">Source</a></td>
+    <td WIDTH="30%"><a href="dates/date.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="dates/date.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Snoop</td>
+    <td>Snoop</td>
 
-<td WIDTH="30%"><a href="snp/snoop.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="snp/snoop.jsp">Execute</a></td>
+    <td WIDTH="30%"><a href="snp/snoop.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="snp/snoop.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="snp/snoop.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="snp/snoop.html">Source</a></td>
+    <td WIDTH="30%"><a href="snp/snoop.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="snp/snoop.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>ErrorPage&nbsp;</td>
+    <td>ErrorPage&nbsp;</td>
 
-<td WIDTH="30%"><a href="error/error.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="error/error.html">Execute</a></td>
+    <td WIDTH="30%"><a href="error/error.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="error/error.html">Execute</a></td>
 
-<td WIDTH="30%"><a href="error/er.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="error/er.html">Source</a></td>
+    <td WIDTH="30%"><a href="error/er.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="error/er.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Carts&nbsp;</td>
+    <td>Carts&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="sessions/carts.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="sessions/carts.html">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="sessions/carts.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="sessions/carts.html">Execute</a></td>
 
-<td WIDTH="30%"><a href="sessions/crt.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="sessions/crt.html">Source</a></td>
+    <td WIDTH="30%"><a href="sessions/crt.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="sessions/crt.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Checkbox&nbsp;</td>
+    <td>Checkbox&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="checkbox/check.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="checkbox/check.html">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="checkbox/check.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="checkbox/check.html">Execute</a></td>
 
-<td WIDTH="30%"><a href="checkbox/cresult.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="checkbox/cresult.html">Source</a></td>
+    <td WIDTH="30%"><a href="checkbox/cresult.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="checkbox/cresult.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Color&nbsp;</td>
+    <td>Color&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="colors/colors.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="colors/colors.html">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="colors/colors.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="colors/colors.html">Execute</a></td>
 
-<td WIDTH="30%"><a href="colors/clr.html.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="colors/clr.html">Source</a></td>
+    <td WIDTH="30%"><a href="colors/clr.html.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="colors/clr.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Calendar&nbsp;</td>
+    <td>Calendar&nbsp;</td>
 
-<td WIDTH="30%"><a href="cal/login.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="cal/login.html">Execute</a></td>
+    <td WIDTH="30%"><a href="cal/login.html"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="cal/login.html">Execute</a></td>
 
-<td WIDTH="30%"><a href="cal/calendar.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="cal/calendar.html">Source</a></td>
+    <td WIDTH="30%"><a href="cal/calendar.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="cal/calendar.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Include&nbsp;</td>
+    <td>Include&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="/include/include.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="include/include.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="/include/include.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="include/include.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="include/inc.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="include/inc.html">Source</a></td>
+    <td WIDTH="30%"><a href="include/inc.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="include/inc.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Forward&nbsp;</td>
+    <td>Forward&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="forward/forward.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="forward/forward.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="forward/forward.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="forward/forward.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="forward/fwd.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="forward/fwd.html">Source</a></td>
+    <td WIDTH="30%"><a href="forward/fwd.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="forward/fwd.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Plugin&nbsp;</td>
+    <td>Plugin&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="plugin/plugin.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="plugin/plugin.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="plugin/plugin.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="plugin/plugin.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="plugin/plugin.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="plugin/plugin.html">Source</a></td>
+    <td WIDTH="30%"><a href="plugin/plugin.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="plugin/plugin.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>JSP-Servlet-JSP&nbsp;</td>
+    <td>JSP-Servlet-JSP&nbsp;</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="jsptoserv/jsptoservlet.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="jsptoserv/jsptoservlet.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="jsptoserv/jsptoservlet.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="jsptoserv/jsptoservlet.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="jsptoserv/jts.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsptoserv/jts.html">Source</a></td>
+    <td WIDTH="30%"><a href="jsptoserv/jts.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="jsptoserv/jts.html">Source</a></td>
 </tr>
 
 <tr VALIGN=TOP>
-<td>Custom tag example</td>
+    <td>Custom tag example</td>
 
-<td VALIGN=TOP WIDTH="30%"><a href="simpletag/foo.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a><a href="simpletag/foo.jsp">Execute</a></td>
+    <td VALIGN=TOP WIDTH="30%"><a href="simpletag/foo.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a><a href="simpletag/foo.jsp">Execute</a></td>
 
-<td WIDTH="30%"><a href="simpletag/foo.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="simpletag/foo.html">Source</a></td>
+    <td WIDTH="30%"><a href="simpletag/foo.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="simpletag/foo.html">Source</a></td>
 </tr>
 
 <tr valign=TOP>
-<td>XML syntax example</td>
-<td valign=TOP width="30%"><a href="xml/xml.jsp"><img src="images/execute.gif" hspace=4 border=0  align=top></a><a href="xml/xml.jsp">Execute</a></td>
+    <td>XML syntax example</td>
+    <td valign=TOP width="30%"><a href="xml/xml.jsp"><img src="images/execute.gif" hspace=4 border=0 align=top></a><a href="xml/xml.jsp">Execute</a></td>
 
-<td width="30%"><a href="xml/xml.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="xml/xml.html">Source</a></td>
+    <td width="30%"><a href="xml/xml.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a><a href="xml/xml.html">Source</a></td>
 </tr>
 
 </table>
 
 <br/>
 <b><u><font size="+1">Tag Plugins</font></u></b><br>
-<table BORDER=0 CELLSPACING=5 WIDTH="85%" >
-
-<tr VALIGN=TOP>
-  <td>If&nbsp;</td>
-  <td VALIGN=TOP WIDTH="30%">
-    <a href="tagplugin/if.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  
-align=TOP></a>
-    <a href="tagplugin/if.jsp">Execute</a>
-  </td>
-  <td WIDTH="30%">
-    <a href="tagplugin/if.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 hei
-ght=24 width=24 align=TOP></a>
-    <a href="tagplugin/if.html">Source</a>
-  </td>
-</tr>
+<table BORDER=0 CELLSPACING=5 WIDTH="85%">
 
-<tr VALIGN=TOP>
-  <td>ForEach&nbsp;</td>
-  <td VALIGN=TOP WIDTH="30%">
-    <a href="tagplugin/foreach.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  
-align=TOP></a>
-    <a href="tagplugin/foreach.jsp">Execute</a>
-  </td>
-  <td WIDTH="30%">
-    <a href="tagplugin/foreach.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 hei
-ght=24 width=24 align=TOP></a>
-    <a href="tagplugin/foreach.html">Source</a>
-  </td>
-</tr>
-
-<tr VALIGN=TOP>
-  <td>Choose&nbsp;</td>
-  <td VALIGN=TOP WIDTH="30%">
-    <a href="tagplugin/choose.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0  align=TOP></a>
-    <a href="tagplugin/choose.jsp">Execute</a>
-  </td>
-  <td WIDTH="30%">
-    <a href="tagplugin/choose.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a>
-    <a href="tagplugin/choose.html">Source</a>
-  </td>
-</tr>
+    <tr VALIGN=TOP>
+        <td>If&nbsp;</td>
+        <td VALIGN=TOP WIDTH="30%">
+            <a href="tagplugin/if.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0
+                                            align=TOP></a>
+            <a href="tagplugin/if.jsp">Execute</a>
+        </td>
+        <td WIDTH="30%">
+            <a href="tagplugin/if.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 hei
+                                             ght=24 width=24 align=TOP></a>
+            <a href="tagplugin/if.html">Source</a>
+        </td>
+    </tr>
+
+    <tr VALIGN=TOP>
+        <td>ForEach&nbsp;</td>
+        <td VALIGN=TOP WIDTH="30%">
+            <a href="tagplugin/foreach.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0
+                                                 align=TOP></a>
+            <a href="tagplugin/foreach.jsp">Execute</a>
+        </td>
+        <td WIDTH="30%">
+            <a href="tagplugin/foreach.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 hei
+                                                  ght=24 width=24 align=TOP></a>
+            <a href="tagplugin/foreach.html">Source</a>
+        </td>
+    </tr>
+
+    <tr VALIGN=TOP>
+        <td>Choose&nbsp;</td>
+        <td VALIGN=TOP WIDTH="30%">
+            <a href="tagplugin/choose.jsp"><img SRC="images/execute.gif" HSPACE=4 BORDER=0 align=TOP></a>
+            <a href="tagplugin/choose.jsp">Execute</a>
+        </td>
+        <td WIDTH="30%">
+            <a href="tagplugin/choose.html"><img SRC="images/code.gif" HSPACE=4 BORDER=0 height=24 width=24 align=TOP></a>
+            <a href="tagplugin/choose.html">Source</a>
+        </td>
+    </tr>
 
 </table>
 

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.html Fri Jun  6 13:53:24 2008
@@ -16,15 +16,16 @@
   limitations under the License.
 -->
 <head>
-<title>View Source Code</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>View Source Code</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
-<p><font color="#0000FF"><a href="basic-arithmetic.jsp"><img src="../../images/execute.gif" align="right" border="0"></a><a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
+<p><font color="#0000FF"><a href="basic-arithmetic.jsp"><img src="../../images/execute.gif" align="right" border="0"></a><a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right"
+                                                                                                                                                         border="0"></a></font></p>
 
 <h3><a href="basic-arithmetic.jsp.html">Source Code for Basic Arithmetic Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-arithmetic.jsp Fri Jun  6 13:53:24 2008
@@ -1,88 +1,88 @@
 <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
 -->
 <html>
-  <head>
+<head>
     <title>JSP 2.0 Expression Language - Basic Arithmetic</title>
-  </head>
-  <body>
-    <h1>JSP 2.0 Expression Language - Basic Arithmetic</h1>
-    <hr>
-    This example illustrates basic Expression Language arithmetic.
-    Addition (+), subtraction (-), multiplication (*), division (/ or div), 
-    and modulus (% or mod) are all supported.  Error conditions, like
-    division by zero, are handled gracefully.
-    <br>
-    <blockquote>
-      <code>
+</head>
+<body>
+<h1>JSP 2.0 Expression Language - Basic Arithmetic</h1>
+<hr>
+This example illustrates basic Expression Language arithmetic.
+Addition (+), subtraction (-), multiplication (*), division (/ or div),
+and modulus (% or mod) are all supported. Error conditions, like
+division by zero, are handled gracefully.
+<br>
+<blockquote>
+    <code>
         <table border="1">
-          <thead>
-	    <td><b>EL Expression</b></td>
-	    <td><b>Result</b></td>
-	  </thead>
-	  <tr>
-	    <td>\${1}</td>
-	    <td>${1}</td>
-	  </tr>
-	  <tr>
-	    <td>\${1 + 2}</td>
-	    <td>${1 + 2}</td>
-	  </tr>
-	  <tr>
-	    <td>\${1.2 + 2.3}</td>
-	    <td>${1.2 + 2.3}</td>
-	  </tr>
-	  <tr>
-	    <td>\${1.2E4 + 1.4}</td>
-	    <td>${1.2E4 + 1.4}</td>
-	  </tr>
-	  <tr>
-	    <td>\${-4 - 2}</td>
-	    <td>${-4 - 2}</td>
-	  </tr>
-	  <tr>
-	    <td>\${21 * 2}</td>
-	    <td>${21 * 2}</td>
-	  </tr>
-	  <tr>
-	    <td>\${3/4}</td>
-	    <td>${3/4}</td>
-	  </tr>
-	  <tr>
-	    <td>\${3 div 4}</td>
-	    <td>${3 div 4}</td>
-	  </tr>
-	  <tr>
-	    <td>\${3/0}</td>
-	    <td>${3/0}</td>
-	  </tr>
-	  <tr>
-	    <td>\${10%4}</td>
-	    <td>${10%4}</td>
-	  </tr>
-	  <tr>
-	    <td>\${10 mod 4}</td>
-	    <td>${10 mod 4}</td>
-	  </tr>
-    <tr>
-      <td>\${(1==2) ? 3 : 4}</td>
-      <td>${(1==2) ? 3 : 4}</td>
-    </tr>
-	</table>
-      </code>
-    </blockquote>
-  </body>
+            <thead>
+                <td><b>EL Expression</b></td>
+                <td><b>Result</b></td>
+            </thead>
+            <tr>
+                <td>\${1}</td>
+                <td>${1}</td>
+            </tr>
+            <tr>
+                <td>\${1 + 2}</td>
+                <td>${1 + 2}</td>
+            </tr>
+            <tr>
+                <td>\${1.2 + 2.3}</td>
+                <td>${1.2 + 2.3}</td>
+            </tr>
+            <tr>
+                <td>\${1.2E4 + 1.4}</td>
+                <td>${1.2E4 + 1.4}</td>
+            </tr>
+            <tr>
+                <td>\${-4 - 2}</td>
+                <td>${-4 - 2}</td>
+            </tr>
+            <tr>
+                <td>\${21 * 2}</td>
+                <td>${21 * 2}</td>
+            </tr>
+            <tr>
+                <td>\${3/4}</td>
+                <td>${3/4}</td>
+            </tr>
+            <tr>
+                <td>\${3 div 4}</td>
+                <td>${3 div 4}</td>
+            </tr>
+            <tr>
+                <td>\${3/0}</td>
+                <td>${3/0}</td>
+            </tr>
+            <tr>
+                <td>\${10%4}</td>
+                <td>${10%4}</td>
+            </tr>
+            <tr>
+                <td>\${10 mod 4}</td>
+                <td>${10 mod 4}</td>
+            </tr>
+            <tr>
+                <td>\${(1==2) ? 3 : 4}</td>
+                <td>${(1==2) ? 3 : 4}</td>
+            </tr>
+        </table>
+    </code>
+</blockquote>
+</body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.html Fri Jun  6 13:53:24 2008
@@ -16,15 +16,16 @@
   limitations under the License.
 -->
 <head>
-<title>View Source Code</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>View Source Code</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
-<p><font color="#0000FF"><a href="basic-comparisons.jsp"><img src="../../images/execute.gif" align="right" border="0"></a><a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
+<p><font color="#0000FF"><a href="basic-comparisons.jsp"><img src="../../images/execute.gif" align="right" border="0"></a><a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right"
+                                                                                                                                                          border="0"></a></font></p>
 
 <h3><a href="basic-comparisons.jsp.html">Source Code for Basic Comparisons Example<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.jsp?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.jsp (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/basic-comparisons.jsp Fri Jun  6 13:53:24 2008
@@ -1,116 +1,116 @@
 <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
 -->
 <html>
-  <head>
+<head>
     <title>JSP 2.0 Expression Language - Basic Comparisons</title>
-  </head>
-  <body>
-    <h1>JSP 2.0 Expression Language - Basic Comparisons</h1>
-    <hr>
-    This example illustrates basic Expression Language comparisons.
-    The following comparison operators are supported:
-    <ul>
-      <li>Less-than (&lt; or lt)</li>
-      <li>Greater-than (&gt; or gt)</li>
-      <li>Less-than-or-equal (&lt;= or le)</li>
-      <li>Greater-than-or-equal (&gt;= or ge)</li>
-      <li>Equal (== or eq)</li>
-      <li>Not Equal (!= or ne)</li>
-    </ul>
-    <blockquote>
-      <u><b>Numeric</b></u>
-      <code>
+</head>
+<body>
+<h1>JSP 2.0 Expression Language - Basic Comparisons</h1>
+<hr>
+This example illustrates basic Expression Language comparisons.
+The following comparison operators are supported:
+<ul>
+    <li>Less-than (&lt; or lt)</li>
+    <li>Greater-than (&gt; or gt)</li>
+    <li>Less-than-or-equal (&lt;= or le)</li>
+    <li>Greater-than-or-equal (&gt;= or ge)</li>
+    <li>Equal (== or eq)</li>
+    <li>Not Equal (!= or ne)</li>
+</ul>
+<blockquote>
+    <u><b>Numeric</b></u>
+    <code>
         <table border="1">
-          <thead>
-	    <td><b>EL Expression</b></td>
-	    <td><b>Result</b></td>
-	  </thead>
-	  <tr>
-	    <td>\${1 &lt; 2}</td>
-	    <td>${1 < 2}</td>
-	  </tr>
-	  <tr>
-	    <td>\${1 lt 2}</td>
-	    <td>${1 lt 2}</td>
-	  </tr>
-	  <tr>
-	    <td>\${1 &gt; (4/2)}</td>
-	    <td>${1 > (4/2)}</td>
-	  </tr>
-	  <tr>
-	    <td>\${1 &gt; (4/2)}</td>
-	    <td>${1 > (4/2)}</td>
-	  </tr>
-	  <tr>
-	    <td>\${4.0 &gt;= 3}</td>
-	    <td>${4.0 >= 3}</td>
-	  </tr>
-	  <tr>
-	    <td>\${4.0 ge 3}</td>
-	    <td>${4.0 ge 3}</td>
-	  </tr>
-	  <tr>
-	    <td>\${4 &lt;= 3}</td>
-	    <td>${4 <= 3}</td>
-	  </tr>
-	  <tr>
-	    <td>\${4 le 3}</td>
-	    <td>${4 le 3}</td>
-	  </tr>
-	  <tr>
-	    <td>\${100.0 == 100}</td>
-	    <td>${100.0 == 100}</td>
-	  </tr>
-	  <tr>
-	    <td>\${100.0 eq 100}</td>
-	    <td>${100.0 eq 100}</td>
-	  </tr>
-	  <tr>
-	    <td>\${(10*10) != 100}</td>
-	    <td>${(10*10) != 100}</td>
-	  </tr>
-	  <tr>
-	    <td>\${(10*10) ne 100}</td>
-	    <td>${(10*10) ne 100}</td>
-	  </tr>
-	</table>
-      </code>
-      <br>
-      <u><b>Alphabetic</b></u>
-      <code>
+            <thead>
+                <td><b>EL Expression</b></td>
+                <td><b>Result</b></td>
+            </thead>
+            <tr>
+                <td>\${1 &lt; 2}</td>
+                <td>${1 < 2}</td>
+            </tr>
+            <tr>
+                <td>\${1 lt 2}</td>
+                <td>${1 lt 2}</td>
+            </tr>
+            <tr>
+                <td>\${1 &gt; (4/2)}</td>
+                <td>${1 > (4/2)}</td>
+            </tr>
+            <tr>
+                <td>\${1 &gt; (4/2)}</td>
+                <td>${1 > (4/2)}</td>
+            </tr>
+            <tr>
+                <td>\${4.0 &gt;= 3}</td>
+                <td>${4.0 >= 3}</td>
+            </tr>
+            <tr>
+                <td>\${4.0 ge 3}</td>
+                <td>${4.0 ge 3}</td>
+            </tr>
+            <tr>
+                <td>\${4 &lt;= 3}</td>
+                <td>${4 <= 3}</td>
+            </tr>
+            <tr>
+                <td>\${4 le 3}</td>
+                <td>${4 le 3}</td>
+            </tr>
+            <tr>
+                <td>\${100.0 == 100}</td>
+                <td>${100.0 == 100}</td>
+            </tr>
+            <tr>
+                <td>\${100.0 eq 100}</td>
+                <td>${100.0 eq 100}</td>
+            </tr>
+            <tr>
+                <td>\${(10*10) != 100}</td>
+                <td>${(10*10) != 100}</td>
+            </tr>
+            <tr>
+                <td>\${(10*10) ne 100}</td>
+                <td>${(10*10) ne 100}</td>
+            </tr>
+        </table>
+    </code>
+    <br>
+    <u><b>Alphabetic</b></u>
+    <code>
         <table border="1">
-          <thead>
-	    <td><b>EL Expression</b></td>
-	    <td><b>Result</b></td>
-	  </thead>
-	  <tr>
-	    <td>\${'a' &lt; 'b'}</td>
-	    <td>${'a' < 'b'}</td>
-	  </tr>
-	  <tr>
-	    <td>\${'hip' &gt; 'hit'}</td>
-	    <td>${'hip' > 'hit'}</td>
-	  </tr>
-	  <tr>
-	    <td>\${'4' &gt; 3}</td>
-	    <td>${'4' > 3}</td>
-	  </tr>
-	</table>
-      </code>
-    </blockquote>
-  </body>
+            <thead>
+                <td><b>EL Expression</b></td>
+                <td><b>Result</b></td>
+            </thead>
+            <tr>
+                <td>\${'a' &lt; 'b'}</td>
+                <td>${'a' < 'b'}</td>
+            </tr>
+            <tr>
+                <td>\${'hip' &gt; 'hit'}</td>
+                <td>${'hip' > 'hit'}</td>
+            </tr>
+            <tr>
+                <td>\${'4' &gt; 3}</td>
+                <td>${'4' > 3}</td>
+            </tr>
+        </table>
+    </code>
+</blockquote>
+</body>
 </html>

Modified: geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/functions.html
URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/functions.html?rev=664120&r1=664119&r2=664120&view=diff
==============================================================================
--- geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/functions.html (original)
+++ geronimo/samples/trunk/samples/jsp-examples/jsp-examples-war/src/main/webapp/jsp2/el/functions.html Fri Jun  6 13:53:24 2008
@@ -16,17 +16,19 @@
   limitations under the License.
 -->
 <head>
-<title>View Source Code</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <title>View Source Code</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF">
-<p><font color="#0000FF"><a href="functions.jsp?foo=JSP+2.0"><img src="../../images/execute.gif" align="right" border="0"></a><a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p>
+<p><font color="#0000FF"><a href="functions.jsp?foo=JSP+2.0"><img src="../../images/execute.gif" align="right" border="0"></a><a href="../../index.html"><img src="../../images/return.gif" width="24" height="24" align="right" border="0"></a></font>
+</p>
 
 <h3><a href="functions.jsp.html">Source Code for functions.jsp<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
+
 <h3><a href="Functions.java.html">Source Code for Functions.java<font color="#0000FF"></a>
-  </font> </h3>
+    </font> </h3>
 
 </body>
 </html>