[Mono-bugs] [Bug 58301][Min] Changed - "file" Uri constructed with empty "location" has wrong path

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 11 May 2004 15:27:44 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by tekhedd@byteheaven.net.

http://bugzilla.ximian.com/show_bug.cgi?id=58301

--- shadow/58301	2004-05-10 18:18:30.000000000 -0400
+++ shadow/58301.tmp.24746	2004-05-11 15:27:44.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 58301
 Product: Mono: Class Libraries
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: Gentoo 2.6.1 kernel
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Minor
 Component: System
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: tekhedd@byteheaven.net               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -62,6 +62,18 @@
 I am using gentoo's mono-0.91 release.
 
 Bug 54918 is resolved because microsoft's .NET is broken in the same way.
 If this is "correct", then Firefox is definitely broken. If MS's
 implementation is similarly broken, this becomes a moot point as I require
 portability, and please excuse me. :I
+
+------- Additional Comments From tekhedd@byteheaven.net  2004-05-11 15:27 -------
+I noticed this today (while writing a workaround):
+
+  Uri uri = new Uri( "/tmp/file" );
+  Console.WriteLine( uri.ToString() );
+
+This prints out:
+file:///tmp/file
+
+Which seems to indicate that this url format should be recognized by
+the constructor as an absolute path to /tmp/file...