Explorar o código

2002-08-26 Gonzalo Paniagua Javier <[email protected]>

	* AuthenticationMode.cs:
	* ClientTargetSectionHandler.cs:
	* FormsAuthPasswordFormat.cs:
	* FormsProtectionEnum.cs:
	* HttpCapabilitiesBase.cs: fixes base on class status page.

svn path=/trunk/mcs/; revision=7047
Gonzalo Paniagua Javier %!s(int64=23) %!d(string=hai) anos
pai
achega
b83d3bf2ad

+ 3 - 3
mcs/class/System.Web/System.Web.Configuration/AuthenticationMode.cs

@@ -10,10 +10,10 @@ namespace System.Web.Configuration {
 	/// Defines the AuthenticationMode for a Web Application.
 	/// </summary>
 	public enum AuthenticationMode{
-		Forms, 
 		None,
-		Passport, 
-		Windows
+		Windows,
+		Passport,
+		Forms
 	}
 
 } //namespace System.Web.Configuration

+ 8 - 0
mcs/class/System.Web/System.Web.Configuration/ChangeLog

@@ -1,3 +1,11 @@
+2002-08-26  Gonzalo Paniagua Javier <[email protected]>
+
+	* AuthenticationMode.cs:
+	* ClientTargetSectionHandler.cs:
+	* FormsAuthPasswordFormat.cs:
+	* FormsProtectionEnum.cs:
+	* HttpCapabilitiesBase.cs: fixes base on class status page.
+
 2002-08-05  Patrik Torstensson <[email protected]>
 
 	* HandlerFactoryConfiguration.cs,

+ 1 - 1
mcs/class/System.Web/System.Web.Configuration/ClientTargetSectionHandler.cs

@@ -11,7 +11,7 @@ namespace System.Web.Configuration
 	/// <summary>
 	/// Summary description for ClientTargetSectionHandler.
 	/// </summary>
-	public class ClientTargetSectionHandler: NameValueSectionHandler
+	class ClientTargetSectionHandler: NameValueSectionHandler
 	{
 		/// <summary>
 		///		ClientTargetSectionHandler Constructor

+ 2 - 2
mcs/class/System.Web/System.Web.Configuration/FormsAuthPasswordFormat.cs

@@ -11,8 +11,8 @@ namespace System.Web.Configuration {
 	/// </summary>
 	public enum FormsAuthPasswordFormat{
 		Clear, 
-		MD5, 
-		SHA1
+		SHA1,
+		MD5
 	}
 
 } //namespace System.Web.Configuration

+ 1 - 1
mcs/class/System.Web/System.Web.Configuration/FormsProtectionEnum.cs

@@ -11,8 +11,8 @@ namespace System.Web.Configuration {
 	/// </summary>
 	public enum FormsProtectionEnum{
 		All, 
-		Encryption, 
 		None, 
+		Encryption, 
 		Validation
 	}
 

+ 5 - 1
mcs/class/System.Web/System.Web.Configuration/HttpCapabilitiesBase.cs

@@ -14,7 +14,7 @@ namespace System.Web.Configuration {
 	
 public class HttpCapabilitiesBase
 {
-	protected Hashtable _capabilities;
+	Hashtable _capabilities;
 
 	public HttpCapabilitiesBase ()
 	{
@@ -30,6 +30,10 @@ public class HttpCapabilitiesBase
 	{
 		throw new NotImplementedException ();
 	}
+
+	protected virtual void Init ()
+	{
+	}
 	
 }
 }