- Timestamp:
- 01/08/12 19:13:14 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 3 deleted
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks
- Property svn:ignore
-
old new 18 18 bin 19 19 protoc.exe 20 *.user
-
- Property svn:mergeinfo changed
/trunk/sources merged: 7209,7214,7216-7230,7233-7239,7241,7243-7252,7254,7256-7261,7265-7266,7272-7275,7277,7280,7283
- Property svn:ignore
-
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3
- Property svn:ignore
-
old new 1 1 Plugin.cs 2 2 obj 3 *.vs10x
-
- Property svn:ignore
-
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/HeuristicLab.Clients.Hive.JobManager-3.3.csproj
r6976 r7290 136 136 </ItemGroup> 137 137 <ItemGroup> 138 <EmbeddedResource Include="Views\HiveJobManagerView.resx">139 <DependentUpon>HiveJobManagerView.cs</DependentUpon>140 <SubType>Designer</SubType>141 </EmbeddedResource>142 <EmbeddedResource Include="Views\HiveJobPermissionView.resx">143 <DependentUpon>HiveJobPermissionView.cs</DependentUpon>144 </EmbeddedResource>145 <EmbeddedResource Include="Views\RefreshableHiveJobView.resx">146 <DependentUpon>RefreshableHiveJobView.cs</DependentUpon>147 </EmbeddedResource>148 </ItemGroup>149 <ItemGroup>150 138 <ProjectReference Include="..\..\HeuristicLab.Clients.Hive.Views\3.3\HeuristicLab.Clients.Hive.Views-3.3.csproj"> 151 139 <Project>{E1D6C801-892A-406A-B606-F158E36DD3C3}</Project> -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/MenuItems/JobManagerMenuItem.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Plugin.cs.frame
r6979 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Clients.Hive.JobManager { 25 [Plugin("HeuristicLab.Clients.Hive.JobManager", "3.3. 5.$WCREV$")]25 [Plugin("HeuristicLab.Clients.Hive.JobManager", "3.3.6.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Clients.Hive.JobManager-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Clients.Hive", "3.3")] … … 29 29 [PluginDependency("HeuristicLab.Collections", "3.3")] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 31 32 [PluginDependency("HeuristicLab.Core", "3.3")] 32 33 [PluginDependency("HeuristicLab.Core.Views", "3.3")] -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Properties/AssemblyInfo.cs.frame
r6976 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 [assembly: AssemblyCompany("HEAL")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 1HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2012 HEAL")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] … … 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3. 0.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.6.$WCREV$")] -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.Designer.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveJobManagerView));48 47 this.hiveExperimentListView = new RefreshableHiveJobListView(); 49 48 this.refreshButton = new System.Windows.Forms.Button(); … … 65 64 // refreshButton 66 65 // 67 this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));66 this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh; 68 67 this.refreshButton.Location = new System.Drawing.Point(3, 3); 69 68 this.refreshButton.Name = "refreshButton"; -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.cs
r6976 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using System.ServiceModel.Security; 25 25 using System.Windows.Forms; 26 using HeuristicLab.Clients.Hive.Views; 26 27 using HeuristicLab.Collections; 27 28 using HeuristicLab.MainForm; … … 106 107 107 108 private void HandleServiceException(Exception ex) { 108 if ( ex is MessageSecurityException) {109 MessageBox.Show("A Message Security error has occured. This normally means that your user name or password is wrong.", "HeuristicLab Hive Administrator", MessageBoxButtons.OK, MessageBoxIcon.Error);109 if (this.InvokeRequired) { 110 Invoke(new Action<Exception>(HandleServiceException), ex); 110 111 } else { 111 ErrorHandling.ShowErrorDialog(this, "Refresh failed.", ex); 112 if (ex is MessageSecurityException) { 113 MessageBox.Show("A Message Security error has occured. This normally means that your user name or password is wrong.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error); 114 } else if (ex is AnonymousUserException) { 115 using (HiveInformationDialog dialog = new HiveInformationDialog()) { 116 dialog.ShowDialog(this); 117 } 118 } else { 119 ErrorHandling.ShowErrorDialog(this, "Refresh failed.", ex); 120 } 112 121 } 113 122 } -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobPermissionListView.cs
r7059 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobPermissionView.cs
r6976 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobListView.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.Designer.cs
r7255 r7290 25 25 private void InitializeComponent() { 26 26 this.components = new System.ComponentModel.Container(); 27 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RefreshableHiveJobView));28 27 this.tabControl = new System.Windows.Forms.TabControl(); 29 28 this.tasksTabPage = new System.Windows.Forms.TabPage(); … … 125 124 // refreshPermissionsButton 126 125 // 127 this.refreshPermissionsButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshPermissionsButton.Image")));126 this.refreshPermissionsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh; 128 127 this.refreshPermissionsButton.Location = new System.Drawing.Point(3, 3); 129 128 this.refreshPermissionsButton.Name = "refreshPermissionsButton"; … … 228 227 // 229 228 this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 230 this.startButton.Image = ((System.Drawing.Image)(resources.GetObject("startButton.Image")));229 this.startButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play; 231 230 this.startButton.Location = new System.Drawing.Point(0, 536); 232 231 this.startButton.Name = "startButton"; … … 240 239 // 241 240 this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 242 this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));241 this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop; 243 242 this.stopButton.Location = new System.Drawing.Point(60, 536); 244 243 this.stopButton.Name = "stopButton"; … … 253 252 this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 254 253 this.resetButton.Enabled = false; 255 this.resetButton.Image = ((System.Drawing.Image)(resources.GetObject("resetButton.Image")));254 this.resetButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Restart; 256 255 this.resetButton.Location = new System.Drawing.Point(90, 536); 257 256 this.resetButton.Name = "resetButton"; … … 285 284 this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 286 285 this.pauseButton.Enabled = false; 287 this.pauseButton.Image = ((System.Drawing.Image)(resources.GetObject("pauseButton.Image")));286 this.pauseButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pause; 288 287 this.pauseButton.Location = new System.Drawing.Point(30, 536); 289 288 this.pauseButton.Name = "pauseButton"; … … 334 333 // refreshButton 335 334 // 336 this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));335 this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh; 337 336 this.refreshButton.Location = new System.Drawing.Point(3, 0); 338 337 this.refreshButton.Name = "refreshButton"; -
branches/RegressionBenchmarks/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab.
Note: See TracChangeset
for help on using the changeset viewer.