Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/19/17 13:22:47 (7 years ago)
Author:
jzenisek
Message:

#2839 worked on ProjectResource assignment: (cascading) assigning & unassigning

File:
1 edited

Legend:

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

    r14748 r15546  
    1 <?xml version="1.0" encoding="utf-8"?>
     1<?xml version="1.0"?>
    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  
    109  <appSettings>
    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" />
     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"/>
    1514  </appSettings>
    16  
    1715  <system.web>
    1816    <authentication mode="Forms">
    19       <forms loginUrl="~/App/Empty" timeout="2880" cookieless="UseCookies" name=".HEURISTICLABWEBAPP" />
     17      <forms loginUrl="~/App/Empty" timeout="2880" cookieless="UseCookies" name=".HEURISTICLABWEBAPP"/>
    2018    </authentication>
    21     <compilation debug="false" targetFramework="4.5" />
    22     <httpRuntime targetFramework="4.5" />
     19    <compilation debug="true" targetFramework="4.5"/>
     20    <httpRuntime targetFramework="4.5"/>
    2321    <membership defaultProvider="AspNetSqlMembershipProvider">
    2422      <providers>
    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" />
     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"/>
    2925      </providers>
    3026    </membership>
    3127    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
    3228      <providers>
    33         <clear />
    34         <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
     29        <clear/>
     30        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
    3531      </providers>
    3632    </roleManager>
    3733  </system.web>
    38 
    3934  <system.webServer>
    4035    <modules>
    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" />
     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"/>
    4944    </modules>
    5045    <handlers>
    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" />
     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"/>
    5550    </handlers>
    5651  </system.webServer>
    57 
    5852  <runtime>
    5953    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    6054      <dependentAssembly>
    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" />
     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"/>
    6357      </dependentAssembly>
    6458      <dependentAssembly>
    65         <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
    66         <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
     59        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/>
     60        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
    6761      </dependentAssembly>
    6862      <dependentAssembly>
    69         <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
    70         <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
     63        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
     64        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
    7165      </dependentAssembly>
    7266      <dependentAssembly>
    73         <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
    74         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
     67        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
     68        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
    7569      </dependentAssembly>
    7670      <dependentAssembly>
    77         <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
    78         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
     71        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
     72        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
    7973      </dependentAssembly>
    8074      <dependentAssembly>
    81         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    82         <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
     75        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
     76        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
    8377      </dependentAssembly>
    8478      <dependentAssembly>
    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" />
     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"/>
    8781      </dependentAssembly>
    8882    </assemblyBinding>
Note: See TracChangeset for help on using the changeset viewer.