You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/07/23 17:35:30 UTC

[1/2] git commit: Roll version number forward to 5.4-alpha-15

Updated Branches:
  refs/heads/master 4255ec37f -> 6215227ec


Roll version number forward to 5.4-alpha-15


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/341e10d9
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/341e10d9
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/341e10d9

Branch: refs/heads/master
Commit: 341e10d9367b0633dfe57a41ce164bb81469796d
Parents: 4255ec3
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jul 22 17:42:37 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jul 22 17:42:37 2013 -0700

----------------------------------------------------------------------
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/341e10d9/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 4b330a8..6b2c175 100755
--- a/build.gradle
+++ b/build.gradle
@@ -36,7 +36,7 @@ project.version = tapestryVersion()
 def tapestryVersion() {
 
     def major = "5.4"
-    def minor = "-alpha-14"
+    def minor = "-alpha-15"
 
     // When building on the CI server, make sure -SNAPSHOT is appended, as it is a nightly build.
     // When building normally, or for a release, no suffix is desired.


[2/2] git commit: Adjust timing of focus tests to allow for 1/8th second delay

Posted by hl...@apache.org.
Adjust timing of focus tests to allow for 1/8th second delay


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/6215227e
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/6215227e
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/6215227e

Branch: refs/heads/master
Commit: 6215227ecbd3dccd5db9748bc7a8458d3671470e
Parents: 341e10d
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Tue Jul 23 08:35:20 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Tue Jul 23 08:35:20 2013 -0700

----------------------------------------------------------------------
 .../tapestry5/integration/app1/FormFieldFocusTest.groovy       | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/6215227e/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
index 3a103eb..d61df0f 100644
--- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
+++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, 2012 The Apache Software Foundation
+// Copyright (c) 2011-2013 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.
@@ -31,6 +31,8 @@ class FormFieldFocusTest extends TapestryCoreTestCase
 
         waitForPageInitialized()
 
+        sleep 250
+
         assertEquals getEval("window.document.activeElement.value"), "But I got the focus!"
 
     }
@@ -42,6 +44,8 @@ class FormFieldFocusTest extends TapestryCoreTestCase
 
         waitForPageInitialized()
 
+        sleep 250
+
         assertEquals getEval("window.document.activeElement.value"), "But I got the focus!"
 
     }


[2/2] git commit: Adjust timing of focus tests to allow for 1/8th second delay

Posted by hl...@apache.org.
Adjust timing of focus tests to allow for 1/8th second delay


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/6215227e
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/6215227e
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/6215227e

Branch: refs/heads/master
Commit: 6215227ecbd3dccd5db9748bc7a8458d3671470e
Parents: 341e10d
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Tue Jul 23 08:35:20 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Tue Jul 23 08:35:20 2013 -0700

----------------------------------------------------------------------
 .../tapestry5/integration/app1/FormFieldFocusTest.groovy       | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/6215227e/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
index 3a103eb..d61df0f 100644
--- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
+++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/FormFieldFocusTest.groovy
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, 2012 The Apache Software Foundation
+// Copyright (c) 2011-2013 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.
@@ -31,6 +31,8 @@ class FormFieldFocusTest extends TapestryCoreTestCase
 
         waitForPageInitialized()
 
+        sleep 250
+
         assertEquals getEval("window.document.activeElement.value"), "But I got the focus!"
 
     }
@@ -42,6 +44,8 @@ class FormFieldFocusTest extends TapestryCoreTestCase
 
         waitForPageInitialized()
 
+        sleep 250
+
         assertEquals getEval("window.document.activeElement.value"), "But I got the focus!"
 
     }