Author: apetrelli
Date: Wed Feb 25 10:22:04 2009
New Revision: 747725

URL: http://svn.apache.org/viewvc?rev=747725&view=rev
Log:
TILESSB-8
Aligned sandboxed webapp with the latest changes to the original.

Added:
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/VM_global_library.vm
    tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml   
(with props)
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties
   (with props)
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/freemarker/layout_roles.ftl
      - copied unchanged from r747340, 
tiles/framework/trunk/tiles-test/src/main/webapp/freemarker/layout_roles.ftl
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/freemarker/testinsertdefinition_attribute_roles_tags.ftl
      - copied unchanged from r747340, 
tiles/framework/trunk/tiles-test/src/main/webapp/freemarker/testinsertdefinition_attribute_roles_tags.ftl
    tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/layout_roles.jsp
      - copied unchanged from r747340, 
tiles/framework/trunk/tiles-test/src/main/webapp/layout_roles.jsp
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/testinsertdefinition_attribute_roles_tags.jsp
      - copied unchanged from r747340, 
tiles/framework/trunk/tiles-test/src/main/webapp/testinsertdefinition_attribute_roles_tags.jsp
    
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html
      - copied, changed from r747340, 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html
    
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html
      - copied, changed from r747340, 
tiles/framework/trunk/tiles-test/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html
Modified:
    tiles/sandbox/trunk/tiles-test-sandbox/   (props changed)
    tiles/sandbox/trunk/tiles-test-sandbox/pom.xml
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestDbTilesContainerFactory.java
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestTilesContainerFactory.java
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-alt-defs.xml
   (props changed)
    
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-defs.xml
    tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/web.xml
    tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/index.jsp
    tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/TestSuite.html

Propchange: tiles/sandbox/trunk/tiles-test-sandbox/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Feb 25 10:22:04 2009
@@ -0,0 +1 @@
+/tiles/framework/trunk/tiles-test:747340

Modified: tiles/sandbox/trunk/tiles-test-sandbox/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/pom.xml?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- tiles/sandbox/trunk/tiles-test-sandbox/pom.xml (original)
+++ tiles/sandbox/trunk/tiles-test-sandbox/pom.xml Wed Feb 25 10:22:04 2009
@@ -40,16 +40,21 @@
       <dependency>
          <groupId>${pom.groupId}</groupId>
          <artifactId>tiles-jsp</artifactId>
-         <version>2.1.3-SNAPSHOT</version>
+         <version>2.2.0-SNAPSHOT</version>
       </dependency>
       <dependency>
          <groupId>${pom.groupId}</groupId>
          <artifactId>tiles-compat</artifactId>
-         <version>2.1.3-SNAPSHOT</version>
+         <version>2.2.0-SNAPSHOT</version>
       </dependency>
       <dependency>
          <groupId>${pom.groupId}</groupId>
          <artifactId>tiles-freemarker</artifactId>
+         <version>2.2.0-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+         <groupId>${pom.groupId}</groupId>
+         <artifactId>tiles-velocity</artifactId>
          <version>1.0-SNAPSHOT</version>
       </dependency>
       <dependency>

Modified: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestDbTilesContainerFactory.java
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestDbTilesContainerFactory.java?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestDbTilesContainerFactory.java
 (original)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestDbTilesContainerFactory.java
 Wed Feb 25 10:22:04 2009
@@ -37,6 +37,8 @@
 import org.apache.tiles.locale.LocaleResolver;
 import org.apache.tiles.test.definition.dao.LocaleDbDefinitionDAO;
 
+import com.anydoby.tiles2.velocity.VelocityContextFactory;
+
 /**
  * Test alternate Tiles container factory that uses a DB to store definitions.
  *
@@ -78,6 +80,9 @@
         registerRequestContextFactory(
                 FreeMarkerTilesRequestContextFactory.class.getName(),
                 factories, contextFactory);
+        registerRequestContextFactory(
+                VelocityContextFactory.class.getName(),
+                factories, contextFactory);
         contextFactory.setFactories(factories);
     }
 }

Modified: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestTilesContainerFactory.java
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestTilesContainerFactory.java?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestTilesContainerFactory.java
 (original)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/java/org/apache/tiles/test/factory/TestTilesContainerFactory.java
 Wed Feb 25 10:22:04 2009
@@ -54,6 +54,8 @@
 import org.apache.tiles.test.evaluator.el.MultiversionExpressionFactoryFactory;
 import org.apache.tiles.test.renderer.ReverseStringAttributeRenderer;
 
+import com.anydoby.tiles2.velocity.VelocityContextFactory;
+
 /**
  * Test Tiles container factory to customize Tiles behaviour.
  *
@@ -91,6 +93,9 @@
         registerRequestContextFactory(
                 FreeMarkerTilesRequestContextFactory.class.getName(),
                 factories, contextFactory);
+        registerRequestContextFactory(
+                VelocityContextFactory.class.getName(),
+                factories, contextFactory);
         contextFactory.setFactories(factories);
     }
 

Added: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/VM_global_library.vm
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/VM_global_library.vm?rev=747725&view=auto
==============================================================================
--- 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/VM_global_library.vm
 (added)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/VM_global_library.vm
 Wed Feb 25 10:22:04 2009
@@ -0,0 +1,60 @@
+## 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.
+
+## Display all queued Struts errors
+#macro (errorMarkup)
+    #if ($errors.exist() )
+        <ul>
+        #foreach ($e in $errors.all )
+            $e
+        #end
+        </ul>
+    #end
+#end
+
+## Display all queued Struts errors for a particular property
+#macro (errorMarkupForProperty $property)
+    #if ($errors.exist($property) )
+        <ul>
+        #foreach ($er in $errors.get($property))
+            $er
+        #end
+        </ul>
+    #end
+#end
+
+## Display all queued Struts errors
+#macro (messageMarkup)
+    #if ($messages.exist() )
+        <ul>
+        #foreach ($m in $messages.all )
+            $m
+        #end
+        </ul>
+    #end
+#end
+
+## Display all queued Struts action messages for a particular property
+#macro (messageMarkupForProperty $property)
+    #if ($messages.exist($property) )
+        <ul>
+        #foreach ($m in $messages.get($property))
+            $m
+        #end
+        </ul>
+    #end
+#end

Modified: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml
 (original)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/freemarker/tiles-defs.xml
 Wed Feb 25 10:22:04 2009
@@ -134,6 +134,12 @@
       <put-attribute name="body"   value="/freemarker/body.ftl" role="badrole" 
/>
   </definition>
 
+  <definition name="freemarker.test.definition.roles.tags" 
template="/freemarker/layout_roles.ftl">
+      <put-attribute name="title"  value="This is the title."/>
+      <put-attribute name="header" value="/freemarker/header.ftl" />
+      <put-attribute name="body"   value="/freemarker/body.ftl" />
+  </definition>
+
   <!-- Tests for cascaded attributes -->
   <definition name="freemarker.test.overridden.cascaded.definition" 
template="/freemarker/layout.ftl">
       <put-attribute name="title"  value="This is the title." cascade="true" />

Propchange: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-alt-defs.xml
            ('svn:mergeinfo' removed)

Modified: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-defs.xml
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-defs.xml?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-defs.xml 
(original)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tiles-defs.xml 
Wed Feb 25 10:22:04 2009
@@ -146,6 +146,12 @@
       <put-attribute name="body"   value="/body.jsp" role="badrole" />
   </definition>
 
+  <definition name="test.definition.roles.tags" template="/layout_roles.jsp">
+      <put-attribute name="title"  value="This is the title."/>
+      <put-attribute name="header" value="/header.jsp" />
+      <put-attribute name="body"   value="/body.jsp" />
+  </definition>
+
   <!-- Tests for cascaded attributes -->
   <definition name="test.overridden.cascaded.definition" 
template="/layout.jsp">
       <put-attribute name="title"  value="This is the title." cascade="true" />

Added: tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml?rev=747725&view=auto
==============================================================================
--- tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml 
(added)
+++ tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml 
Wed Feb 25 10:22:04 2009
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+
+<!--
+ 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.
+-->
+
+<tools>
+  <data type="string" key="version" value="2.0"/>
+  <!-- ordinarily the SecureLinkTool would simply replace the StrutsLinkTool
+       if SSL Ext. is in use - in that case the key would be 'link' but it's
+        'slink' here to distinguish between the two. -->
+  <toolbox scope="request">
+    <tool key="tiles" class="com.anydoby.tiles2.velocity.Tiles2Tool"/>
+  </toolbox>
+
+</tools>

Propchange: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/tools.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties?rev=747725&view=auto
==============================================================================
--- 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties
 (added)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties
 Wed Feb 25 10:22:04 2009
@@ -0,0 +1,114 @@
+# 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.
+
+# ----------------------------------------------------------------------------
+# These are the default properties for the
+# Velocity Runtime. These values are used when
+# Runtime.init() is called, and when Runtime.init(properties)
+# fails to find the specificed properties file.
+# ----------------------------------------------------------------------------
+
+
+# ----------------------------------------------------------------------------
+# R U N T I M E  L O G
+# ----------------------------------------------------------------------------
+# Velocity uses the Servlet APIs logging facilites.
+
+# ----------------------------------------------------------------------------
+# This controls if Runtime.error(), info() and warn() messages include the
+# whole stack trace. The last property controls whether invalid references
+# are logged.
+# ----------------------------------------------------------------------------
+
+runtime.log.invalid.reference = true
+
+
+# ----------------------------------------------------------------------------
+# T E M P L A T E  E N C O D I N G
+# ----------------------------------------------------------------------------
+
+input.encoding=ISO-8859-1
+output.encoding=ISO-8859-1
+
+
+# ----------------------------------------------------------------------------
+# F O R E A C H  P R O P E R T I E S
+# ----------------------------------------------------------------------------
+# These properties control how the counter is accessed in the #foreach
+# directive. By default the reference $velocityCount will be available
+# in the body of the #foreach directive. The default starting value
+# for this reference is 1.
+# ----------------------------------------------------------------------------
+
+directive.foreach.counter.name = velocityCount
+directive.foreach.counter.initial.value = 1
+
+
+# ----------------------------------------------------------------------------
+# I N C L U D E  P R O P E R T I E S
+# ----------------------------------------------------------------------------
+# These are the properties that governed the way #include'd content
+# is governed.
+# ----------------------------------------------------------------------------
+
+directive.include.output.errormsg.start = <!-- include error :
+directive.include.output.errormsg.end   =  see error log -->
+
+
+# ----------------------------------------------------------------------------
+# P A R S E  P R O P E R T I E S
+# ----------------------------------------------------------------------------
+
+directive.parse.max.depth = 10
+
+
+# ----------------------------------------------------------------------------
+# VELOCIMACRO PROPERTIES
+# ----------------------------------------------------------------------------
+# global : name of default global library.  It is expected to be in the regular
+# template path.  You may remove it (either the file or this property) if
+# you wish with no harm.
+# ----------------------------------------------------------------------------
+# dev-changes by Marino
+webapp.resource.loader.cache = true
+webapp.resource.loader.modificationCheckInterval = 5
+velocimacro.library.autoreload = false
+velocimacro.library = /WEB-INF/VM_global_library.vm
+
+velocimacro.permissions.allow.inline = true
+velocimacro.permissions.allow.inline.to.replace.global = false
+velocimacro.permissions.allow.inline.local.scope = false
+
+velocimacro.context.localscope = false
+
+# ----------------------------------------------------------------------------
+# INTERPOLATION
+# ----------------------------------------------------------------------------
+# turn off and on interpolation of references and directives in string
+# literals.  ON by default :)
+# ----------------------------------------------------------------------------
+runtime.interpolate.string.literals = true
+
+
+# ----------------------------------------------------------------------------
+# RESOURCE MANAGEMENT
+# ----------------------------------------------------------------------------
+# Allows alternative ResourceManager and ResourceCache implementations
+# to be plugged in.
+# ----------------------------------------------------------------------------
+resource.manager.class = 
org.apache.velocity.runtime.resource.ResourceManagerImpl
+resource.manager.cache.class = 
org.apache.velocity.runtime.resource.ResourceCacheImpl

Propchange: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/velocity.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/web.xml
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/web.xml?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/web.xml 
(original)
+++ tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/WEB-INF/web.xml Wed 
Feb 25 10:22:04 2009
@@ -115,6 +115,28 @@
     </servlet>
 
     <servlet>
+      <servlet-name>velocity</servlet-name>
+      
<servlet-class>org.apache.velocity.tools.view.VelocityViewServlet</servlet-class>
+    
+      <!--
+        Unless you plan to put your tools.xml and velocity.properties under
+        different folders or give them different names, then these two
+        init-params are unnecessary. The VelocityViewServlet will
+        automatically look for these files in the following locations.
+      -->
+      <init-param>
+        <param-name>org.apache.velocity.toolbox</param-name>
+        <param-value>/WEB-INF/tools.xml</param-value>
+      </init-param>
+    
+      <init-param>
+        <param-name>org.apache.velocity.properties</param-name>
+        <param-value>/WEB-INF/velocity.properties</param-value>
+      </init-param>
+    </servlet>
+
+
+    <servlet>
         <servlet-name>Tiles Dispatch Servlet</servlet-name>
         
<servlet-class>org.apache.tiles.web.util.TilesDispatchServlet</servlet-class>
     </servlet>
@@ -188,6 +210,10 @@
         <servlet-name>selectLocaleServletFreemarker</servlet-name>
         <url-pattern>/freemarker/servlets/selectLocaleServlet</url-pattern>
     </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>velocity</servlet-name>
+        <url-pattern>*.vm</url-pattern>
+    </servlet-mapping>
 
     <servlet-mapping>
         <servlet-name>Tiles Dispatch Servlet</servlet-name>

Modified: tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/index.jsp
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/index.jsp?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/index.jsp (original)
+++ tiles/sandbox/trunk/tiles-test-sandbox/src/main/webapp/index.jsp Wed Feb 25 
10:22:04 2009
@@ -73,6 +73,7 @@
     <a href="testinsertdefinition_role.jsp">Test Insert Configured Definition 
with Specified Role</a><br/>
     <a href="testinsertdefinition_role_tag.jsp">Test Insert Configured 
Definition with Specified Role in Tag</a><br/>
     <a href="testinsertdefinition_attribute_roles.jsp">Test Insert Configured 
Definition with Attribute that have Roles</a><br/>
+    <a href="testinsertdefinition_attribute_roles_tags.jsp">Test Insert 
Configured Definition with Attribute that have Roles in Tags</a><br/>
 
     <h2>Features in Tiles 2.1.x</h2>
 
@@ -154,6 +155,7 @@
     <a href="freemarker/testinsertdefinition_role.ftl">FreeMarker: Test Insert 
Configured Definition with Specified Role</a><br/>
     <a href="freemarker/testinsertdefinition_role_tag.ftl">FreeMarker: Test 
Insert Configured Definition with Specified Role in Tag</a><br/>
     <a href="freemarker/testinsertdefinition_attribute_roles.ftl">FreeMarker: 
Test Insert Configured Definition with Attribute that have Roles</a><br/>
+    <a 
href="freemarker/testinsertdefinition_attribute_roles_tags.ftl">FreeMarker: 
Test Insert Configured Definition with Attribute that have Roles in 
Tags</a><br/>
 
     <h2>Features in Tiles 2.1.x</h2>
 

Copied: 
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html
 (from r747340, 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html)
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html?p2=tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html&p1=tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html&r1=747340&r2=747725&rev=747725&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html
 (original)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/ConfiguredDefinitionAttributeRolesTagsTest.html
 Wed Feb 25 10:22:04 2009
@@ -32,7 +32,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/tiles-test/index.jsp</td>
+       <td>/tiles-test-sandbox/index.jsp</td>
        <td></td>
 </tr>
 <tr>

Modified: 
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/TestSuite.html
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/TestSuite.html?rev=747725&r1=747724&r2=747725&view=diff
==============================================================================
--- tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/TestSuite.html 
(original)
+++ tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/TestSuite.html Wed 
Feb 25 10:22:04 2009
@@ -214,6 +214,9 @@
         <td><a href="ConfiguredDefinitionAttributeRolesTest.html">Configured 
Definition Attribute Roles Test</a></td>
     </tr>
     <tr>
+        <td><a 
href="ConfiguredDefinitionAttributeRolesTagsTest.html">Configured Definition 
Attribute Roles Tags Test</a></td>
+    </tr>
+    <tr>
         <td><a href="ConfiguredDefinitionDbTest.html">Configured Definition Db 
Test</a></td>
     </tr>
     <tr>
@@ -409,6 +412,9 @@
         <td><a 
href="freemarker/ConfiguredDefinitionAttributeRolesTest.html">FreeMarker: 
Configured Definition Attribute Roles Test</a></td>
     </tr>
     <tr>
+        <td><a 
href="freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html">FreeMarker: 
Configured Definition Attribute Roles Tags Test</a></td>
+    </tr>
+    <tr>
         <td><a href="freemarker/ConfiguredDefinitionDbTest.html">FreeMarker: 
Configured Definition Db Test</a></td>
     </tr>
     <tr>

Copied: 
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html
 (from r747340, 
tiles/framework/trunk/tiles-test/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html)
URL: 
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html?p2=tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html&p1=tiles/framework/trunk/tiles-test/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html&r1=747340&r2=747725&rev=747725&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-test/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html
 (original)
+++ 
tiles/sandbox/trunk/tiles-test-sandbox/src/test/selenium/freemarker/ConfiguredDefinitionAttributeRolesTagsTest.html
 Wed Feb 25 10:22:04 2009
@@ -32,7 +32,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/tiles-test/index.jsp</td>
+       <td>/tiles-test-sandbox/index.jsp</td>
        <td></td>
 </tr>
 <tr>


Reply via email to