You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by ro...@apache.org on 2011/06/22 10:21:48 UTC

svn commit: r1138333 - in /tapestry/tapestry5/branches/maint-5-2/tapestry-core/src: main/resources/org/apache/tapestry5/tapestry.js test/conf/testng-limited.xml

Author: robertdzeigler
Date: Wed Jun 22 08:21:48 2011
New Revision: 1138333

URL: http://svn.apache.org/viewvc?rev=1138333&view=rev
Log:
Formatting fix in tapestry.js; restore testng-limited.xml to prior state.

Modified:
    tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
    tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/test/conf/testng-limited.xml

Modified: tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js?rev=1138333&r1=1138332&r2=1138333&view=diff
==============================================================================
--- tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js (original)
+++ tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js Wed Jun 22 08:21:48 2011
@@ -1243,9 +1243,9 @@ Tapestry.Initializer = {
 		}
 
 		element.observe(Tapestry.CHANGE_VISIBILITY_EVENT, function(event) {
-            //since events propogate up, you have you call event.stop() here to prevent hiding
-            //container formFragments.
-            event.stop();
+			//since events propogate up, you have you call event.stop() here to prevent hiding
+			//container formFragments.
+			event.stop();
 			var makeVisible = event.memo.visible;
 
 			if (makeVisible == element.visible())
@@ -1255,7 +1255,7 @@ Tapestry.Initializer = {
 		});
 
 		element.observe(Tapestry.HIDE_AND_REMOVE_EVENT, function(event) {
-            event.stop();
+			event.stop();
 			var effect = runAnimation(false);
 
 			effect.options.afterFinish = function() {

Modified: tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/test/conf/testng-limited.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/test/conf/testng-limited.xml?rev=1138333&r1=1138332&r2=1138333&view=diff
==============================================================================
--- tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/test/conf/testng-limited.xml (original)
+++ tapestry/tapestry5/branches/maint-5-2/tapestry-core/src/test/conf/testng-limited.xml Wed Jun 22 08:21:48 2011
@@ -7,14 +7,9 @@
   <test name="Limited  Integration Tests">
     <parameter name="tapestry.web-app-folder" value="src/test/app1"/>
 
-<!--
     <packages>
       <package name="org.apache.tapestry5.integration.app1"/>
     </packages>
--->
-    <classes>
-        <class name="org.apache.tapestry5.integration.app1.AjaxTests"/>
-    </classes>
   </test>
 
 </suite>