You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by nl...@apache.org on 2015/03/14 17:12:16 UTC

svn commit: r1666705 - in /tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test: ./ src/main/java/org/apache/tiles/test/preparer/ src/main/webapp/ src/main/webapp/WEB-INF/ src/main/webapp/WEB-INF/freemarker/ src/main/webapp/WEB-INF/velocity/ ...

Author: nlebas
Date: Sat Mar 14 16:12:15 2015
New Revision: 1666705

URL: http://svn.apache.org/r1666705
Log:
TILES-584: EL expressions not working for list attributes

Added:
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/freemarker/testaddattributeel.ftl
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/testaddattributeel.jsp
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/velocity/testaddattributeel.vm
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/AddAttributeWithEL.html
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/freemarker/AddAttributeWithEL.html
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/velocity/AddAttributeWithEL.html
Modified:
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/pom.xml
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/java/org/apache/tiles/test/preparer/RequestSettingViewPreparer.java
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/tiles-defs.xml
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/velocity/tiles-defs.xml
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/index.jsp
    tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/TestSuite.html

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/pom.xml?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/pom.xml (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/pom.xml Sat Mar 14 16:12:15 2015
@@ -68,6 +68,11 @@
        <artifactId>slf4j-api</artifactId>
      </dependency>
 
+     <dependency>
+       <groupId>org.slf4j</groupId>
+       <artifactId>jcl-over-slf4j</artifactId>
+     </dependency>
+
       <dependency>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/java/org/apache/tiles/test/preparer/RequestSettingViewPreparer.java
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/java/org/apache/tiles/test/preparer/RequestSettingViewPreparer.java?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/java/org/apache/tiles/test/preparer/RequestSettingViewPreparer.java (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/java/org/apache/tiles/test/preparer/RequestSettingViewPreparer.java Sat Mar 14 16:12:15 2015
@@ -38,6 +38,7 @@ public class RequestSettingViewPreparer
     public void execute(Request tilesContext,
             AttributeContext attributeContext) {
         Map<String, Object> requestScope = tilesContext.getContext("request");
+        requestScope.put("attribute", "Attribute from request");
         requestScope.put("body", "test.inner.definition");
         requestScope.put("layout", "/layout.jsp");
         requestScope.put("doNotShow", "DO NOT SHOW!!!");

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml Sat Mar 14 16:12:15 2015
@@ -76,6 +76,14 @@
       <put-attribute name="body"   value="test.inner.definition"/>
   </definition>
 
+ <definition name="freemarker.test.addAttribute.el" template="/freemarker/putattributeslayout.ftl" preparer="org.apache.tiles.test.preparer.RequestSettingViewPreparer">
+   <put-attribute name="stringTest" value="This is a string" type="string" />
+   <put-list-attribute name="list">
+     <add-attribute value="valueOne" type="string" />
+     <add-attribute expression="${requestScope.attribute}" type="string"/>
+   </put-list-attribute>
+ </definition>
+
   <definition name="freemarker.test.putAttributes" template="/freemarker/putattributeslayout.ftl" templateType="freemarker">
     <put-attribute name="stringTest" value="This is a string" type="string" />
     <put-list-attribute name="list">

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/tiles-defs.xml
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/tiles-defs.xml?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/tiles-defs.xml (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/tiles-defs.xml Sat Mar 14 16:12:15 2015
@@ -83,6 +83,14 @@
       <put-attribute name="body"   value="test.inner.definition"/>
   </definition>
 
+  <definition name="test.addAttribute.el" template="/putattributeslayout.jsp"         preparer="org.apache.tiles.test.preparer.RequestSettingViewPreparer">
+    <put-attribute name="stringTest" value="This is a string" type="string" />
+    <put-list-attribute name="list">
+      <add-attribute value="valueOne" type="string" />
+      <add-attribute expression="${requestScope.attribute}" type="string"/>
+    </put-list-attribute>
+  </definition>
+
   <definition name="test.putAttributes" template="/putattributeslayout.jsp">
     <put-attribute name="stringTest" value="This is a string" type="string" />
     <put-list-attribute name="list">

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/velocity/tiles-defs.xml
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/velocity/tiles-defs.xml?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/velocity/tiles-defs.xml (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/WEB-INF/velocity/tiles-defs.xml Sat Mar 14 16:12:15 2015
@@ -76,6 +76,14 @@
       <put-attribute name="body"   value="test.inner.definition"/>
   </definition>
 
+ <definition name="velocity.test.addAttribute.el" template="/velocity/putattributeslayout.vm"         preparer="org.apache.tiles.test.preparer.RequestSettingViewPreparer">
+   <put-attribute name="stringTest" value="This is a string" type="string" />
+   <put-list-attribute name="list">
+     <add-attribute value="valueOne" type="string" />
+     <add-attribute expression="${requestScope.attribute}" type="string"/>
+   </put-list-attribute>
+ </definition>
+
   <definition name="velocity.test.putAttributes" template="/velocity/putattributeslayout.vm" templateType="velocity">
     <put-attribute name="stringTest" value="This is a string" type="string" />
     <put-list-attribute name="list">

Added: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/freemarker/testaddattributeel.ftl
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/freemarker/testaddattributeel.ftl?rev=1666705&view=auto
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/freemarker/testaddattributeel.ftl (added)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/freemarker/testaddattributeel.ftl Sat Mar 14 16:12:15 2015
@@ -0,0 +1,24 @@
+<#--
+/*
+ * $Id: testinsertdefinition.ftl 745066 2009-02-17 13:44:38Z apetrelli $
+ *
+ * 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.
+ *
+ */
+-->
+<@tiles.insertDefinition name="freemarker.test.addAttribute.el" />

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/index.jsp?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/index.jsp (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/index.jsp Sat Mar 14 16:12:15 2015
@@ -98,6 +98,7 @@
     <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="testput_el_singleeval.jsp">Test Put Tag using EL to test Single Evaluation</a><br/>
+    <a href="testaddattributeel.jsp">Test Add Attribute in a List Attribute with EL</a><br/>
     <a href="testput_reversed.jsp">Test Put Tag with Reversed Attribute</a><br/>
     <a href="testputlist_cascaded.jsp">Test Put List Cascaded Tag</a><br/>
     <a href="testputlist_inherit.jsp">Test Put List Tag with Inherit</a><br/>
@@ -185,6 +186,7 @@
     <a href="freemarker/testput_cascaded_overridden.ftl">FreeMarker: Test Put Tag with Overridden Cascaded Attributes</a><br/>
     <a href="freemarker/testput_cascaded_template.ftl">FreeMarker: Test Put Tag with Cascaded Attributes and Template</a><br/>
     <a href="freemarker/testput_el_singleeval.ftl">FreeMarker: Test Put Tag using EL to test Single Evaluation</a><br/>
+    <a href="freemarker/testaddattributeel.ftl">FreeMarker: Test Add Attribute in a List Attribute with EL</a><br/>
     <a href="freemarker/testput_reversed.ftl">FreeMarker: Test Put Tag with Reversed Attribute</a><br/>
     <a href="freemarker/testputlist_cascaded.ftl">FreeMarker: Test Put List Cascaded Tag</a><br/>
     <a href="freemarker/testputlist_inherit.ftl">FreeMarker: Test Put List Tag with Inherit</a><br/>
@@ -272,6 +274,7 @@
     <a href="velocity/testput_cascaded_overridden.vm">Velocity: Test Put Tag with Overridden Cascaded Attributes</a><br/>
     <a href="velocity/testput_cascaded_template.vm">Velocity: Test Put Tag with Cascaded Attributes and Template</a><br/>
     <a href="velocity/testput_el_singleeval.vm">Velocity: Test Put Tag using EL to test Single Evaluation</a><br/>
+    <a href="velocity/testaddattributeel.vm">Velocity: Test Add Attribute in a List Attribute with EL</a><br/>
     <a href="velocity/testput_reversed.vm">Velocity: Test Put Tag with Reversed Attribute</a><br/>
     <a href="velocity/testputlist_cascaded.vm">Velocity: Test Put List Cascaded Tag</a><br/>
     <a href="velocity/testputlist_inherit.vm">Velocity: Test Put List Tag with Inherit</a><br/>
@@ -293,4 +296,4 @@
     <a href="velocity/testinsertdefinition_regexp.vm">Velocity: Test Insert Configured Definition with Regular Expression</a><br/>
     <a href="org/apache/tiles/test/alt/velocity/testinsertdefinition_alt.vm">Velocity: Test Insert Configured Definition in Module</a><br/>
 
-</html>
\ No newline at end of file
+</html>

Added: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/testaddattributeel.jsp
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/testaddattributeel.jsp?rev=1666705&view=auto
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/testaddattributeel.jsp (added)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/testaddattributeel.jsp Sat Mar 14 16:12:15 2015
@@ -0,0 +1,27 @@
+<%@ page session="false" %>
+<%--
+/*
+ * $Id: testimportattribute.jsp 573035 2007-09-05 19:27:22Z apetrelli $
+ *
+ * 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:insertDefinition name="test.addAttribute.el" />

Added: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/velocity/testaddattributeel.vm
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/velocity/testaddattributeel.vm?rev=1666705&view=auto
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/velocity/testaddattributeel.vm (added)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/main/webapp/velocity/testaddattributeel.vm Sat Mar 14 16:12:15 2015
@@ -0,0 +1,22 @@
+#*
+ * $Id: testinsertdefinition.vm 903417 2010-01-26 21:05:34Z apetrelli $
+ *
+ * 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.
+ *
+ *#
+#tiles_insertDefinition({"name" : "velocity.test.addAttribute.el"})#end

Added: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/AddAttributeWithEL.html
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/AddAttributeWithEL.html?rev=1666705&view=auto
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/AddAttributeWithEL.html (added)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/AddAttributeWithEL.html Sat Mar 14 16:12:15 2015
@@ -0,0 +1,51 @@
+<!--
+/*
+ * $Id: ConfiguredDefinitionELTest.html 788032 2009-06-24 14:08:32Z apetrelli $
+ *
+ * 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>Configured Definition EL Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">Configured Definition EL 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 Add Attribute in a List Attribute with EL</td>
+	<td></td>
+</tr>
+<tr>
+	<td>assertTextPresent</td>
+	<td>Attribute from request</td>
+	<td></td>
+</tr>
+
+</tbody></table>
+</body>
+</html>

Modified: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/TestSuite.html
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/TestSuite.html?rev=1666705&r1=1666704&r2=1666705&view=diff
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/TestSuite.html (original)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/TestSuite.html Sat Mar 14 16:12:15 2015
@@ -229,6 +229,9 @@
         <td><a href="ConfiguredDefinitionExtendedDbTest.html">Configured Definition Extended Db Test</a></td>
     </tr>
     <tr>
+        <td><a href="AddAttributeWithEL.html">Add Attribute with EL Test</a></td>
+    </tr>
+    <tr>
         <td><a href="LocalizationDbTest.html">Localization Db Test</a></td>
     </tr>
     <tr>
@@ -430,6 +433,9 @@
         <td><a href="freemarker/ConfiguredDefinitionInModuleTest.html">FreeMarker: Configured Definition in Module Test</a></td>
     </tr>
     <tr>
+        <td><a href="freemarker/AddAttributeWithEL.html">Freemarker: Add Attribute with EL Test</a></td>
+    </tr>
+    <tr>
         <td><a href="velocity/WelcomePageTest.html">Velocity: Welcome Page Test</a></td>
     </tr>
     <tr>
@@ -627,6 +633,9 @@
     <tr>
         <td><a href="velocity/ConfiguredDefinitionInModuleTest.html">Velocity: Configured Definition in Module Test</a></td>
     </tr>
+    <tr>
+        <td><a href="velocity/AddAttributeWithEL.html">Velocity: Add Attribute with EL Test</a></td>
+    </tr>
 </table>
 </body>
-</html>
\ No newline at end of file
+</html>

Added: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/freemarker/AddAttributeWithEL.html
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/freemarker/AddAttributeWithEL.html?rev=1666705&view=auto
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/freemarker/AddAttributeWithEL.html (added)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/freemarker/AddAttributeWithEL.html Sat Mar 14 16:12:15 2015
@@ -0,0 +1,51 @@
+<!--
+/*
+ * $Id: ConfiguredDefinitionELTest.html 788032 2009-06-24 14:08:32Z apetrelli $
+ *
+ * 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>Configured Definition EL Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">Configured Definition EL Test</td></tr>
+</thead><tbody>
+<tr>
+	<td>open</td>
+	<td>/tiles-test/index.jsp</td>
+	<td></td>
+</tr>
+<tr>
+	<td>clickAndWait</td>
+	<td>link=FreeMarker: Test Add Attribute in a List Attribute with EL</td>
+	<td></td>
+</tr>
+<tr>
+	<td>assertTextPresent</td>
+	<td>Attribute from request</td>
+	<td></td>
+</tr>
+
+</tbody></table>
+</body>
+</html>

Added: tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/velocity/AddAttributeWithEL.html
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/velocity/AddAttributeWithEL.html?rev=1666705&view=auto
==============================================================================
--- tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/velocity/AddAttributeWithEL.html (added)
+++ tiles/framework/branches/TILES_3_0_X/tiles-test-pom/tiles-test/src/test/selenium/velocity/AddAttributeWithEL.html Sat Mar 14 16:12:15 2015
@@ -0,0 +1,51 @@
+<!--
+/*
+ * $Id: ConfiguredDefinitionELTest.html 788032 2009-06-24 14:08:32Z apetrelli $
+ *
+ * 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>Configured Definition EL Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">Configured Definition EL Test</td></tr>
+</thead><tbody>
+<tr>
+	<td>open</td>
+	<td>/tiles-test/index.jsp</td>
+	<td></td>
+</tr>
+<tr>
+	<td>clickAndWait</td>
+	<td>link=Velocity: Test Add Attribute in a List Attribute with EL</td>
+	<td></td>
+</tr>
+<tr>
+	<td>assertTextPresent</td>
+	<td>Attribute from request</td>
+	<td></td>
+</tr>
+
+</tbody></table>
+</body>
+</html>