Repository: wicket Updated Branches: refs/heads/wicket-6.x 5ae2809bd -> 7722b13c5
WICKET-5887 Mandate that the value of 'wicket:enclosure" attribute is non-empty. Disallows whitespace (cherry picked from commit 766336077a6e35ee0536cab76a204862b2a3993c) Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/7722b13c Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/7722b13c Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/7722b13c Branch: refs/heads/wicket-6.x Commit: 7722b13c5955224db157e8b5313923636e362bac Parents: 5ae2809 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Sun Apr 19 22:55:14 2015 +0300 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Sun Apr 19 23:04:07 2015 +0300 ---------------------------------------------------------------------- wicket-core/src/main/resources/META-INF/wicket.xsd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/7722b13c/wicket-core/src/main/resources/META-INF/wicket.xsd ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/resources/META-INF/wicket.xsd b/wicket-core/src/main/resources/META-INF/wicket.xsd index 56a9ade..1f47e22 100644 --- a/wicket-core/src/main/resources/META-INF/wicket.xsd +++ b/wicket-core/src/main/resources/META-INF/wicket.xsd @@ -68,7 +68,7 @@ </documentation> </annotation> <simpleType> - <restriction base="wicket:token"> + <restriction base="wicket:notEmptyToken"> <pattern value="([^:]+(:[^:]+)*)?" /> </restriction> </simpleType>
