Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/10/13 13:29:24 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Added input parameters to the run class. They will be populated by the back-end and returned to the web pages which renders them.
  • Added a ParameterMapper class which converts HL specific model classes to OaaS independent classes. The conversion gets delegated to IParameterHandler which have to be implemented manually and registered for a certain Type before. All parameters which can be converted to IStringConvertible, IStringConvertibleMatrix, IString* will be converted into a OaaS-StringValue instance.
  • Added IParameterHandlers for PathTSPTour and PermutationType (required for TSP).
  • AlgorithmConverter now makes sure that the id of a run is unique. (All runs of a RunList will be shown now.)
  • Web pages are capable of rendering both the results of a run and their input parameters (added a accordion to wrap their content).
  • Renamed "Traveling Salesman Problem" to "Genetic Algorithm - TSP".
  • Changed js-files to render both input and result parameters of a Run.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Job/Index.cshtml

    r9335 r9350  
    5959
    6060<script type="text/template" id="runTemplate">
    61   <h3><%= name %></h3>
    62   <div>
     61  <div class="accordion">
     62    <h3>Results</h3>
     63    <div>
    6364    <table>
    64       <thead>
     65        <thead>
    6566        <tr>
    66           <td>Key</td>
    67           <td>Value</td>
     67            <td>Key</td>
     68            <td>Value</td>
    6869        </tr>
    69       </thead>
    70       <tbody>
    71       </tbody>
     70        </thead>
     71        <tbody class="results">
     72        </tbody>
    7273    </table>
    73   </div>
     74    </div>
     75    <h3>Inputs</h3>
     76    <div>
     77    <table>
     78        <thead>
     79        <tr>
     80            <td>Key</td>
     81            <td>Value</td>
     82        </tr>
     83        </thead>
     84        <tbody class="inputs">
     85        </tbody>
     86    </table>
     87    </div>
     88</div>
    7489</script>
    7590
Note: See TracChangeset for help on using the changeset viewer.