Updated Branches: refs/heads/master 2bc3c14c9 -> 56c87d11c
Make some core.properties keys as private if they are not intended for the client Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a392ade3 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a392ade3 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a392ade3 Branch: refs/heads/master Commit: a392ade3af749d704e771e03e4ccda4d7b44106f Parents: 2bc3c14 Author: Howard M. Lewis Ship <[email protected]> Authored: Wed Dec 4 16:56:10 2013 -0800 Committer: Howard M. Lewis Ship <[email protected]> Committed: Wed Dec 4 16:56:10 2013 -0800 ---------------------------------------------------------------------- .../main/java/org/apache/tapestry5/corelib/mixins/Confirm.java | 4 ++-- .../src/main/resources/org/apache/tapestry5/core.properties | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a392ade3/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java b/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java index e8efbf3..2d39a8f 100644 --- a/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java +++ b/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java @@ -38,13 +38,13 @@ public class Confirm /** * The message to present to the user in the body of the modal dialog. */ - @Parameter(value = "message:default-confirm-message", defaultPrefix = BindingConstants.LITERAL) + @Parameter(value = "message:private-default-confirm-message", defaultPrefix = BindingConstants.LITERAL) private String message; /** * The title for the modal dialog. */ - @Parameter(value = "message:default-confirm-title", defaultPrefix = BindingConstants.LITERAL) + @Parameter(value = "message:private-default-confirm-title", defaultPrefix = BindingConstants.LITERAL) private String title; void beginRender(MarkupWriter writer) http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a392ade3/tapestry-core/src/main/resources/org/apache/tapestry5/core.properties ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/resources/org/apache/tapestry5/core.properties b/tapestry-core/src/main/resources/org/apache/tapestry5/core.properties index 083baa0..3712977 100644 --- a/tapestry-core/src/main/resources/org/apache/tapestry5/core.properties +++ b/tapestry-core/src/main/resources/org/apache/tapestry5/core.properties @@ -123,8 +123,8 @@ core-components.submit.class=btn btn-primary # Default for showDismissAll parameter of Alerts core-alerts-show-dismiss-all=true -default-confirm-message=Are you sure you want to continue? -default-confirm-title=Confirm +private-default-confirm-message=Are you sure you want to continue? +private-default-confirm-title=Confirm # See the LocalDate component private-default-localdate-format=lll \ No newline at end of file
