Author: apetrelli
Date: Fri Feb 15 11:29:06 2008
New Revision: 628150

URL: http://svn.apache.org/viewvc?rev=628150&view=rev
Log:
TILES-208
Fixed TLD to include the "cascade" attribute.
Added selenium tests for JSP tags with "cascade" attribute.

Added:
    tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp   
(with props)
    
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp
   (with props)
    
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp  
 (with props)
    
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html
   (with props)
    
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html
   (with props)
    tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html  
 (with props)
Modified:
    
tiles/framework/trunk/tiles-jsp/src/main/resources/META-INF/tld/tiles-jsp.tld
    tiles/framework/trunk/tiles-test/src/main/webapp/index.jsp
    
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedOverriddenTest.html
    
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTemplateTest.html
    
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTest.html
    tiles/framework/trunk/tiles-test/src/test/selenium/TestSuite.html

Modified: 
tiles/framework/trunk/tiles-jsp/src/main/resources/META-INF/tld/tiles-jsp.tld
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-jsp/src/main/resources/META-INF/tld/tiles-jsp.tld?rev=628150&r1=628149&r2=628150&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-jsp/src/main/resources/META-INF/tld/tiles-jsp.tld 
(original)
+++ 
tiles/framework/trunk/tiles-jsp/src/main/resources/META-INF/tld/tiles-jsp.tld 
Fri Feb 15 11:29:06 2008
@@ -460,6 +460,20 @@
          ]]>
          </description>
       </attribute>
+      <attribute>
+         <name>cascade</name>
+         <required>false</required>
+         <rtexprvalue>false</rtexprvalue>
+         <type>boolean</type>
+         <description>
+         <![CDATA[
+         <p>
+         If true, the attribute value will be cascaded to nested templates and
+         definitions.
+         </p>
+         ]]>
+         </description>
+      </attribute>
    </tag>
    <tag>
       <name>putListAttribute</name>
@@ -482,6 +496,20 @@
          <description>
          <![CDATA[
          <p>Name of the list.</p>
+         ]]>
+         </description>
+      </attribute>
+      <attribute>
+         <name>cascade</name>
+         <required>false</required>
+         <rtexprvalue>false</rtexprvalue>
+         <type>boolean</type>
+         <description>
+         <![CDATA[
+         <p>
+         If true, the attribute value will be cascaded to nested templates and
+         definitions.
+         </p>
          ]]>
          </description>
       </attribute>

Modified: tiles/framework/trunk/tiles-test/src/main/webapp/index.jsp
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/main/webapp/index.jsp?rev=628150&r1=628149&r2=628150&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-test/src/main/webapp/index.jsp (original)
+++ tiles/framework/trunk/tiles-test/src/main/webapp/index.jsp Fri Feb 15 
11:29:06 2008
@@ -52,6 +52,9 @@
     <a href="testput_flush.jsp">Test Put Tag with Flush</a><br/>
     <a href="testput_el.jsp">Test Put Tag using EL</a><br/>
     <a href="testput_servlet.jsp">Test Put Tag using a servlet mapping as a 
template</a><br/>
+    <a href="testput_cascaded.jsp">Test Put Tag with Cascaded 
Attributes</a><br/>
+    <a href="testput_cascaded_overridden.jsp">Test Put Tag with Overridden 
Cascaded Attributes</a><br/>
+    <a href="testput_cascaded_template.jsp">Test Put Tag with Cascaded 
Attributes and Template</a><br/>
     <a href="testputlist.jsp">Test Put List Tag</a><br/>
     <a href="testimportattribute.jsp">Test importAttribute Tag</a><br/>
     <a href="testimportattribute_all.jsp">Test importAttribute Tag with no 
name</a><br/>

Added: tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp?rev=628150&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp 
(added)
+++ tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp Fri 
Feb 15 11:29:06 2008
@@ -0,0 +1,31 @@
+<%@ page session="false" %>
+<%--
+/*
+ * $Id$
+ *
+ * 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.
+ *
+ */
+--%>
+<%@ taglib uri="http://tiles.apache.org/tags-tiles"; prefix="tiles" %>
+
+<tiles:insertTemplate template="/layout.jsp">
+  <tiles:putAttribute name="title"  value="This is the title." cascade="true" 
/>
+  <tiles:putAttribute name="header" value="/header.jsp" cascade="true" />
+  <tiles:putAttribute name="body"   value="test.inner.cascadable.definition" />
+</tiles:insertTemplate>
\ No newline at end of file

Propchange: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp?rev=628150&view=auto
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp
 (added)
+++ 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp
 Fri Feb 15 11:29:06 2008
@@ -0,0 +1,31 @@
+<%@ page session="false" %>
+<%--
+/*
+ * $Id$
+ *
+ * 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.
+ *
+ */
+--%>
+<%@ taglib uri="http://tiles.apache.org/tags-tiles"; prefix="tiles" %>
+
+<tiles:insertTemplate template="/layout.jsp">
+  <tiles:putAttribute name="title"  value="This is the title." cascade="true" 
/>
+  <tiles:putAttribute name="header" value="/alternate-header.jsp" 
cascade="true" />
+  <tiles:putAttribute name="body"   value="test.inner.definition" />
+</tiles:insertTemplate>
\ No newline at end of file

Propchange: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_overridden.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp?rev=628150&view=auto
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp 
(added)
+++ 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp 
Fri Feb 15 11:29:06 2008
@@ -0,0 +1,31 @@
+<%@ page session="false" %>
+<%--
+/*
+ * $Id$
+ *
+ * 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.
+ *
+ */
+--%>
+<%@ taglib uri="http://tiles.apache.org/tags-tiles"; prefix="tiles" %>
+
+<tiles:insertTemplate template="/layout.jsp">
+  <tiles:putAttribute name="title"  value="This is the title." cascade="true" 
/>
+  <tiles:putAttribute name="header" value="/header.jsp" cascade="true" />
+  <tiles:putAttribute name="body"   value="/layout_nobody.jsp" />
+</tiles:insertTemplate>
\ No newline at end of file

Propchange: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/framework/trunk/tiles-test/src/main/webapp/testput_cascaded_template.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedOverriddenTest.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedOverriddenTest.html?rev=628150&r1=628149&r2=628150&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedOverriddenTest.html
 (original)
+++ 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedOverriddenTest.html
 Fri Feb 15 11:29:06 2008
@@ -41,19 +41,19 @@
        <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is the title.</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is the title.</td>
+    <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is the header</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is a body</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is a body</td>
+    <td></td>
 </tr>
 <tr>
     <td>assertTextPresent</td>

Modified: 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTemplateTest.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTemplateTest.html?rev=628150&r1=628149&r2=628150&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTemplateTest.html
 (original)
+++ 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTemplateTest.html
 Fri Feb 15 11:29:06 2008
@@ -41,14 +41,14 @@
        <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is the title.</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is the title.</td>
+    <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is the header</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
 </tr>
 
 </tbody></table>

Modified: 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTest.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTest.html?rev=628150&r1=628149&r2=628150&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTest.html
 (original)
+++ 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionCascadedTest.html
 Fri Feb 15 11:29:06 2008
@@ -41,19 +41,19 @@
        <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is the title.</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is the title.</td>
+    <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is the header</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
 </tr>
 <tr>
-       <td>assertTextPresent</td>
-       <td>This is a body</td>
-       <td></td>
+    <td>assertTextPresent</td>
+    <td>This is a body</td>
+    <td></td>
 </tr>
 
 </tbody></table>

Added: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html?rev=628150&view=auto
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html
 (added)
+++ 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html
 Fri Feb 15 11:29:06 2008
@@ -0,0 +1,71 @@
+<!--
+/*
+ * $Id$
+ *
+ * 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>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Put Tag Cascaded Overridden Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">Put Tag Cascaded Overridden Test</td></tr>
+</thead><tbody>
+<tr>
+       <td>open</td>
+       <td>/tiles-test/index.jsp</td>
+       <td></td>
+</tr>
+<tr>
+       <td>clickAndWait</td>
+       <td>link=Test Put Tag with Overridden Cascaded Attributes</td>
+       <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the title.</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is a body</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is a configured inner definition.</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
+</tr>
+
+</tbody></table>
+</body>
+</html>

Propchange: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedOverriddenTest.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html?rev=628150&view=auto
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html
 (added)
+++ 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html
 Fri Feb 15 11:29:06 2008
@@ -0,0 +1,56 @@
+<!--
+/*
+ * $Id$
+ *
+ * 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>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Put Tag Cascaded Template Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">Put Tag Cascaded Template Test</td></tr>
+</thead><tbody>
+<tr>
+       <td>open</td>
+       <td>/tiles-test/index.jsp</td>
+       <td></td>
+</tr>
+<tr>
+       <td>clickAndWait</td>
+       <td>link=Test Put Tag with Cascaded Attributes and Template</td>
+       <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the title.</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
+</tr>
+
+</tbody></table>
+</body>
+</html>

Propchange: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTemplateTest.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html?rev=628150&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html 
(added)
+++ tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html 
Fri Feb 15 11:29:06 2008
@@ -0,0 +1,61 @@
+<!--
+/*
+ * $Id$
+ *
+ * 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>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Put Tag Cascaded Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">Put Tag Cascaded Test</td></tr>
+</thead><tbody>
+<tr>
+       <td>open</td>
+       <td>/tiles-test/index.jsp</td>
+       <td></td>
+</tr>
+<tr>
+       <td>clickAndWait</td>
+       <td>link=Test Put Tag with Cascaded Attributes</td>
+       <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the title.</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is the header</td>
+    <td></td>
+</tr>
+<tr>
+    <td>assertTextPresent</td>
+    <td>This is a body</td>
+    <td></td>
+</tr>
+
+</tbody></table>
+</body>
+</html>

Propchange: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/framework/trunk/tiles-test/src/test/selenium/PutTagCascadedTest.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: tiles/framework/trunk/tiles-test/src/test/selenium/TestSuite.html
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test/src/test/selenium/TestSuite.html?rev=628150&r1=628149&r2=628150&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-test/src/test/selenium/TestSuite.html (original)
+++ tiles/framework/trunk/tiles-test/src/test/selenium/TestSuite.html Fri Feb 
15 11:29:06 2008
@@ -88,6 +88,15 @@
         <td><a href="PutTagWithServletTest.html">Put Tag with Servlet as 
Template Test</a></td>
     </tr>
     <tr>
+        <td><a href="PutTagCascadedTest.html">Put Tag Cascaded Test</a></td>
+    </tr>
+    <tr>
+        <td><a href="PutTagCascadedOverriddenTest.html">Put Tag Cascaded 
Overridden Test</a></td>
+    </tr>
+    <tr>
+        <td><a href="PutTagCascadedTemplateTest.html">Put Tag Cascaded 
Template Test</a></td>
+    </tr>
+    <tr>
         <td><a href="PutListTagTest.html">Put List Tag Test</a></td>
     </tr>
     <tr>


Reply via email to