From: kkolinko Date: Wed, 2 Feb 2011 06:13:26 +0000 (+0000) Subject: r1057694 broke display of ROOT/index.jsp in MSIE. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7ca1b8a297b481a3ff3936b73a4c464acd8b5c69;p=tomcat7.0 r1057694 broke display of ROOT/index.jsp in MSIE. Use JSP comments in the license instead of HTML comments, like we already do elsewhere. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1066338 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/ROOT/index.jsp b/webapps/ROOT/index.jsp index e0d68e2cc..2ca898ed5 100644 --- a/webapps/ROOT/index.jsp +++ b/webapps/ROOT/index.jsp @@ -1,4 +1,4 @@ - +--%> <% java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy"); @@ -21,7 +21,6 @@ request.setAttribute("year", sdf.format(new java.util.Date())); request.setAttribute("tomcat7Url", "http://tomcat.apache.org/"); request.setAttribute("tomcat7DocUrl", "/docs/"); %> - <%=request.getServletContext().getServerInfo() %> diff --git a/webapps/examples/jsp/async/async1.jsp b/webapps/examples/jsp/async/async1.jsp index 1a0e907c0..b7e3da6e8 100644 --- a/webapps/examples/jsp/async/async1.jsp +++ b/webapps/examples/jsp/async/async1.jsp @@ -1,4 +1,4 @@ - +--%> <%@page session="false"%> Output from async1.jsp Type is <%=request.getDispatcherType()%> diff --git a/webapps/examples/jsp/async/async3.jsp b/webapps/examples/jsp/async/async3.jsp index c7caf2d78..fd5405476 100644 --- a/webapps/examples/jsp/async/async3.jsp +++ b/webapps/examples/jsp/async/async3.jsp @@ -1,4 +1,4 @@ - +--%> <%@page session="false"%> Output from async3.jsp Type is <%=request.getDispatcherType()%> diff --git a/webapps/examples/jsp/async/index.jsp b/webapps/examples/jsp/async/index.jsp index 18f320d52..5f53107a8 100644 --- a/webapps/examples/jsp/async/index.jsp +++ b/webapps/examples/jsp/async/index.jsp @@ -1,4 +1,4 @@ - +--%> <%@page session="false"%>
diff --git a/webapps/examples/jsp/cal/cal1.jsp b/webapps/examples/jsp/cal/cal1.jsp
index db89af6fc..05fe7abbb 100644
--- a/webapps/examples/jsp/cal/cal1.jsp
+++ b/webapps/examples/jsp/cal/cal1.jsp
@@ -1,4 +1,4 @@
-
+--%>
 
  
     Calendar: A JSP APPLICATION
diff --git a/webapps/examples/jsp/cal/cal2.jsp b/webapps/examples/jsp/cal/cal2.jsp
index ca9dc06c0..ea515eca2 100644
--- a/webapps/examples/jsp/cal/cal2.jsp
+++ b/webapps/examples/jsp/cal/cal2.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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><TITLE> 
     Calendar: A JSP APPLICATION
diff --git a/webapps/examples/jsp/chat/index.jsp b/webapps/examples/jsp/chat/index.jsp
index 62fdea11b..a867e3767 100644
--- a/webapps/examples/jsp/chat/index.jsp
+++ b/webapps/examples/jsp/chat/index.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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.
--->
+--%>
 <%@page contentType="text/html; charset=UTF-8" %>
 <% if (session.getAttribute("nickname") == null) {
     response.sendRedirect("login.jsp");
diff --git a/webapps/examples/jsp/chat/login.jsp b/webapps/examples/jsp/chat/login.jsp
index e9a653fd6..beb3b3805 100644
--- a/webapps/examples/jsp/chat/login.jsp
+++ b/webapps/examples/jsp/chat/login.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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.
--->
+--%>
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <%@page contentType="text/html; charset=UTF-8" %>
 <html>
diff --git a/webapps/examples/jsp/chat/post.jsp b/webapps/examples/jsp/chat/post.jsp
index b2b3e09c7..f6b38e52f 100644
--- a/webapps/examples/jsp/chat/post.jsp
+++ b/webapps/examples/jsp/chat/post.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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.
--->
+--%>
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <%@page contentType="text/html; charset=UTF-8" %>
 <html>
diff --git a/webapps/examples/jsp/checkbox/checkresult.jsp b/webapps/examples/jsp/checkbox/checkresult.jsp
index 52c85ea0f..5e3347438 100644
--- a/webapps/examples/jsp/checkbox/checkresult.jsp
+++ b/webapps/examples/jsp/checkbox/checkresult.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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 size=5 color="red">
diff --git a/webapps/examples/jsp/colors/colrs.jsp b/webapps/examples/jsp/colors/colrs.jsp
index 95e4dd33a..5e53cad78 100644
--- a/webapps/examples/jsp/colors/colrs.jsp
+++ b/webapps/examples/jsp/colors/colrs.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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>
 
 <jsp:useBean id="cb" scope="session" class="colors.ColorGameBean" />
diff --git a/webapps/examples/jsp/dates/date.jsp b/webapps/examples/jsp/dates/date.jsp
index a818718f3..d6c6b8664 100644
--- a/webapps/examples/jsp/dates/date.jsp
+++ b/webapps/examples/jsp/dates/date.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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>
 
 <%@ page session="false"%>
diff --git a/webapps/examples/jsp/error/err.jsp b/webapps/examples/jsp/error/err.jsp
index 152976f05..7e0b5dc5f 100644
--- a/webapps/examples/jsp/error/err.jsp
+++ b/webapps/examples/jsp/error/err.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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="lightblue">
 
diff --git a/webapps/examples/jsp/error/errorpge.jsp b/webapps/examples/jsp/error/errorpge.jsp
index be8ba20a6..5af1f4ec6 100644
--- a/webapps/examples/jsp/error/errorpge.jsp
+++ b/webapps/examples/jsp/error/errorpge.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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="red">
diff --git a/webapps/examples/jsp/forward/forward.jsp b/webapps/examples/jsp/forward/forward.jsp
index 72147b39e..bdb0cdb55 100644
--- a/webapps/examples/jsp/forward/forward.jsp
+++ b/webapps/examples/jsp/forward/forward.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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();
diff --git a/webapps/examples/jsp/forward/one.jsp b/webapps/examples/jsp/forward/one.jsp
index 4ef090cce..8e892da73 100644
--- a/webapps/examples/jsp/forward/one.jsp
+++ b/webapps/examples/jsp/forward/one.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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">
diff --git a/webapps/examples/jsp/include/foo.jsp b/webapps/examples/jsp/include/foo.jsp
index b1e3e8377..cb96ab0dd 100644
--- a/webapps/examples/jsp/include/foo.jsp
+++ b/webapps/examples/jsp/include/foo.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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">
diff --git a/webapps/examples/jsp/include/include.jsp b/webapps/examples/jsp/include/include.jsp
index 5a00faef0..dd1546c6a 100644
--- a/webapps/examples/jsp/include/include.jsp
+++ b/webapps/examples/jsp/include/include.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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">
diff --git a/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp b/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp
index 1108df03d..4ba3e258d 100644
--- a/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp
+++ b/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp
@@ -1,4 +1,4 @@
-<!--
+<%--
  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.
@@ -13,7 +13,7 @@
   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>
     <title>JSP 2.0 Expression Language - Basic Arithmetic
diff --git a/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp b/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp
index 77679d6eb..d72f7245f 100644
--- a/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp
+++ b/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp
@@ -1,4 +1,4 @@
-
+--%>
 
   
     JSP 2.0 Expression Language - Basic Comparisons
diff --git a/webapps/examples/jsp/jsp2/el/composite.jsp b/webapps/examples/jsp/jsp2/el/composite.jsp
index cfe9fd1a0..722cf8dbb 100644
--- a/webapps/examples/jsp/jsp2/el/composite.jsp
+++ b/webapps/examples/jsp/jsp2/el/composite.jsp
@@ -1,4 +1,4 @@
-
+--%>
 <%@ taglib prefix="my" uri="http://tomcat.apache.org/example-taglib" %>
 
 
diff --git a/webapps/examples/jsp/jsp2/el/functions.jsp b/webapps/examples/jsp/jsp2/el/functions.jsp
index 557f93484..980789db4 100644
--- a/webapps/examples/jsp/jsp2/el/functions.jsp
+++ b/webapps/examples/jsp/jsp2/el/functions.jsp
@@ -1,4 +1,4 @@
-
+--%>
 <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
 <%@ taglib prefix="my" uri="http://tomcat.apache.org/jsp2-example-taglib"%>
 
diff --git a/webapps/examples/jsp/jsp2/el/implicit-objects.jsp b/webapps/examples/jsp/jsp2/el/implicit-objects.jsp
index c1c1fc3b5..14f566ebb 100644
--- a/webapps/examples/jsp/jsp2/el/implicit-objects.jsp
+++ b/webapps/examples/jsp/jsp2/el/implicit-objects.jsp
@@ -1,4 +1,4 @@
-
+--%>
 <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
 
 
diff --git a/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp b/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp
index 1d28584b9..40ab456c5 100644
--- a/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp
+++ b/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp
@@ -1,4 +1,4 @@
-
+--%>
 <%@ taglib prefix="my" uri="http://tomcat.apache.org/jsp2-example-taglib"%>
 
 
diff --git a/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp b/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp
index 38864a317..fa26dce64 100644
--- a/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp
+++ b/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp
@@ -1,4 +1,4 @@
-
+--%>
 <%@ taglib prefix="my" uri="http://tomcat.apache.org/jsp2-example-taglib"%>
 
 
diff --git a/webapps/examples/jsp/jsp2/misc/config.jsp b/webapps/examples/jsp/jsp2/misc/config.jsp
index 68e374d0b..78ab13493 100644
--- a/webapps/examples/jsp/jsp2/misc/config.jsp
+++ b/webapps/examples/jsp/jsp2/misc/config.jsp
@@ -1,4 +1,4 @@
-
+--%>
 <%@ taglib prefix="my" uri="http://tomcat.apache.org/jsp2-example-taglib"%>
     

JSP 2.0 Examples - JSP Configuration


diff --git a/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp b/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp index fff5d2968..0cbc59c93 100644 --- a/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp +++ b/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="my" uri="http://tomcat.apache.org/jsp2-example-taglib"%> diff --git a/webapps/examples/jsp/jsp2/simpletag/book.jsp b/webapps/examples/jsp/jsp2/simpletag/book.jsp index 117ea4a9f..ca3869346 100644 --- a/webapps/examples/jsp/jsp2/simpletag/book.jsp +++ b/webapps/examples/jsp/jsp2/simpletag/book.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="my" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %> diff --git a/webapps/examples/jsp/jsp2/simpletag/hello.jsp b/webapps/examples/jsp/jsp2/simpletag/hello.jsp index 092136134..d9f22a281 100644 --- a/webapps/examples/jsp/jsp2/simpletag/hello.jsp +++ b/webapps/examples/jsp/jsp2/simpletag/hello.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="mytag" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %> diff --git a/webapps/examples/jsp/jsp2/simpletag/repeat.jsp b/webapps/examples/jsp/jsp2/simpletag/repeat.jsp index dedbf6e94..cda3a305e 100644 --- a/webapps/examples/jsp/jsp2/simpletag/repeat.jsp +++ b/webapps/examples/jsp/jsp2/simpletag/repeat.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="mytag" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %> diff --git a/webapps/examples/jsp/jsp2/tagfiles/hello.jsp b/webapps/examples/jsp/jsp2/tagfiles/hello.jsp index 93a015572..4769f48f3 100644 --- a/webapps/examples/jsp/jsp2/tagfiles/hello.jsp +++ b/webapps/examples/jsp/jsp2/tagfiles/hello.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> diff --git a/webapps/examples/jsp/jsp2/tagfiles/panel.jsp b/webapps/examples/jsp/jsp2/tagfiles/panel.jsp index 17ac07434..3f86a83c3 100644 --- a/webapps/examples/jsp/jsp2/tagfiles/panel.jsp +++ b/webapps/examples/jsp/jsp2/tagfiles/panel.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> diff --git a/webapps/examples/jsp/jsp2/tagfiles/products.jsp b/webapps/examples/jsp/jsp2/tagfiles/products.jsp index 0092fa291..dbc6673a0 100644 --- a/webapps/examples/jsp/jsp2/tagfiles/products.jsp +++ b/webapps/examples/jsp/jsp2/tagfiles/products.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> diff --git a/webapps/examples/jsp/jsptoserv/hello.jsp b/webapps/examples/jsp/jsptoserv/hello.jsp index a65721942..8b2a43f55 100644 --- a/webapps/examples/jsp/jsptoserv/hello.jsp +++ b/webapps/examples/jsp/jsptoserv/hello.jsp @@ -1,4 +1,4 @@ - +--%> diff --git a/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp b/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp index 62e3b2df7..db68a6ff0 100644 --- a/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp +++ b/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp @@ -1,4 +1,4 @@ - +--%> diff --git a/webapps/examples/jsp/num/numguess.jsp b/webapps/examples/jsp/num/numguess.jsp index 2461bf7de..d9c61b912 100644 --- a/webapps/examples/jsp/num/numguess.jsp +++ b/webapps/examples/jsp/num/numguess.jsp @@ -1,4 +1,4 @@ - +--%> <%@ page import = "num.NumberGuessBean" %> diff --git a/webapps/examples/jsp/plugin/plugin.jsp b/webapps/examples/jsp/plugin/plugin.jsp index 7711e7aa5..d2f72680d 100644 --- a/webapps/examples/jsp/plugin/plugin.jsp +++ b/webapps/examples/jsp/plugin/plugin.jsp @@ -1,4 +1,4 @@ - +--%> Plugin example diff --git a/webapps/examples/jsp/security/protected/error.jsp b/webapps/examples/jsp/security/protected/error.jsp index 5fc22eff8..3ef574341 100644 --- a/webapps/examples/jsp/security/protected/error.jsp +++ b/webapps/examples/jsp/security/protected/error.jsp @@ -1,4 +1,4 @@ - +--%> Error Page For Examples diff --git a/webapps/examples/jsp/security/protected/index.jsp b/webapps/examples/jsp/security/protected/index.jsp index d2e84be22..1a80409fc 100644 --- a/webapps/examples/jsp/security/protected/index.jsp +++ b/webapps/examples/jsp/security/protected/index.jsp @@ -1,4 +1,4 @@ - +--%> <% if (request.getParameter("logoff") != null) { session.invalidate(); diff --git a/webapps/examples/jsp/security/protected/login.jsp b/webapps/examples/jsp/security/protected/login.jsp index 1b381b2d7..e11a898c7 100644 --- a/webapps/examples/jsp/security/protected/login.jsp +++ b/webapps/examples/jsp/security/protected/login.jsp @@ -1,4 +1,4 @@ - +--%> Login Page for Examples diff --git a/webapps/examples/jsp/sessions/carts.jsp b/webapps/examples/jsp/sessions/carts.jsp index cad0b975a..6b55ebc5b 100644 --- a/webapps/examples/jsp/sessions/carts.jsp +++ b/webapps/examples/jsp/sessions/carts.jsp @@ -1,4 +1,4 @@ - +--%> diff --git a/webapps/examples/jsp/simpletag/foo.jsp b/webapps/examples/jsp/simpletag/foo.jsp index 92200d047..248914603 100644 --- a/webapps/examples/jsp/simpletag/foo.jsp +++ b/webapps/examples/jsp/simpletag/foo.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib uri="http://tomcat.apache.org/example-taglib" prefix="eg"%> diff --git a/webapps/examples/jsp/snp/snoop.jsp b/webapps/examples/jsp/snp/snoop.jsp index ec31b0dde..7e0ad68ff 100644 --- a/webapps/examples/jsp/snp/snoop.jsp +++ b/webapps/examples/jsp/snp/snoop.jsp @@ -1,4 +1,4 @@ - +--%>

Request Information

diff --git a/webapps/examples/jsp/source.jsp b/webapps/examples/jsp/source.jsp index db094cf39..fb75b588e 100644 --- a/webapps/examples/jsp/source.jsp +++ b/webapps/examples/jsp/source.jsp @@ -1,4 +1,4 @@ - +--%> <%@ taglib uri="http://tomcat.apache.org/example-taglib" prefix="eg" %> diff --git a/webapps/examples/jsp/tagplugin/choose.jsp b/webapps/examples/jsp/tagplugin/choose.jsp index 62aa75ee5..e3c1e785d 100644 --- a/webapps/examples/jsp/tagplugin/choose.jsp +++ b/webapps/examples/jsp/tagplugin/choose.jsp @@ -1,4 +1,4 @@ - +--%> Tag Examples - choose diff --git a/webapps/examples/jsp/tagplugin/foreach.jsp b/webapps/examples/jsp/tagplugin/foreach.jsp index acf38ee7f..7ca737e87 100644 --- a/webapps/examples/jsp/tagplugin/foreach.jsp +++ b/webapps/examples/jsp/tagplugin/foreach.jsp @@ -1,4 +1,4 @@ - +--%> Tag Plugin Examples: forEach diff --git a/webapps/examples/jsp/tagplugin/if.jsp b/webapps/examples/jsp/tagplugin/if.jsp index dd21c80cc..fd3eeb3ba 100644 --- a/webapps/examples/jsp/tagplugin/if.jsp +++ b/webapps/examples/jsp/tagplugin/if.jsp @@ -1,4 +1,4 @@ - +--%> Tag Plugin Examples: if