Changes between Initial Version and Version 1 of Ticket #12058, comment 1


Ignore:
Timestamp:
Nov 12, 2014, 2:06:54 AM (9 years ago)
Author:
Jun Omae
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12058, comment 1

    initial v1  
    1313}}}
    1414
    15 Another considering, seems that max length of [http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains TLDs] is larger than 6. According to [http://en.wikipedia.org/wiki/Domain_name#Domain_name_syntax domain name syntax], each label of domain name is 1 to 63 octets.
     15Another considering, seems that max length of [http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains TLDs] is larger than 6, and digits and `-` characters are used in internationalized TLD. According to [http://en.wikipedia.org/wiki/Domain_name#Domain_name_syntax domain name syntax], each label of domain name is 1 to 63 octets.
    1616
    1717{{{#!diff
    1818-        r'(?i)^[A-Z0-9._%+-]+@(?:[A-Z0-9-]+\.)+[A-Z]{2,6}$',
    19 +        r'(?i)^[A-Z0-9._%+-]+@(?:[A-Z0-9-]+\.)+[A-Z]{2,63}$',
     19+        r'(?i)^[A-Z0-9._%+-]+@(?:[A-Z0-9-]+\.)+[A-Z0-9-]{2,63}$',
    2020}}}