- Timestamp:
- 07/08/16 14:40:02 (8 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Clients.Hive.JobManager/3.3/Plugin.cs.frame
r12753 r14029 23 23 24 24 namespace HeuristicLab.Clients.Hive.JobManager { 25 [Plugin("HeuristicLab.Clients.Hive.JobManager", "3.3.1 2.$WCREV$")]25 [Plugin("HeuristicLab.Clients.Hive.JobManager", "3.3.13.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Clients.Hive.JobManager-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Clients.Hive", "3.3")] -
branches/crossvalidation-2434/HeuristicLab.Clients.Hive.JobManager/3.3/Properties/AssemblyInfo.cs.frame
r12753 r14029 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3.1 2.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.13.$WCREV$")] -
branches/crossvalidation-2434/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.cs
r12012 r14029 107 107 } else { 108 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 Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error); 109 string message = 110 "A Message Security error has occured. This normally means that your user name or password is wrong. Detailed information: " + Environment.NewLine; 111 message += HiveServiceLocator.Instance.GetEndpointInformation(); 112 ErrorHandling.ShowErrorDialog(this, message, ex); 110 113 } else if (ex is AnonymousUserException) { 111 114 using (HiveInformationDialog dialog = new HiveInformationDialog()) { … … 113 116 } 114 117 } else { 115 ErrorHandling.ShowErrorDialog(this, "Refresh failed.", ex); 118 ErrorHandling.ShowErrorDialog(this, 119 "Refresh failed. Detailed information: " + Environment.NewLine + HiveServiceLocator.Instance.GetEndpointInformation(), ex); 116 120 } 117 121 }
Note: See TracChangeset
for help on using the changeset viewer.