Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/19/17 13:35:29 (6 years ago)
Author:
jzenisek
Message:

#2839 worked on ProjectResource assignment: (cascading) assigning & unassigning (reverted changes of config files from r15546)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveProjectManagement/HeuristicLab.Services.WebApp/3.3/Web.config

    r15546 r15547  
    1 <?xml version="1.0"?>
     1<?xml version="1.0" encoding="utf-8"?>
    22<configuration>
    33  <connectionStrings>
    4     <remove name="HeuristicLab.Authentication"/>
    5     <remove name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString"/>
    6     <add name="HeuristicLab.Authentication" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
    7     <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.3"/>
     4    <remove name="HeuristicLab.Authentication" />
     5    <remove name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" />
     6    <add name="HeuristicLab.Authentication" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
     7    <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.3" />
    88  </connectionStrings>
     9 
    910  <appSettings>
    10     <add key="webpages:Version" value="3.0.0.0"/>
    11     <add key="webpages:Enabled" value="false"/>
    12     <add key="ClientValidationEnabled" value="true"/>
    13     <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
     11    <add key="webpages:Version" value="3.0.0.0" />
     12    <add key="webpages:Enabled" value="false" />
     13    <add key="ClientValidationEnabled" value="true" />
     14    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    1415  </appSettings>
     16 
    1517  <system.web>
    1618    <authentication mode="Forms">
    17       <forms loginUrl="~/App/Empty" timeout="2880" cookieless="UseCookies" name=".HEURISTICLABWEBAPP"/>
     19      <forms loginUrl="~/App/Empty" timeout="2880" cookieless="UseCookies" name=".HEURISTICLABWEBAPP" />
    1820    </authentication>
    19     <compilation debug="true" targetFramework="4.5"/>
    20     <httpRuntime targetFramework="4.5"/>
     21    <compilation debug="false" targetFramework="4.5" />
     22    <httpRuntime targetFramework="4.5" />
    2123    <membership defaultProvider="AspNetSqlMembershipProvider">
    2224      <providers>
    23         <clear/>
    24         <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" applicationName="HeuristicLab.Authentication" minRequiredPasswordLength="8" minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="5"/>
     25        <clear />
     26        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication"
     27             requiresQuestionAndAnswer="false" requiresUniqueEmail="false" applicationName="HeuristicLab.Authentication" minRequiredPasswordLength="8"
     28             minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="5" />
    2529      </providers>
    2630    </membership>
    2731    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
    2832      <providers>
    29         <clear/>
    30         <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
     33        <clear />
     34        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
    3135      </providers>
    3236    </roleManager>
    3337  </system.web>
     38
    3439  <system.webServer>
    3540    <modules>
    36       <remove name="FormsAuthentication"/>
    37       <remove name="DefaultAuthentication"/>
    38       <remove name="RoleManager"/>
    39       <remove name="UrlAuthorization"/>
    40       <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule"/>
    41       <add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule"/>
    42       <add name="RoleManager" type="System.Web.Security.RoleManagerModule"/>
    43       <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule"/>
     41      <remove name="FormsAuthentication" />
     42      <remove name="DefaultAuthentication" />
     43      <remove name="RoleManager" />
     44      <remove name="UrlAuthorization" />
     45      <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" />
     46      <add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule" />
     47      <add name="RoleManager" type="System.Web.Security.RoleManagerModule" />
     48      <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" />
    4449    </modules>
    4550    <handlers>
    46       <remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
    47       <remove name="OPTIONSVerbHandler"/>
    48       <remove name="TRACEVerbHandler"/>
    49       <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
     51      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
     52      <remove name="OPTIONSVerbHandler" />
     53      <remove name="TRACEVerbHandler" />
     54      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    5055    </handlers>
    5156  </system.webServer>
     57
    5258  <runtime>
    5359    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    5460      <dependentAssembly>
    55         <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed"/>
    56         <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0"/>
     61        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
     62        <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
    5763      </dependentAssembly>
    5864      <dependentAssembly>
    59         <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/>
    60         <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
     65        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
     66        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
    6167      </dependentAssembly>
    6268      <dependentAssembly>
    63         <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
    64         <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
     69        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
     70        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
    6571      </dependentAssembly>
    6672      <dependentAssembly>
    67         <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
    68         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
     73        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
     74        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
    6975      </dependentAssembly>
    7076      <dependentAssembly>
    71         <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
    72         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
     77        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
     78        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
    7379      </dependentAssembly>
    7480      <dependentAssembly>
    75         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
    76         <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
     81        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
     82        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
    7783      </dependentAssembly>
    7884      <dependentAssembly>
    79         <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral"/>
    80         <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2"/>
     85        <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" />
     86        <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
    8187      </dependentAssembly>
    8288    </assemblyBinding>
Note: See TracChangeset for help on using the changeset viewer.