[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Dotgnu-pnet] [bug #26122] new Uri("http://4gr.net") fails
From: |
Thomas Uxiou |
Subject: |
[Dotgnu-pnet] [bug #26122] new Uri("http://4gr.net") fails |
Date: |
Wed, 08 Apr 2009 21:48:12 +0000 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en; rv:1.9.0.6) Gecko/20080528 Epiphany/2.22 Firefox/3.0 |
URL:
<http://savannah.gnu.org/bugs/?26122>
Summary: new Uri("http://4gr.net") fails
Project: DotGNU Portable.NET
Submitted by: uxiou
Submitted on: Wed Apr 8 21:48:10 2009
Category: None
Severity: 3 - Normal
Item Group: None
Status: None
Privacy: Public
Assigned to: None
Open/Closed: Open
Discussion Lock: Any
_______________________________________________________
Details:
Every domain name where at least one label starts with a number ("0" - "9")
is rejected by System,Uri.
Cause:
Uri.cs : IsDnsName
| if(tok.Length==0 || !Char.IsLetter(tok[0])) return false;
should be
| if(tok.Length==0 || !Char.IsLetterOrDigit(tok[0])) return false;
sample domains: 4gr.net, 88.cn,
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?26122>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
- [Dotgnu-pnet] [bug #26122] new Uri("http://4gr.net") fails,
Thomas Uxiou <=