Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/30/12 16:09:34 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Controller is now capable of gathering Hive Jobs
  • Hive Jobs will be mapped to independent Job-Class (shared between Controller and Frontend)
  • HiveScenarioManager is capable of gathering Hive Jobs + their results
  • Job Results will be mapped to string properties
  • Frontend renders all Results after opening the job details
  • Misc: Frontend now passes User-object to Controller so that it is able to connect to the Hive Service (hardcoded values removed)
Location:
branches/OaaS/HeuristicLab.Services.Optimization.Web
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web

    • Property svn:ignore set to
      bin
      obj
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Optimization/Index.cshtml

    r8506 r8545  
    1 @model IEnumerable<HeuristicLab.Services.Optimization.ControllerService.Model.OptimizationScenario>
     1@model HeuristicLab.Services.Optimization.Web.Models.OptimizationModel
    22
    33@{
     
    55}
    66
     7<h2>Your jobs:</h2>
     8<table>
     9  <thead>
     10    <tr>
     11      <td>Name</td>
     12      <td>Resource</td>
     13      <td>State</td>   
     14    </tr>
     15  </thead>
     16  <tbody>
     17    @foreach(var itm in Model.Jobs) {
     18        <tr>
     19            <td>@Html.ActionLink(itm.Name, "JobDetails", new { jobId = itm.Id })</td>
     20            <td>@itm.Resource</td>
     21            <td>@itm.State</td>           
     22        </tr>
     23    }
     24  </tbody>
     25</table>
     26
    727<h2>Choose your scenario</h2>
    828
    929<ul>
    10 @foreach (var itm in Model) {
     30@foreach (var itm in Model.Scenarios) {
    1131    <li>@Html.ActionLink(itm.Name, "ProblemParameters", new { scenario=itm.Name })</li>
    1232}
Note: See TracChangeset for help on using the changeset viewer.