Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12775 for branches


Ignore:
Timestamp:
07/17/15 16:41:24 (9 years ago)
Author:
dglaser
Message:

#2429:

  • Removed auto refresh on FactTask and FactClientInfo page
  • Added AssemblyInfo.cs.frame
  • Added x64 and x86 project configuration settings
Location:
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/HeuristicLab.Services.WebApp.Maintenance-3.3.csproj

    r12767 r12775  
    3737    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    3838  </PropertyGroup>
     39  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x64\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x64</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     47  </PropertyGroup>
     48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
     49    <OutputPath>bin\x64\Release\</OutputPath>
     50    <DefineConstants>TRACE</DefineConstants>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x64</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
     55    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     56  </PropertyGroup>
     57  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
     58    <DebugSymbols>true</DebugSymbols>
     59    <OutputPath>bin\x86\Debug\</OutputPath>
     60    <DefineConstants>DEBUG;TRACE</DefineConstants>
     61    <DebugType>full</DebugType>
     62    <PlatformTarget>x86</PlatformTarget>
     63    <ErrorReport>prompt</ErrorReport>
     64    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     65  </PropertyGroup>
     66  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
     67    <OutputPath>bin\x86\Release\</OutputPath>
     68    <DefineConstants>TRACE</DefineConstants>
     69    <Optimize>true</Optimize>
     70    <DebugType>pdbonly</DebugType>
     71    <PlatformTarget>x86</PlatformTarget>
     72    <ErrorReport>prompt</ErrorReport>
     73    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     74  </PropertyGroup>
    3975  <ItemGroup>
    4076    <Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
     
    112148      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    113149    </Content>
     150    <None Include="Properties\AssemblyInfo.cs.frame" />
    114151    <None Include="WebApp\factclientinfo\factclientinfo.cshtml">
    115152      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  • branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/Properties/AssemblyInfo.cs.frame

    r12761 r12775  
    2727// set of attributes. Change these attribute values to modify the information
    2828// associated with an assembly.
    29 [assembly: AssemblyTitle("HeuristicLab.Services.WebApp")]
    30 [assembly: AssemblyDescription("HeuristicLab Services Application Container")]
     29[assembly: AssemblyTitle("HeuristicLab.Services.WebApp.Maintenance")]
     30[assembly: AssemblyDescription("HeuristicLab WebApp Maintenance plugin")]
    3131[assembly: AssemblyConfiguration("")]
    3232[assembly: AssemblyCompany("")]
  • branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/WebApp/factclientinfo/factclientinfoCtrl.js

    r12761 r12775  
    5353            };
    5454
    55             $scope.updateInterval = $interval($scope.getFactClientInfo, $scope.interval);
    56             var cancelInterval = $scope.$on('$locationChangeSuccess', function () {
    57                 $interval.cancel($scope.updateInterval);
    58                 cancelInterval();
    59             });
    6055            $scope.getFactClientInfo(); // init page
    6156        }]
  • branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/WebApp/facttask/facttaskCtrl.js

    r12761 r12775  
    6464            };
    6565
    66             $scope.updateInterval = $interval($scope.getJobs, $scope.interval);
    67             var cancelInterval = $scope.$on('$locationChangeSuccess', function () {
    68                 $interval.cancel($scope.updateInterval);
    69                 cancelInterval();
    70             });
    7166            $scope.getJobs(); // init page
    7267        }]
Note: See TracChangeset for help on using the changeset viewer.