2009-12-17 10:29:33 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<configuration>
|
|
|
|
<system.web>
|
|
|
|
<httpHandlers>
|
2010-11-10 12:34:02 -08:00
|
|
|
<!-- iis6 - for any request in this location, return via managed static file handler -->
|
2010-11-19 14:39:10 -08:00
|
|
|
<add path="*/Theme.png" verb="*" type="System.Web.StaticFileHandler" />
|
2009-12-17 10:29:33 +00:00
|
|
|
</httpHandlers>
|
|
|
|
<!--
|
|
|
|
Enabling request validation in view pages would cause validation to occur
|
|
|
|
after the input has already been processed by the controller. By default
|
|
|
|
MVC performs request validation before a controller processes the input.
|
|
|
|
To change this behavior apply the ValidateInputAttribute to a
|
|
|
|
controller or action.
|
|
|
|
-->
|
|
|
|
<pages
|
|
|
|
validateRequest="false"
|
2010-08-17 22:28:51 -07:00
|
|
|
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
|
|
|
|
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
|
|
|
|
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
2009-12-17 10:29:33 +00:00
|
|
|
<controls>
|
2010-08-17 22:28:51 -07:00
|
|
|
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" namespace="System.Web.Mvc" tagPrefix="mvc" />
|
2009-12-17 10:29:33 +00:00
|
|
|
</controls>
|
|
|
|
</pages>
|
|
|
|
</system.web>
|
|
|
|
|
|
|
|
<system.webServer>
|
|
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
2010-11-10 12:34:02 -08:00
|
|
|
<handlers accessPolicy="Script,Read">
|
|
|
|
<!--
|
|
|
|
iis7 - for any request to a file exists on disk, return it via native http module.
|
|
|
|
accessPolicy 'Script' is to allow for a managed 404 page.
|
|
|
|
-->
|
2010-11-19 14:39:10 -08:00
|
|
|
<add name="ThemePreviewImage" path="*/Theme.png" verb="*" modules="StaticFileModule" preCondition="integratedMode" resourceType="File" requireAccess="Read" />
|
2009-12-17 10:29:33 +00:00
|
|
|
</handlers>
|
|
|
|
</system.webServer>
|
2010-08-17 22:28:51 -07:00
|
|
|
<runtime>
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
<bindingRedirect oldVersion="2.0.0.0" newVersion="3.0.0.0" />
|
|
|
|
</dependentAssembly>
|
|
|
|
</assemblyBinding>
|
|
|
|
</runtime>
|
2009-12-17 10:29:33 +00:00
|
|
|
</configuration>
|