Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/29/11 00:31:42 (14 years ago)
Author:
cneumuel
Message:

#1233

  • corrected relative reference paths in csproj-files
  • fixed minor bugs
  • updated binaries
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/Administration/ResourcesView.cs

    r5711 r5852  
    8484            tn.Tag = g;
    8585            tn.Text = g.Name;
    86             foreach (Slave s in Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) {
    87               var stn = new TreeNode(s.Name);
     86            foreach (Resource r in Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) {
     87              var stn = new TreeNode(r.Name);
    8888              stn.ImageIndex = 0;
    8989              stn.SelectedImageIndex = stn.ImageIndex;
    90               stn.Tag = s;
     90              stn.Tag = r;
    9191              tn.Nodes.Add(stn);
    9292            }
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveExperimentView.Designer.cs

    r5779 r5852  
    8383      this.nameTextBox.Size = new System.Drawing.Size(727, 20);
    8484      //
    85       // descriptionTextBox
    86       //
    87       this.descriptionTextBox.Size = new System.Drawing.Size(727, 20);
    88       //
    8985      // tabControl
    9086      //
     
    374370      this.Size = new System.Drawing.Size(799, 628);
    375371      this.Controls.SetChildIndex(this.nameTextBox, 0);
    376       this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    377372      this.Controls.SetChildIndex(this.reconnectButton, 0);
    378373      this.Controls.SetChildIndex(this.resetButton, 0);
     
    388383      this.Controls.SetChildIndex(this.tabControl, 0);
    389384      this.Controls.SetChildIndex(this.nameLabel, 0);
    390       this.Controls.SetChildIndex(this.descriptionLabel, 0);
    391385      this.Controls.SetChildIndex(this.downloadExperimentPanel, 0);
    392386      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveExperimentView.cs

    r5675 r5852  
    103103      if (Content != null) {
    104104        this.nameTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    105         this.descriptionTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    106105        this.resourceNamesTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    107106        this.jobsTreeView.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
     
    135134        Invoke(new EventHandler(Content_Prepared), sender, e);
    136135      else {
    137         nameTextBox.Enabled = descriptionTextBox.Enabled = true;
     136        nameTextBox.Enabled = true;
    138137        Locked = false;
    139138        SetEnabledStateOfControls();
     
    144143        Invoke(new EventHandler(Content_Started), sender, e);
    145144      else {
    146         nameTextBox.Enabled = descriptionTextBox.Enabled = false;
     145        nameTextBox.Enabled = false;
    147146        SetEnabledStateOfControls();
    148147      }
     
    152151        Invoke(new EventHandler(Content_Paused), sender, e);
    153152      else {
    154         nameTextBox.Enabled = descriptionTextBox.Enabled = true;
     153        nameTextBox.Enabled = true;
    155154        SetEnabledStateOfControls();
    156155      }
     
    160159        Invoke(new EventHandler(Content_Stopped), sender, e);
    161160      else {
    162         nameTextBox.Enabled = descriptionTextBox.Enabled = true;
     161        nameTextBox.Enabled = true;
    163162        Locked = false;
    164163        SetEnabledStateOfControls();
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/HeuristicLab.Clients.Hive.Views-3.4.csproj

    r5718 r5852  
    7272  <ItemGroup>
    7373    <Reference Include="Calendar.DayView">
    74       <HintPath>..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\Calendar.DayView.dll</HintPath>
     74      <HintPath>C:\Program Files\HeuristicLab 3.3\Calendar.DayView.dll</HintPath>
    7575    </Reference>
    7676    <Reference Include="HeuristicLab.Collections-3.3">
    77       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath>
     77      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath>
    7878    </Reference>
    7979    <Reference Include="HeuristicLab.Common-3.3">
    80       <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
     80      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
    8181    </Reference>
    8282    <Reference Include="HeuristicLab.Common.Resources-3.3">
    83       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common.Resources-3.3.dll</HintPath>
     83      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common.Resources-3.3.dll</HintPath>
    8484    </Reference>
    8585    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    86       <HintPath>..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
     86      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
    8787    </Reference>
    8888    <Reference Include="HeuristicLab.Core.Views-3.3">
    89       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core.Views-3.3.dll</HintPath>
     89      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core.Views-3.3.dll</HintPath>
    9090    </Reference>
    9191    <Reference Include="HeuristicLab.Data-3.3">
    92       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath>
     92      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath>
    9393    </Reference>
    9494    <Reference Include="HeuristicLab.MainForm-3.3">
    95       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm-3.3.dll</HintPath>
     95      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm-3.3.dll</HintPath>
    9696    </Reference>
    9797    <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3">
    98       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>
     98      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>
    9999    </Reference>
    100100    <Reference Include="HeuristicLab.Optimization-3.3">
    101       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Optimization-3.3.dll</HintPath>
     101      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Optimization-3.3.dll</HintPath>
    102102    </Reference>
    103103    <Reference Include="HeuristicLab.Optimizer-3.3">
    104       <HintPath>..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Optimizer-3.3.dll</HintPath>
     104      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Optimizer-3.3.dll</HintPath>
    105105    </Reference>
    106106    <Reference Include="HeuristicLab.Persistence-3.3">
    107       <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>
     107      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>
    108108    </Reference>
    109109    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
    110       <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
     110      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
    111111    </Reference>
    112112    <Reference Include="HeuristicLab.Visualization.ChartControlsExtensions-3.3">
    113       <HintPath>..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath>
     113      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath>
    114114    </Reference>
    115115    <Reference Include="System" />
Note: See TracChangeset for help on using the changeset viewer.