Auto complete for FluxnetSite

This commit is contained in:
2016-02-01 10:39:43 -05:00
parent c5fcb8d635
commit 8f0f0ff1b8
12 changed files with 1096 additions and 37 deletions
+30 -10
View File
@@ -11,20 +11,25 @@
You can also find all config options in the "Web.Backload.Default.txt" file (Backload\Config\_Defaults folder).
-->
<section name="backload" type="Backload.Configuration.BackloadSection, Backload, Version=2, Culture=neutral, PublicKeyToken=02eaf42ab375d363" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="LeafWebContext" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=LeafWeb;Integrated Security=True;Connect Timeout=60" providerName="System.Data.SqlClient" />
</connectionStrings>
<connectionStrings>
<add name="LeafWebContext" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=LeafWeb;Integrated Security=True;Connect Timeout=60" providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="TimeZoneId" value="Pacific Standard Time" /></appSettings>
<add key="TimeZoneId" value="Pacific Standard Time" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<!-- max 1GB --><httpRuntime targetFramework="4.5" executionTimeout="3600" maxRequestLength="1000000000" />
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" requestEncoding="utf-8" responseEncoding="utf-8" /></system.web>
<!-- max 1GB -->
<httpRuntime targetFramework="4.5" executionTimeout="3600" maxRequestLength="1000000000" />
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" requestEncoding="utf-8" responseEncoding="utf-8" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
@@ -49,13 +54,28 @@
</dependentAssembly>
</assemblyBinding>
</runtime>
<!-- Note: Web.Backload.config is now in the "\Backload" folder. For previous installations you can leave it in the root folder. --><backload configSource="Backload\Web.Backload.config" /><system.webServer>
<!-- Note: Web.Backload.config is now in the "\Backload" folder. For previous installations you can leave it in the root folder. -->
<backload configSource="Backload\Web.Backload.config" />
<system.webServer>
<security>
<requestFiltering>
<!-- max 1GB -->
<!-- max 1GB -->
<requestLimits maxAllowedContentLength="1000000000" />
</requestFiltering>
</security>
<!-- Allow http DELETE method-->
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer></configuration>
<modules runAllManagedModulesForAllRequests="true" />
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>
</system.webServer>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>