2004-10-22 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Fri, 22 Oct 2004 17:46:39 +0000 (17:46 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Fri, 22 Oct 2004 17:46:39 +0000 (17:46 -0000)
AssemblyInfo.cs,
TODOAttribute.cs: Initial Checkin.

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

mcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs [new file with mode: 0755]
mcs/class/Mono.Xml.Ext/Assembly/ChangeLog [new file with mode: 0755]
mcs/class/Mono.Xml.Ext/Assembly/TODOAttribute.cs [new file with mode: 0755]

diff --git a/mcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs b/mcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs
new file mode 100755 (executable)
index 0000000..e93f900
--- /dev/null
@@ -0,0 +1,68 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2003 Ximian, Inc.  http://www.ximian.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.
+//
+
+using System;
+using System.Reflection;
+using System.Resources;
+using System.Security;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about the system assembly
+
+#if (NET_1_0)
+       [assembly: AssemblyVersion("1.0.3300.0")]
+       [assembly: SatelliteContractVersion("1.0.3300.0")]
+#elif (NET_2_0)
+       [assembly: AssemblyVersion ("2.0.3600.0")]
+       [assembly: SatelliteContractVersion ("2.0.3600.0")]
+#elif (NET_1_1)
+       [assembly: AssemblyVersion("1.0.5000.0")]
+       [assembly: SatelliteContractVersion("1.0.5000.0")]
+#endif
+
+[assembly: AssemblyTitle("Mono.Xml.Ext.dll")]
+[assembly: AssemblyDescription("Mono.Xml.Ext.dll")]
+[assembly: AssemblyConfiguration("Development version")]
+[assembly: AssemblyCompany("MONO development team")]
+[assembly: AssemblyProduct("MONO CLI")]
+[assembly: AssemblyCopyright("(c) 2004 Novell Inc.")]
+[assembly: AssemblyTrademark("")]
+
+[assembly: CLSCompliant(true)]
+[assembly: AssemblyDefaultAlias("Mono.Xml.Ext.dll")]
+[assembly: AssemblyInformationalVersion("0.0.0.1")]
+[assembly: NeutralResourcesLanguage("en-US")]
+
+[assembly: ComVisible(false)]
+[assembly: AllowPartiallyTrustedCallers]
+
+[assembly: AssemblyDelaySign(true)]
+[assembly: AssemblyKeyFile("../ecma.pub")]
diff --git a/mcs/class/Mono.Xml.Ext/Assembly/ChangeLog b/mcs/class/Mono.Xml.Ext/Assembly/ChangeLog
new file mode 100755 (executable)
index 0000000..1821945
--- /dev/null
@@ -0,0 +1,5 @@
+2004-10-22  Atsushi Enomoto <atsushi@ximian.com>
+
+       AssemblyInfo.cs,
+       TODOAttribute.cs: Initial Checkin.
+
diff --git a/mcs/class/Mono.Xml.Ext/Assembly/TODOAttribute.cs b/mcs/class/Mono.Xml.Ext/Assembly/TODOAttribute.cs
new file mode 100755 (executable)
index 0000000..d5fc1fd
--- /dev/null
@@ -0,0 +1,57 @@
+//
+// TODOAttribute.cs
+//
+// Author:
+//   Ravi Pratap (ravi@ximian.com)
+//
+// (C) Ximian, Inc.  http://www.ximian.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.
+//
+
+namespace System.Xml {
+
+       /// <summary>
+       ///   The TODO attribute is used to flag all incomplete bits in our class libraries
+       /// </summary>
+       ///
+       /// <remarks>
+       ///   Use this to decorate any element which you think is not complete
+       /// </remarks>
+       [AttributeUsage (AttributeTargets.All)]
+       internal class MonoTODOAttribute : Attribute {
+
+               string comment;
+
+               public MonoTODOAttribute ()
+               {}
+
+               public MonoTODOAttribute (string comment)
+               {
+                       this.comment = comment;
+               }
+
+               public string Comment {
+                       get { return comment; }
+               }
+       }
+}