Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Web.config @ 182:beeb48ddb44a
Warning con los errores que se guarden en el log del track de un evento durante una notificación (twitter, calendar, blog)
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 21:57:10 -0300 |
parents | 23aaf98b8377 |
children |
rev | line source |
---|---|
10 | 1 <?xml version="1.0"?> |
2 | |
3 <configuration> | |
30 | 4 <configSections> |
5 <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> | |
6 <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> | |
7 <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> | |
8 </sectionGroup> | |
9 </configSections> | |
10 | 10 |
30 | 11 <system.web.webPages.razor> |
12 <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
13 <pages pageBaseType="System.Web.Mvc.WebViewPage"> | |
14 <namespaces> | |
15 <add namespace="System.Web.Mvc" /> | |
16 <add namespace="System.Web.Mvc.Ajax" /> | |
17 <add namespace="System.Web.Mvc.Html" /> | |
18 <add namespace="System.Web.Routing" /> | |
94
db4b1e2cae49
Cambio del nombre de la clase Ponente a Persona
Nelo@Kenia.neluz.int
parents:
30
diff
changeset
|
19 <add namespace="AltNetHispano.Agendas.Web"/> |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
94
diff
changeset
|
20 <add namespace="AltNetHispano.Agendas.Resources.Properties"/> |
30 | 21 </namespaces> |
22 </pages> | |
23 </system.web.webPages.razor> | |
10 | 24 |
30 | 25 <appSettings> |
26 <add key="webpages:Enabled" value="false" /> | |
27 </appSettings> | |
10 | 28 |
30 | 29 <system.web> |
30 <httpHandlers> | |
31 <add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/> | |
32 </httpHandlers> | |
10 | 33 |
30 | 34 <!-- |
10 | 35 Enabling request validation in view pages would cause validation to occur |
36 after the input has already been processed by the controller. By default | |
37 MVC performs request validation before a controller processes the input. | |
38 To change this behavior apply the ValidateInputAttribute to a | |
39 controller or action. | |
40 --> | |
30 | 41 <pages |
42 validateRequest="false" | |
43 pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" | |
44 pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" | |
45 userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> | |
46 <controls> | |
47 <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /> | |
48 </controls> | |
49 </pages> | |
50 </system.web> | |
10 | 51 |
30 | 52 <system.webServer> |
53 <validation validateIntegratedModeConfiguration="false" /> | |
10 | 54 |
30 | 55 <handlers> |
56 <remove name="BlockViewHandler"/> | |
57 <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" /> | |
58 </handlers> | |
59 </system.webServer> | |
60 </configuration> |