Changeset 6764
- Timestamp:
- 09/14/11 17:06:47 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.3/Views/HiveExperimentManagerView.cs
r6725 r6764 32 32 /// The base class for visual representations of items. 33 33 /// </summary> 34 [View("Hive Experiment Manager View")]34 [View("Hive Experiment Manager")] 35 35 [Content(typeof(HiveClient), true)] 36 36 public partial class HiveExperimentManagerView : AsynchronousContentView { -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/AboutView.resx
r6225 r6764 122 122 <value> 123 123 iVBORw0KGgoAAAANSUhEUgAAAKAAAAC0CAYAAAATiCegAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7O 124 HOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA3 WAAAN1gGQb3mcAAAAGXRFWHRTb2Z0d2FyZQB3d3cu124 HOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA3VAAAN1QE91ljxAAAAGXRFWHRTb2Z0d2FyZQB3d3cu 125 125 aW5rc2NhcGUub3Jnm+48GgAAF8tJREFUeF7tXQe0FsUVBhQLKKBiISpixYbYC7FrJFasiT2oMQGPohxL 126 126 JJZgV0xiFI81Go3lxBaxazBibxgPWGMHsfcau+b73pl97lt2/3+/2d1/Zh/DOffwv907c+/c+ebO3JnZ … … 229 229 </data> 230 230 <data name="licenseTextBox.Text" xml:space="preserve"> 231 <value>HeuristicLab Hiveis free software: you can redistribute it and/or modify231 <value>HeuristicLab is free software: you can redistribute it and/or modify 232 232 it under the terms of the GNU General Public License as published by 233 233 the Free Software Foundation, either version 3 of the License, or -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/JobsView.Designer.cs
r6263 r6764 68 68 // 69 69 this.columnJobId.Text = "Job Id"; 70 this.columnJobId.Width = 120; 70 71 // 71 72 // columnExecutionTime 72 73 // 73 74 this.columnExecutionTime.Text = "Execution Time"; 75 this.columnExecutionTime.Width = 120; 74 76 // 75 77 // JobsView -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/JobsView.cs
r6743 r6764 70 70 lstJobs.Items.Add(item); 71 71 } 72 lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent); 72 if (e.Value.Jobs.Count == 0) { 73 lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.None); 74 } else { 75 lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent); 76 } 73 77 } 74 78 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.Designer.cs
r6734 r6764 185 185 this.notifyIcon.Text = "HeuristicLab Hive Slave"; 186 186 this.notifyIcon.Visible = true; 187 this.notifyIcon.BalloonTipClicked += new System.EventHandler(this.notifyIcon_BalloonTipClicked); 187 188 this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick); 188 189 // -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.cs
r6743 r6764 96 96 } 97 97 98 private void homepageToolStripMenuItem_Click(object sender, EventArgs e) { 99 System.Diagnostics.Process.Start("http://dev.heuristiclab.com"); 100 } 101 98 102 private void notifyIcon_BalloonTipClicked(object sender, EventArgs e) { 99 103 OnVisibilitySwitched(); 100 }101 102 private void homepageToolStripMenuItem_Click(object sender, EventArgs e) {103 System.Diagnostics.Process.Start("http://dev.heuristiclab.com");104 104 } 105 105 -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/HiveService.cs
r6743 r6764 60 60 } 61 61 62 #region JobMethods62 #region Task Methods 63 63 public Guid AddTask(Task task, TaskData taskData, IEnumerable<Guid> resourceIds) { 64 64 authen.AuthenticateForAnyRole(HiveRoles.Administrator, HiveRoles.Client); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/Manager/HeartbeatManager.cs
r6743 r6764 93 93 return actions; 94 94 95 if (!IsAllowedToCalculate ) {95 if (!IsAllowedToCalculate && heartbeat.JobProgress.Count != 0) { 96 96 actions.Add(new MessageContainer(MessageContainer.MessageType.PauseAll)); 97 97 } else {
Note: See TracChangeset
for help on using the changeset viewer.