Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/14/11 18:23:37 (13 years ago)
Author:
cneumuel
Message:

#1233

  • removed GetConfigurationFile from service -> configuration is now submitted as a plugin with one file (the configuration file)
  • resource ids are now checked before uploading a hive experiment, only valid resource names are accepted
  • added SharpZipLib License to ConsoleClient project, so dependecies are satisfied
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveExperimentView.Designer.cs

    r5402 r5458  
    6363      this.pauseButton = new System.Windows.Forms.Button();
    6464      this.resourceIdsLabel = new System.Windows.Forms.Label();
    65       this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
     65      this.resourceNamesTextBox = new System.Windows.Forms.TextBox();
    6666      this.disconnectButton = new System.Windows.Forms.Button();
    6767      this.reconnectButton = new System.Windows.Forms.Button();
     
    289289      // resourceIdsTextBox
    290290      //
    291       this.resourceIdsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    292                   | System.Windows.Forms.AnchorStyles.Right)));
    293       this.resourceIdsTextBox.Location = new System.Drawing.Point(72, 52);
    294       this.resourceIdsTextBox.Name = "resourceIdsTextBox";
    295       this.resourceIdsTextBox.Size = new System.Drawing.Size(559, 20);
    296       this.resourceIdsTextBox.TabIndex = 14;
    297       this.resourceIdsTextBox.Validated += new System.EventHandler(this.resourceIdsTextBox_Validated);
     291      this.resourceNamesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     292                  | System.Windows.Forms.AnchorStyles.Right)));
     293      this.resourceNamesTextBox.Location = new System.Drawing.Point(72, 52);
     294      this.resourceNamesTextBox.Name = "resourceIdsTextBox";
     295      this.resourceNamesTextBox.Size = new System.Drawing.Size(559, 20);
     296      this.resourceNamesTextBox.TabIndex = 14;
     297      this.resourceNamesTextBox.Validated += new System.EventHandler(this.resourceNamesTextBox_Validated);
    298298      //
    299299      // disconnectButton
     
    364364      this.Controls.Add(this.disconnectButton);
    365365      this.Controls.Add(this.startButton);
    366       this.Controls.Add(this.resourceIdsTextBox);
     366      this.Controls.Add(this.resourceNamesTextBox);
    367367      this.Controls.Add(this.executionTimeTextBox);
    368368      this.Controls.Add(this.resourceIdsLabel);
     
    385385      this.Controls.SetChildIndex(this.resourceIdsLabel, 0);
    386386      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
    387       this.Controls.SetChildIndex(this.resourceIdsTextBox, 0);
     387      this.Controls.SetChildIndex(this.resourceNamesTextBox, 0);
    388388      this.Controls.SetChildIndex(this.startButton, 0);
    389389      this.Controls.SetChildIndex(this.disconnectButton, 0);
     
    413413    private System.Windows.Forms.Button pauseButton;
    414414    private System.Windows.Forms.Label resourceIdsLabel;
    415     private System.Windows.Forms.TextBox resourceIdsTextBox;
     415    private System.Windows.Forms.TextBox resourceNamesTextBox;
    416416    private System.Windows.Forms.Button viewExperimentButton;
    417417    private Core.Views.NamedItemView experimentNamedItemView;
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveExperimentView.cs

    r5402 r5458  
    8383      if (Content == null) {
    8484        executionTimeTextBox.Text = string.Empty;
    85         resourceIdsTextBox.Text = string.Empty;
     85        resourceNamesTextBox.Text = string.Empty;
    8686        useLocalPluginsCheckBox.Checked = false;
    8787        logView.Content = null;
    8888      } else {
    8989        executionTimeTextBox.Text = Content.ExecutionTime.ToString();
    90         resourceIdsTextBox.Text = Content.ResourceIds;
     90        resourceNamesTextBox.Text = Content.ResourceNames;
    9191        useLocalPluginsCheckBox.Checked = Content.UseLocalPlugins;
    9292        logView.Content = Content.Log;
     
    104104        this.nameTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    105105        this.descriptionTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    106         this.resourceIdsTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
     106        this.resourceNamesTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    107107        this.hiveJobView.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;
    108108        this.useLocalPluginsCheckBox.Enabled = Content.ExecutionState == ExecutionState.Prepared;
     
    214214    }
    215215
    216     private void resourceIdsTextBox_Validated(object sender, EventArgs e) {
    217       Content.ResourceIds = resourceIdsTextBox.Text;
     216    private void resourceNamesTextBox_Validated(object sender, EventArgs e) {
     217      Content.ResourceNames = resourceNamesTextBox.Text;
    218218    }
    219219
Note: See TracChangeset for help on using the changeset viewer.