Author: atsushi
Date: 2005-04-15 12:07:51 -0400 (Fri, 15 Apr 2005)
New Revision: 43061

Added:
   trunk/mcs/class/corlib/System.Text/NormalizationForm.cs
Modified:
   trunk/mcs/class/corlib/ChangeLog
   trunk/mcs/class/corlib/System.Text/ChangeLog
   trunk/mcs/class/corlib/corlib.dll.sources
Log:
added System.Text/NormalizationForm.cs



Modified: trunk/mcs/class/corlib/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/ChangeLog    2005-04-15 16:07:35 UTC (rev 43060)
+++ trunk/mcs/class/corlib/ChangeLog    2005-04-15 16:07:51 UTC (rev 43061)
@@ -1,3 +1,7 @@
+2005-04-16  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
+       * corlib.dll.sources : added System.Text/NormalizationForm.cs.
+
 2005-04-02  Ben Maurer  <[EMAIL PROTECTED]>
 
        * corlib_test.dll.sources: Add new test.

Modified: trunk/mcs/class/corlib/System.Text/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.Text/ChangeLog        2005-04-15 16:07:35 UTC 
(rev 43060)
+++ trunk/mcs/class/corlib/System.Text/ChangeLog        2005-04-15 16:07:51 UTC 
(rev 43061)
@@ -1,3 +1,7 @@
+2005-04-16  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
+       * NormalizationForm.cs : new file.
+
 2005-03-20  Ben Maurer  <[EMAIL PROTECTED]>
 
        * StringBuilder.cs (set_Length): If we set the length, we must

Added: trunk/mcs/class/corlib/System.Text/NormalizationForm.cs
===================================================================
--- trunk/mcs/class/corlib/System.Text/NormalizationForm.cs     2005-04-15 
16:07:35 UTC (rev 43060)
+++ trunk/mcs/class/corlib/System.Text/NormalizationForm.cs     2005-04-15 
16:07:51 UTC (rev 43061)
@@ -0,0 +1,41 @@
+//
+// System.Text.NormalizationForm.cs
+//
+// Author:
+//     Atsushi Enomoto <[EMAIL PROTECTED]>
+//
+
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+#if NET_2_0
+namespace System.Text
+{
+       [Serializable]
+       public enum NormalizationForm {
+               FormC = 1,
+               FormD = 2,
+               FormKC = 5,
+               FormKD = 6
+       }
+}
+#endif

Modified: trunk/mcs/class/corlib/corlib.dll.sources
===================================================================
--- trunk/mcs/class/corlib/corlib.dll.sources   2005-04-15 16:07:35 UTC (rev 
43060)
+++ trunk/mcs/class/corlib/corlib.dll.sources   2005-04-15 16:07:51 UTC (rev 
43061)
@@ -1192,6 +1192,7 @@
 System.Text/Encoder.cs
 System.Text/Encoding.cs
 System.Text/Latin1Encoding.cs
+System.Text/NormalizationForm.cs
 System.Text/StringBuilder.cs
 System.Text/UnicodeEncoding.cs
 System.Text/UTF7Encoding.cs

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to