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
path: root/data
diff options
context:
space:
mode:
authorChris Toshok <toshok@novell.com>2006-01-25 21:47:48 +0300
committerChris Toshok <toshok@novell.com>2006-01-25 21:47:48 +0300
commitbbf05ff00474cf4f8d3012d1ea943932474b6e51 (patch)
treeb673560cdf098c9e186b6b027beed99dd9e0197b /data
parent1687131c606ef92f90b83af2771003703784595f (diff)
2006-01-25 Chris Toshok <toshok@ximian.com>
* data/net_2_0/machine.config: for system.web, add default <authorization> section that allows everything. also, add System.Configuration to system.web/compilation/assemblies. svn path=/trunk/mono/; revision=56057
Diffstat (limited to 'data')
-rw-r--r--data/net_2_0/machine.config4
1 files changed, 4 insertions, 0 deletions
diff --git a/data/net_2_0/machine.config b/data/net_2_0/machine.config
index 498755cddd4..852bde3a27d 100644
--- a/data/net_2_0/machine.config
+++ b/data/net_2_0/machine.config
@@ -83,6 +83,9 @@
</settings>
</system.net>
<system.web>
+ <authorization>
+ <allow users="*" />
+ </authorization>
<httpHandlers>
<add verb="*" path="Trace.axd" type="System.Web.Handlers.TraceHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
@@ -143,6 +146,7 @@
<!--<add assembly="mscorlib" /> -->
<add assembly="System" />
<add assembly="System.Xml" />
+ <add assembly="System.Configuration" />
<add assembly="System.Data" />
<add assembly="System.Web" />
<add assembly="System.Web.Services" />