[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mono-patches
Subject:    [Mono-patches] mcs/class/System.Web/System.Web.UI.WebControls TableRowSection.cs,NONE,1.1 ChangeLog,
From:       sanjay () mono-cvs ! ximian ! com (Sanjay Gupta <gsanjay () novell ! com>)
Date:       2004-09-30 8:53:59
Message-ID: 20040930085359.4A92794762 () mono-cvs ! ximian ! com
[Download RAW message or body]

Update of /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls
In directory mono-cvs.ximian.com:/tmp/cvs-serv29419

Modified Files:
	ChangeLog DataControlRowState.cs DataControlRowType.cs 
	HotSpotMode.cs ObjectDataSourceStatusEventHandler.cs 
	ScrollBars.cs SortDirection.cs TreeNodeTypes.cs 
Added Files:
	TableRowSection.cs 
Log Message:
ChangeLog: Updated ChangeLog.
DataControlRowState.cs:
ScrollBars.cs:
TreeNodeTypes.cs: Added attribute.
DataControlRowType.cs:
HotSpotMode.cs:
SortDirection.cs: Corrected enumeration values.
TableRowSection.cs: Added new enumeration.
ObjectDataSourceStatusEventHandler.cs: Corrected method name.



--- NEW FILE: TableRowSection.cs ---
//
// System.Web.UI.WebControls.TableRowSection.cs
//
// Author: Sanjay Gupta (gsanjay@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.
//
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
//

#if NET_2_0
namespace System.Web.UI.WebControls {
	[SerializableAttribute]
        public enum TableRowSection {
                TableBody = 0,
		TableHeader = 1,
		TableFooter = 2				
        }
}
#endif

Index: ChangeLog
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -d -r1.307 -r1.308
--- ChangeLog	28 Sep 2004 00:27:59 -0000	1.307
+++ ChangeLog	30 Sep 2004 08:53:57 -0000	1.308
@@ -1,3 +1,14 @@
+2004-09-30 Sanjay Gupta <gsanjay@novell.com>
+
+	* DataControlRowState.cs: 
+	* ScrollBars.cs:
+	* TreeNodeTypes.cs: Added attribute.
+	* DataControlRowType.cs:
+	* HotSpotMode.cs:
+	* SortDirection.cs: Corrected enumeration values.
+	* TableRowSection.cs: Added new enumeration.
+	* ObjectDataSourceStatusEventHandler.cs: Corrected method name.
+
 2004-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
 	* TableStyle.cs: don't render empty 'rules' attribute (again).

Index: DataControlRowState.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/DataControlRowState.cs,v
 retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- DataControlRowState.cs	4 Aug 2004 11:14:28 -0000	1.2
+++ DataControlRowState.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -27,6 +27,7 @@
 
 #if NET_2_0
 namespace System.Web.UI.WebControls {
+	[FlagsAttribute]
         public enum DataControlRowState {
                 Normal = 0,
 		Alternate = 1,

Index: DataControlRowType.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/DataControlRowType.cs,v
 retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- DataControlRowType.cs	4 Aug 2004 11:14:28 -0000	1.2
+++ DataControlRowType.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -31,7 +31,7 @@
                 Header = 0,
 		Footer = 1,
 		DataRow = 2,
-		Seperator = 3,
+		Separator = 3,
 		Pager = 4,
 		EmptyDataRow = 5				
         }

Index: HotSpotMode.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/HotSpotMode.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- HotSpotMode.cs	4 Aug 2004 11:14:28 -0000	1.2
+++ HotSpotMode.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -28,7 +28,7 @@
 #if NET_2_0
 namespace System.Web.UI.WebControls {
         public enum HotSpotMode {
-                Default = 0,
+                NotSet = 0,
 		Navigate = 1,
 		PostBack = 2,
 		Inactive = 3		

Index: ObjectDataSourceStatusEventHandler.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/ObjectDataSourceStatusEventHandler.cs,v
 retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ObjectDataSourceStatusEventHandler.cs	31 Aug 2004 12:27:59 -0000	1.2
+++ ObjectDataSourceStatusEventHandler.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -29,6 +29,6 @@
 //
 #if NET_2_0
 namespace System.Web.UI.WebControls {
-	public delegate void ObjectDataSourceStatusObjectEventHandler (object sender, \
ObjectDataSourceStatusEventArgs e); +	public delegate void \
ObjectDataSourceStatusEventHandler (object sender, ObjectDataSourceStatusEventArgs \
e);  }
 #endif

Index: ScrollBars.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/ScrollBars.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ScrollBars.cs	4 Aug 2004 11:14:28 -0000	1.2
+++ ScrollBars.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -27,6 +27,7 @@
 
 #if NET_2_0
 namespace System.Web.UI.WebControls {
+	[FlagsAttribute]
         public enum ScrollBars {
                 None = 0,
 		Horizontal = 1,

Index: SortDirection.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/SortDirection.cs,v
 retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- SortDirection.cs	4 Aug 2004 11:14:28 -0000	1.2
+++ SortDirection.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -28,8 +28,8 @@
 #if NET_2_0
 namespace System.Web.UI.WebControls {
         public enum SortDirection {
-                Ascending = 0,
-		Descending = 1		
+                Ascending = 1,
+		Descending = 2		
         }
 }
 #endif

Index: TreeNodeTypes.cs
===================================================================
RCS file: /cvs/public/mcs/class/System.Web/System.Web.UI.WebControls/TreeNodeTypes.cs,v
 retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- TreeNodeTypes.cs	4 Aug 2004 11:14:28 -0000	1.2
+++ TreeNodeTypes.cs	30 Sep 2004 08:53:57 -0000	1.3
@@ -27,6 +27,7 @@
 
 #if NET_2_0
 namespace System.Web.UI.WebControls {
+	[FlagsAttribute]
         public enum TreeNodeTypes {
                 None = 0,
 		Root = 1,

_______________________________________________
Mono-patches maillist  -  Mono-patches@ximian.com
http://lists.ximian.com/mailman/listinfo/mono-patches


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic