mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-18 09:44:20 +08:00

--HG-- branch : dev rename : src/Orchard.Web/Core/Common/Models/LocationDefinition.cs => src/Orchard.Web/Core/ContentsLocation/Models/LocationDefinition.cs rename : src/Orchard.Web/Core/Common/Models/LocationSettings.cs => src/Orchard.Web/Core/ContentsLocation/Models/LocationSettings.cs rename : src/Orchard.Web/Core/Common/ViewModels/LocationSettingsViewModel.cs => src/Orchard.Web/Core/ContentsLocation/ViewModels/LocationSettingsViewModel.cs rename : src/Orchard.Web/Core/Common/Views/DefinitionTemplates/LocationSettings.ascx => src/Orchard.Web/Core/ContentsLocation/Views/DefinitionTemplates/LocationSettings.ascx
35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<system.web>
|
|
<httpHandlers>
|
|
<add path="*" verb="*"
|
|
type="System.Web.HttpNotFoundHandler"/>
|
|
</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"
|
|
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
|
|
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
|
|
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
|
<controls>
|
|
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
|
|
</controls>
|
|
</pages>
|
|
</system.web>
|
|
|
|
<system.webServer>
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
|
<handlers>
|
|
<remove name="BlockViewHandler"/>
|
|
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
|
|
</handlers>
|
|
</system.webServer>
|
|
</configuration>
|