Author: tawus
Date: Sun Nov 6 13:42:35 2011
New Revision: 1198366
URL: http://svn.apache.org/viewvc?rev=1198366&view=rev
Log:
TAP5-1742: Missing newly added files (Sorry! new to svn, forgot to add files)
Added:
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/app1/LoopWithMixinDemo.tml
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/LoopWithMixinDemo.java
Added:
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/app1/LoopWithMixinDemo.tml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.3/tapestry-core/src/test/app1/LoopWithMixinDemo.tml?rev=1198366&view=auto
==============================================================================
---
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/app1/LoopWithMixinDemo.tml
(added)
+++
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/app1/LoopWithMixinDemo.tml
Sun Nov 6 13:42:35 2011
@@ -0,0 +1,6 @@
+<html t:type='border'
xmlns:t='http://tapestry.apache.org/schema/tapestry_5_3.xsd'>
+ <h1>Loop with Mixin Demo</h1>
+ <span t:type='loop' t:source='123456..123457' t:value='value'
t:mixins='tracerMixin'>
+ ${value}
+ </span>
+</html>
\ No newline at end of file
Added:
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/LoopWithMixinDemo.java
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.3/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/LoopWithMixinDemo.java?rev=1198366&view=auto
==============================================================================
---
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/LoopWithMixinDemo.java
(added)
+++
tapestry/tapestry5/branches/5.3/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/LoopWithMixinDemo.java
Sun Nov 6 13:42:35 2011
@@ -0,0 +1,26 @@
+// Copyright 2011 The Apache Software Foundation
+//
+// Licensed 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.
+package org.apache.tapestry5.integration.app1.pages;
+
+import org.apache.tapestry5.annotations.Property;
+
+/**
+ * Testing loop with mixins
+ */
+public class LoopWithMixinDemo
+{
+ @Property
+ private int value;
+
+}