This repository has been archived by the owner on Dec 1, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
web.config
94 lines (94 loc) · 4.37 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="myxsl.web" type="myxsl.web.configuration.WebSection, myxsl.web" requirePermission="false" />
</configSections>
<myxsl.web>
<compilation>
<expressionBuilders>
<!--<add namespace="" type=""/>-->
</expressionBuilders>
</compilation>
<pages validateRequest="false" enableSessionState="false">
<namespaces>
<!--<add namespace=""/>-->
</namespaces>
</pages>
</myxsl.web>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
<buildProviders>
<remove extension=".xsd" />
<add extension=".xhtml" type="myxsl.web.compilation.XsltPageBuildProvider, myxsl.web" />
<add extension=".atom" type="myxsl.web.compilation.XsltPageBuildProvider, myxsl.web" />
</buildProviders>
<codeSubDirectories>
<add directoryName="controllers" />
</codeSubDirectories>
</compilation>
<httpHandlers>
<add path="*.xsl" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add path="*.xqy" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add path="*.xhtml" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add path="*.atom" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add path="*.xslt" verb="*" type="System.Web.HttpForbiddenHandler" />
</httpHandlers>
<pages validateRequest="false" enableSessionState="false" />
<customErrors mode="RemoteOnly" defaultRedirect="http_error.aspx" redirectMode="ResponseRewrite" />
<httpRuntime enableVersionHeader="false" requestValidationMode="2.0" requestPathInvalidCharacters="" />
<!-- Builds on Medium trust, but requires Full trust to run -->
<trust level="Full" />
<!-- You can use the fn:trace() or <xsl:message> to send information to the ASP.NET trace -->
<trace enabled="true" localOnly="true" mostRecent="true" />
<caching>
<outputCache enableOutputCache="false"/>
<outputCacheSettings>
<outputCacheProfiles>
<add name="library" duration="3600" varyByParam="none"/>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
</system.web>
<system.diagnostics>
<trace>
<listeners>
<add name="WebPageTraceListener" type="System.Web.WebPageTraceListener, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</listeners>
</trace>
</system.diagnostics>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="xsl" preCondition="integratedMode" path="*.xsl" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add name="xqy" preCondition="integratedMode" path="*.xqy" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add name="xhtml" preCondition="integratedMode" path="*.xhtml" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add name="atom" preCondition="integratedMode" path="*.atom" verb="*" type="myxsl.web.ui.PageHandlerFactory, myxsl.web" />
<add name="xslt" preCondition="integratedMode" path="*.xslt" verb="*" type="System.Web.HttpForbiddenHandler" />
</handlers>
<modules>
<remove name="UrlRoutingModule-4.0" />
<add name="UrlRoutingModule-4.0" preCondition="runtimeVersionv4.0" type="System.Web.Routing.UrlRoutingModule" />
</modules>
<staticContent>
<remove fileExtension=".xsl" />
<remove fileExtension=".xqy" />
<remove fileExtension=".xslt" />
</staticContent>
<defaultDocument>
<files>
<add value="index.xsl" />
</files>
</defaultDocument>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>