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/06/11 02:33:45 UTC

[1/2] git commit: Update script to compile to correct location

Updated Branches:
  refs/heads/master 8515eb9ef -> f02a205eb


Update script to compile to correct location


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

Branch: refs/heads/master
Commit: a5df755b56ad80a05bc0ad938ba6b4fbeb7652ed
Parents: 8515eb9
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 10 15:50:28 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 10 15:50:28 2013 -0700

----------------------------------------------------------------------
 tapestry-core/compile-test-coffeescript | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a5df755b/tapestry-core/compile-test-coffeescript
----------------------------------------------------------------------
diff --git a/tapestry-core/compile-test-coffeescript b/tapestry-core/compile-test-coffeescript
index 9130567..9f6a290 100755
--- a/tapestry-core/compile-test-coffeescript
+++ b/tapestry-core/compile-test-coffeescript
@@ -6,6 +6,6 @@
 # Doe NOT compile the test scripts.
 
 inputDir=src/test/coffeescript
-outputDir=build/generated-sources/compiled-test-coffeescript
+outputDir=src/main/generated/compiled-test-coffeescript
 
 coffee --watch --bare --output $outputDir $inputDir
\ No newline at end of file


[2/2] git commit: Add events to Palette component so that client-side can choose to accept or veto a change to the selection

Posted by hl...@apache.org.
Add events to Palette component so that client-side can choose to accept or veto a change to the selection


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

Branch: refs/heads/master
Commit: f02a205eb19e314a9536352c401b7c2288b52797
Parents: a5df755
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 10 17:33:37 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 10 17:33:37 2013 -0700

----------------------------------------------------------------------
 .../integration/TapestryBeanValidationIntegrationTests.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/f02a205e/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
----------------------------------------------------------------------
diff --git a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
index 248c24e..a81cc83 100644
--- a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
+++ b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
@@ -1,4 +1,4 @@
-// Copyright 2009, 2010, 2012 The Apache Software Foundation
+// Copyright 2009-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.
@@ -21,9 +21,9 @@ import org.testng.annotations.Test;
 @TapestryTestConfiguration(webAppFolder = "src/test/webapp")
 public class TapestryBeanValidationIntegrationTests extends SeleniumTestCase
 {
-    public static final String AVAILABLE_OPTIONS = "css=.t-palette-available select";
+    public static final String AVAILABLE_OPTIONS = "css=.palette-available select";
 
-    public static final String SELECT_BUTTON = "css=.t-palette [data-action=select]";
+    public static final String SELECT_BUTTON = "css=.palette [data-action=select]";
 
     @Test
     public void form_validation() throws Exception


[2/2] git commit: Add events to Palette component so that client-side can choose to accept or veto a change to the selection

Posted by hl...@apache.org.
Add events to Palette component so that client-side can choose to accept or veto a change to the selection


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

Branch: refs/heads/master
Commit: f02a205eb19e314a9536352c401b7c2288b52797
Parents: a5df755
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 10 17:33:37 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 10 17:33:37 2013 -0700

----------------------------------------------------------------------
 .../integration/TapestryBeanValidationIntegrationTests.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/f02a205e/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
----------------------------------------------------------------------
diff --git a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
index 248c24e..a81cc83 100644
--- a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
+++ b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
@@ -1,4 +1,4 @@
-// Copyright 2009, 2010, 2012 The Apache Software Foundation
+// Copyright 2009-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.
@@ -21,9 +21,9 @@ import org.testng.annotations.Test;
 @TapestryTestConfiguration(webAppFolder = "src/test/webapp")
 public class TapestryBeanValidationIntegrationTests extends SeleniumTestCase
 {
-    public static final String AVAILABLE_OPTIONS = "css=.t-palette-available select";
+    public static final String AVAILABLE_OPTIONS = "css=.palette-available select";
 
-    public static final String SELECT_BUTTON = "css=.t-palette [data-action=select]";
+    public static final String SELECT_BUTTON = "css=.palette [data-action=select]";
 
     @Test
     public void form_validation() throws Exception