2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System / System / ChangeLog
index 0b07d7a7180839c3d5a9823561269e2133fa517f..c4a1c8de265b2d16b777eda361fbc8fab5b5bdb0 100644 (file)
@@ -1,3 +1,60 @@
+2005-01-20  Miguel de Icaza  <miguel@ximian.com>
+
+       * Uri.cs: Set the UriSchemNews port default to 119 as well.
+       Fixes bug #71050.
+
+       When dealing with fragments use the `dontEscape' flag passed to
+       the Uri constructor to decide whether the fragment must or must
+       not be escaped, fixes 71051.
+
+2004-06-22  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs : Such ctor arg string that starts with "//" should be 
+         regarded as a local file path that will be condensed to single "/",
+         so handle such path differently under Windows and under *nix.
+         Since '\\' is a valid path character on Unix, so we should not
+         replace it with '/' in LocalPath.
+
+2004-06-17  Jackson Harper  <jackson@ximian.com>
+
+       * Uri.cs: Use invariant culture.
+       
+2004-06-16  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs : Fixed LocalPath. In that condition, path is always UNC.
+
+2004-06-16  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs : Reimplemented HexUnescape() (It was too broken to handle
+         multi-byte utf-8 characters.)
+
+2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs :
+         - We don't have to mind '\\'.
+         - Fixed bug #58301. When path starts with "///" and not more than
+           "////" and not "///*:", handle it as unix path and set Host as
+           empty string. In absolute path case, port should not be parsed
+           and LocalPath should start with '/'.
+         - Handle fragment in prior to path. 
+
+2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs : Handle Windows UNC. Now we could simplify Parse(). Don't
+         escape windows path twice. Check scheme name as defined in RFC2396.
+
+2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs : Reverted some changes. '#' should be handled when the input
+         string is NOT raw file path. So handle raw file paths differently.
+         (right now except for Windows UNC).
+         Cache LocalPath and don't compute every time.
+
+2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Uri.cs : Don't escape '#' in file URI paths. This fixes bug #47691.
+         Some code simplification.
+
 2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
 
        * Uri.cs :