[
http://issues.apache.org/jira/browse/VALIDATOR-216?page=comments#action_12458009
]
Gabriel Belingueres commented on VALIDATOR-216:
-----------------------------------------------
We could modify it this way (surely there are better ways, but this will quicly
patch it for the medium term:
1) Make UrlValidator implement the TLDConstants interface.
2) Replace:
if (topLevel.length() < 2 || topLevel.length() > 4) {
for this:
if (Arrays.binarySearch(TLDs, topLevel.toUpperCase()) < 0) {
See attached file for the TLDConstants.java file, which can be easily
regenerated each time a new release is about to be generated (though I don't
really know how often TLDs varies, but I could guess that not much).
Gabriel
> UrlValidator rejects top-level domains (TLDs) with more than 4 characters
> -------------------------------------------------------------------------
>
> Key: VALIDATOR-216
> URL: http://issues.apache.org/jira/browse/VALIDATOR-216
> Project: Commons Validator
> Issue Type: Bug
> Affects Versions: 1.3.1 Release
> Reporter: Kenji Matsuoka
> Priority: Minor
> Attachments: TLDConstants.java
>
>
> org.apache.commons.validator.UrlValidator#isValidAuthority rejects top-level
> domains (TLDs) with more than four characters. There are now at least two
> TLDs with more characters, .museum and .travel.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]