2004-04-30 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Fri, 30 Apr 2004 19:41:28 +0000 (19:41 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Fri, 30 Apr 2004 19:41:28 +0000 (19:41 -0000)
* AssemblyInfo.cs: Added
* ChangeLog: Added
* Locale.cs: Added

svn path=/trunk/mcs/; revision=26441

mcs/class/Commons.Xml.Relaxng/Assembly/AssemblyInfo.cs [new file with mode: 0755]
mcs/class/Commons.Xml.Relaxng/Assembly/ChangeLog [new file with mode: 0755]
mcs/class/Commons.Xml.Relaxng/Assembly/Locale.cs [new file with mode: 0755]

diff --git a/mcs/class/Commons.Xml.Relaxng/Assembly/AssemblyInfo.cs b/mcs/class/Commons.Xml.Relaxng/Assembly/AssemblyInfo.cs
new file mode 100755 (executable)
index 0000000..003abb6
--- /dev/null
@@ -0,0 +1,35 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2003 Ximian, Inc.  http://www.ximian.com
+//
+
+using System;
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+/* TODO COMPLETE INFORMATION
+
+#if (NET_1_0)
+       [assembly: AssemblyVersion ("1.0.3300.0")]
+#endif
+#if (NET_1_1)
+       [assembly: AssemblyVersion ("1.0.5000.0")]
+#endif
+
+[assembly: AssemblyTitle ("")]
+[assembly: AssemblyDescription ("")]
+
+[assembly: CLSCompliant (true)]
+[assembly: AssemblyFileVersion ("0.0.0.1")]
+
+[assembly: ComVisible (false)]
+
+*/
+
+[assembly: AssemblyDelaySign (true)]
+[assembly: AssemblyKeyFile("../mono.pub")]
+
diff --git a/mcs/class/Commons.Xml.Relaxng/Assembly/ChangeLog b/mcs/class/Commons.Xml.Relaxng/Assembly/ChangeLog
new file mode 100755 (executable)
index 0000000..7b523e4
--- /dev/null
@@ -0,0 +1,5 @@
+2004-04-30  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * AssemblyInfo.cs: Added
+       * ChangeLog: Added
+       * Locale.cs: Added
diff --git a/mcs/class/Commons.Xml.Relaxng/Assembly/Locale.cs b/mcs/class/Commons.Xml.Relaxng/Assembly/Locale.cs
new file mode 100755 (executable)
index 0000000..a456449
--- /dev/null
@@ -0,0 +1,24 @@
+//
+// Locale.cs
+//
+// Author:
+//   Miguel de Icaza (miguel@ximian.com)
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2001 - 2003 Ximian, Inc (http://www.ximian.com)
+//
+
+internal sealed class Locale {
+
+       private Locale ()
+       {
+       }
+
+       /// <summary>
+       ///   Returns the translated message for the current locale
+       /// </summary>
+       public static string GetText (string msg)
+       {
+               return msg;
+       }
+}