[ 
https://issues.apache.org/jira/browse/WICKET-1850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12635195#action_12635195
 ] 

Alexey Efimov commented on WICKET-1850:
---------------------------------------

if this help a little:
        @Override
        protected boolean isValidAuthority(String authority) {
            // Cut from URL user:[EMAIL PROTECTED] cos wicket validator not 
allow authorization strings in URL
            int atIndex = authority.lastIndexOf('@');
            if (atIndex != -1 && atIndex < authority.length() - 1) {
                return super.isValidAuthority(authority.substring(atIndex + 1));
            }
            return super.isValidAuthority(authority);
        }


> UrlValidator disallow http://user:[EMAIL PROTECTED]:port/path urls
> --------------------------------------------------------------
>
>                 Key: WICKET-1850
>                 URL: https://issues.apache.org/jira/browse/WICKET-1850
>             Project: Wicket
>          Issue Type: Improvement
>    Affects Versions: 1.3.1
>            Reporter: Alexey Efimov
>            Priority: Trivial
>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to