Author: gonzalo
Date: 2005-04-20 18:19:43 -0400 (Wed, 20 Apr 2005)
New Revision: 43361
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/AuthorizationConfigHandler.cs
trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog
trunk/mcs/class/System.Web/System.Web.Configuration/CustomErrorsConfigHandler.cs
trunk/mcs/class/System.Web/System.Web.Configuration/GlobalizationConfigurationHandler.cs
trunk/mcs/class/System.Web/System.Web.Configuration/ModuleItem.cs
trunk/mcs/class/System.Web/System.Web.Configuration/PagesConfigurationHandler.cs
trunk/mcs/class/System.Web/System.Web.Configuration/WebConfigurationSettings.cs
trunk/mcs/class/System.Web/System.Web.Configuration/WebControlsSectionHandler.cs
Log:
2005-04-20 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
* ModuleItem.cs:
* GlobalizationConfigurationHandler.cs:
* WebConfigurationSettings.cs:
* CustomErrorsConfigHandler.cs:
* PagesConfigurationHandler.cs:
* WebControlsSectionHandler.cs:
* AuthorizationConfigHandler.cs: removed warnings.
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/AuthorizationConfigHandler.cs
===================================================================
---
trunk/mcs/class/System.Web/System.Web.Configuration/AuthorizationConfigHandler.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++
trunk/mcs/class/System.Web/System.Web.Configuration/AuthorizationConfigHandler.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -79,11 +79,6 @@
}
// A few methods to save some typing
- static string AttValue (string name, XmlNode node, bool
optional)
- {
- return HandlersUtil.ExtractAttributeValue (name, node,
optional);
- }
-
static string AttValue (string name, XmlNode node)
{
return HandlersUtil.ExtractAttributeValue (name, node,
true);
Modified: trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog
2005-04-20 22:18:19 UTC (rev 43360)
+++ trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog
2005-04-20 22:19:43 UTC (rev 43361)
@@ -1,3 +1,13 @@
+2005-04-20 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+ * ModuleItem.cs:
+ * GlobalizationConfigurationHandler.cs:
+ * WebConfigurationSettings.cs:
+ * CustomErrorsConfigHandler.cs:
+ * PagesConfigurationHandler.cs:
+ * WebControlsSectionHandler.cs:
+ * AuthorizationConfigHandler.cs: removed warnings.
+
2005-03-16 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
* CompilerCollection.cs:
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/CustomErrorsConfigHandler.cs
===================================================================
---
trunk/mcs/class/System.Web/System.Web.Configuration/CustomErrorsConfigHandler.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++
trunk/mcs/class/System.Web/System.Web.Configuration/CustomErrorsConfigHandler.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -168,11 +168,6 @@
return HandlersUtil.ExtractAttributeValue (name, node,
optional, allowEmpty);
}
- static string AttValue (string name, XmlNode node, bool
optional)
- {
- return HandlersUtil.ExtractAttributeValue (name, node,
optional);
- }
-
static string AttValue (string name, XmlNode node)
{
return HandlersUtil.ExtractAttributeValue (name, node,
true);
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/GlobalizationConfigurationHandler.cs
===================================================================
---
trunk/mcs/class/System.Web/System.Web.Configuration/GlobalizationConfigurationHandler.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++
trunk/mcs/class/System.Web/System.Web.Configuration/GlobalizationConfigurationHandler.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -153,11 +153,6 @@
return HandlersUtil.ExtractAttributeValue (name, node,
optional);
}
- static string AttValue (string name, XmlNode node)
- {
- return HandlersUtil.ExtractAttributeValue (name, node,
true);
- }
-
static void ThrowException (string message, XmlNode node)
{
HandlersUtil.ThrowException (message, node);
Modified: trunk/mcs/class/System.Web/System.Web.Configuration/ModuleItem.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web.Configuration/ModuleItem.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++ trunk/mcs/class/System.Web/System.Web.Configuration/ModuleItem.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -30,11 +30,9 @@
namespace System.Web.Configuration {
class ModuleItem {
private Type _type;
- private string _typeName;
private string _name;
public ModuleItem(string name, string type) {
- _typeName = type;
_name = name;
_type = Type.GetType (type, true);
@@ -43,7 +41,6 @@
}
public ModuleItem(string name, Type type) {
- _typeName = type.ToString ();
_name = name;
_type = type;
if (!typeof(IHttpModule).IsAssignableFrom(_type))
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/PagesConfigurationHandler.cs
===================================================================
---
trunk/mcs/class/System.Web/System.Web.Configuration/PagesConfigurationHandler.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++
trunk/mcs/class/System.Web/System.Web.Configuration/PagesConfigurationHandler.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -110,11 +110,6 @@
}
// A few methods to save some typing
- static string AttValue (string name, XmlNode node, bool
optional)
- {
- return HandlersUtil.ExtractAttributeValue (name, node,
optional);
- }
-
static string AttValue (string name, XmlNode node)
{
return HandlersUtil.ExtractAttributeValue (name, node,
true);
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/WebConfigurationSettings.cs
===================================================================
---
trunk/mcs/class/System.Web/System.Web.Configuration/WebConfigurationSettings.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++
trunk/mcs/class/System.Web/System.Web.Configuration/WebConfigurationSettings.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -229,18 +229,6 @@
initCalled = true;
}
}
-
- static string GetAppConfigPath ()
- {
- AppDomainSetup currentInfo =
AppDomain.CurrentDomain.SetupInformation;
-
- string configFile = currentInfo.ConfigurationFile;
- if (configFile == null || configFile.Length == 0)
- return null;
-
- return configFile;
-
- }
}
class FileWatcherCache
@@ -333,7 +321,6 @@
Hashtable locations;
string fileName;
string dirname;
- string realdir;
static object removedMark = new object ();
static object groupMark = new object ();
static object emptyMark = new object ();
@@ -395,7 +382,6 @@
public ConfigurationData (ConfigurationData parent, string
filename, string realdir)
{
this.parent = (parent == this) ? null : parent;
- this.realdir = realdir;
if (filename == null) {
this.fileName = Path.Combine (realdir,
"*.config");
} else {
Modified:
trunk/mcs/class/System.Web/System.Web.Configuration/WebControlsSectionHandler.cs
===================================================================
---
trunk/mcs/class/System.Web/System.Web.Configuration/WebControlsSectionHandler.cs
2005-04-20 22:18:19 UTC (rev 43360)
+++
trunk/mcs/class/System.Web/System.Web.Configuration/WebControlsSectionHandler.cs
2005-04-20 22:19:43 UTC (rev 43361)
@@ -126,11 +126,6 @@
return HandlersUtil.ExtractAttributeValue (name, node,
optional);
}
- static string AttValue (string name, XmlNode node)
- {
- return HandlersUtil.ExtractAttributeValue (name, node,
true);
- }
-
static void ThrowException (string message, XmlNode node)
{
HandlersUtil.ThrowException (message, node);
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches