Free cookie consent management tool by TermsFeed Policy Generator

Ticket #2482: sorting.patch

File sorting.patch, 5.0 KB (added by ascheibe, 9 years ago)
  • sources/HeuristicLab

     
    11
    22Microsoft Visual Studio Solution File, Format Version 12.00
    3 # Visual Studio 2013
    4 VisualStudioVersion = 12.0.31101.0
     3# Visual Studio 14
     4VisualStudioVersion = 14.0.23107.0
    55MinimumVisualStudioVersion = 10.0.40219.1
    66Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{96396439-A764-4022-A8D2-BE021449B8D1}"
    77  ProjectSection(SolutionItems) = preProject
  • sources/HeuristicLab.Services.WebApp.Statistics/3.3/statistics.js

     
    11var appStatisticsPlugin = app.registerPlugin('statistics');
    22(function () {
    33    var plugin = appStatisticsPlugin;
    4     plugin.dependencies = ['ngResource', 'ui.knob', 'ui.bootstrap', 'ngFitText'];
     4    plugin.dependencies = ['ngResource', 'ui.knob', 'ui.bootstrap', 'ngFitText', 'tableSort'];
    55    plugin.files = [
    66        'WebApp/statistics.css',
    77        'WebApp/services/statisticsService.js',
  • sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/jobs/jobs.cshtml

     
    3232                    <h3 class="panel-title">Current Jobs</h3>
    3333                </div>
    3434                <div class="panel-body">
    35                     <table class="table table-hover table-condensed">
     35                    <table class="table table-hover table-condensed" ts-wrapper>
    3636                        <thead>
    3737                        <tr>
    3838                            <th>#</th>
    39                             <th>Job Name</th>
     39                            <th ts-criteria="job.Name">Job Name</th>
    4040                            @if (Request.IsAuthenticated && User.IsInRole(HiveRoles.Administrator)) {
    41                                 <th>Username</th>
     41                                <th ts-criteria="job.UserName">Username</th>
    4242                            }
    43                             <th>Date Created</th>
     43                            <th ts-criteria="job.DateCreated">Date Created</th>
    4444                            <th>Progress</th>
    4545                            <th></th>
    4646                        </tr>
     
    9292                    <h3 class="panel-title">Completed Jobs</h3>
    9393                </div>
    9494                <div class="panel-body">
    95                     <table class="table table-hover table-condensed">
     95                    <table class="table table-hover table-condensed" ts-wrapper>
    9696                        <thead>
    9797                        <tr>
    9898                            <th>#</th>
    99                             <th>Job Name</th>
    100                             <th>Date Created</th>
    101                             <th>Date Completed</th>
    102                             <th>Tasks</th>
     99                            <th ts-criteria="job.Name">Job Name</th>
     100                            <th ts-criteria="job.DateCreated">Date Created</th>
     101                            <th ts-criteria="job.DateCompleted">Date Completed</th>
     102                            <th ts-criteria="job.TotalTasks|parseInt">Tasks</th>
    103103                            <th></th>
    104104                        </tr>
    105105                        </thead>
  • sources/HeuristicLab.Services.WebApp/3.3/HeuristicLab.Services.WebApp-3.3.csproj

     
    2222    <IISExpressUseClassicPipelineMode />
    2323    <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
    2424    <RestorePackages>true</RestorePackages>
     25    <UseGlobalApplicationHostFile />
    2526  </PropertyGroup>
    2627  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    2728    <DebugSymbols>true</DebugSymbols>
     
    233234    <Content Include="WebApp\libs\bootstrap\fonts\glyphicons-halflings-regular.ttf" />
    234235    <Content Include="WebApp\libs\bootstrap\fonts\glyphicons-halflings-regular.woff" />
    235236    <Content Include="WebApp\libs\bootstrap\fonts\glyphicons-halflings-regular.woff2" />
    236     <Content Include="WebApp\shared\directives\scrollToTop.js" />
    237237    <Content Include="WebApp\shared\filter\filters.js" />
    238238    <Content Include="WebApp\shared\images\HeuristicLab-Logo.png" />
    239239    <Content Include="WebApp\shared\layout\layout.cshtml" />