Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-10-22 21:46:39 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-10-22 21:46:39 +0400
commit2498c74f6002e850117a5b551eff7a59c69e33dc (patch)
treeeb7e0e8772c0461e0214db102547e3bd26b35a26 /mcs/class/Mono.Xml.Ext
parent4a53309670be2edb856e874fa01e9de1be4e1a75 (diff)
2004-10-22 Atsushi Enomoto <atsushi@ximian.com>
AssemblyInfo.cs, TODOAttribute.cs: Initial Checkin. svn path=/trunk/mcs/; revision=35252
Diffstat (limited to 'mcs/class/Mono.Xml.Ext')
-rwxr-xr-xmcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs68
-rwxr-xr-xmcs/class/Mono.Xml.Ext/Assembly/ChangeLog5
-rwxr-xr-xmcs/class/Mono.Xml.Ext/Assembly/TODOAttribute.cs57
3 files changed, 130 insertions, 0 deletions
diff --git a/mcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs b/mcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs
new file mode 100755
index 00000000000..e93f900d23b
--- /dev/null
+++ b/mcs/class/Mono.Xml.Ext/Assembly/AssemblyInfo.cs
@@ -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
index 00000000000..18219458b22
--- /dev/null
+++ b/mcs/class/Mono.Xml.Ext/Assembly/ChangeLog
@@ -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
index 00000000000..d5fc1fdeb34
--- /dev/null
+++ b/mcs/class/Mono.Xml.Ext/Assembly/TODOAttribute.cs
@@ -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; }
+ }
+ }
+}