Repository: tapestry-5 Updated Branches: refs/heads/master b7cb6a89b -> 0eabe4ea3
Changed factory default for Select component's "secure" option from ALWAYS to AUTO, which was actually the intent of the b77b87e commit that fixed TAP5-2204 Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/0eabe4ea Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/0eabe4ea Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/0eabe4ea Branch: refs/heads/master Commit: 0eabe4ea3e03fe92d362cd41a2c0fffb97a0d56e Parents: b7cb6a8 Author: Bob Harner <[email protected]> Authored: Mon Feb 17 20:57:05 2014 -0500 Committer: Bob Harner <[email protected]> Committed: Mon Feb 17 20:57:05 2014 -0500 ---------------------------------------------------------------------- .../src/main/java/org/apache/tapestry5/modules/TapestryModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0eabe4ea/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java b/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java index 05b9925..df9d3d5 100644 --- a/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java +++ b/tapestry-core/src/main/java/org/apache/tapestry5/modules/TapestryModule.java @@ -2092,7 +2092,7 @@ public final class TapestryModule configuration.add(ComponentParameterConstants.PALETTE_ROWS_SIZE, 10); // Defaults for components that use a SelectModel - configuration.add(ComponentParameterConstants.VALIDATE_WITH_MODEL, SecureOption.ALWAYS); + configuration.add(ComponentParameterConstants.VALIDATE_WITH_MODEL, SecureOption.AUTO); // Zone component parameters defaults configuration.add(ComponentParameterConstants.ZONE_SHOW_METHOD, "show");
