Changeset 3081 for trunk/sources/HeuristicLab.PluginAdministrator
- Timestamp:
- 03/17/10 13:46:54 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginAdministrator/3.3
- Files:
-
- 2 added
- 2 deleted
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginAdministrator/3.3/ConnectionSetupView.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 namespace HeuristicLab.PluginAdministrator { 2 22 partial class ConnectionSetupView { 3 23 /// <summary> -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/ConnectionSetupView.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 using System; 2 22 using System.Collections.Generic; 3 23 using System.ComponentModel; … … 8 28 using System.Windows.Forms; 9 29 10 namespace HeuristicLab. DeploymentService.AdminClient{30 namespace HeuristicLab.PluginAdministrator { 11 31 internal partial class ConnectionSetupView : HeuristicLab.MainForm.WindowsForms.View { 12 32 public ConnectionSetupView() { -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/EditConnectionAction.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 using System; 2 22 using System.Collections.Generic; 3 23 using System.Linq; … … 5 25 using HeuristicLab.MainForm; 6 26 7 namespace HeuristicLab. DeploymentService.AdminClient{8 static class EditConnectionAction {27 namespace HeuristicLab.PluginAdministrator { 28 internal static class EditConnectionAction { 9 29 internal static void Execute(IMainForm mainForm) { 10 30 ConnectionSetupView connectionSetup = new ConnectionSetupView(); -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/EditConnectionMenuItem.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 using System; 2 22 using System.Collections.Generic; 3 23 using System.Linq; … … 5 25 using HeuristicLab.MainForm; 6 26 7 namespace HeuristicLab. DeploymentService.AdminClient{8 class EditConnectionMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {27 namespace HeuristicLab.PluginAdministrator { 28 internal class EditConnectionMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider { 9 29 public override string Name { 10 30 get { return "Edit Connection Properties"; } -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/HeuristicLabPluginAdministratorApplication.cs
r3072 r3081 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.MainForm.WindowsForms; 28 28 29 namespace HeuristicLab. DeploymentService.AdminClient{30 [Application("Deployment service administration client")]31 public class HeuristicLab DeploymentServiceAdminClientApplication : ApplicationBase {29 namespace HeuristicLab.PluginAdministrator { 30 [Application("Deployment Service Administrator")] 31 public class HeuristicLabPluginAdministratorApplication : ApplicationBase { 32 32 public override void Run() { 33 33 MainForm mainForm = new MainForm(typeof(IUserInterfaceItemProvider)); 34 mainForm.Title = "Deployment Service Administrat ion Client";34 mainForm.Title = "Deployment Service Administrator"; 35 35 Application.Run(mainForm); 36 36 } -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/HeuristicLabPluginAdministratorPlugin.cs.frame
r3072 r3081 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.PluginInfrastructure; 26 26 27 namespace HeuristicLab.DeploymentService.AdminClient { 28 [Plugin("HeuristicLab.DeploymentService.AdminClient", "3.3.0.$WCREV$")] 29 [PluginFile("HeuristicLab.DeploymentService.AdminClient-3.3.dll", PluginFileType.Assembly)] 30 public class HeuristicLabDeploymentServiceAdminClientPlugin : PluginBase { 27 namespace HeuristicLab.PluginAdministrator { 28 [Plugin("HeuristicLab.PluginAdministrator", "3.3.0.$WCREV$")] 29 [PluginFile("HeuristicLab.PluginAdministrator-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Common.Resources", "3.2.0.0")] 31 [PluginDependency("HeuristicLab.MainForm", "3.2.0.0")] 32 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.2.0.0")] 33 public class HeuristicLabPluginAdministratorPlugin : PluginBase { 31 34 } 32 35 } -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/IUserInterfaceItemProvider.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; 4 25 using System.Text; 5 26 6 namespace HeuristicLab. DeploymentService.AdminClient{7 inter face IUserInterfaceItemProvider {27 namespace HeuristicLab.PluginAdministrator { 28 internal interface IUserInterfaceItemProvider { 8 29 } 9 30 } -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/LicenseView.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.PluginAdministrator { 2 23 partial class LicenseView { 3 24 /// <summary> -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/LicenseView.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 9 30 using HeuristicLab.PluginInfrastructure; 10 31 11 namespace HeuristicLab. DeploymentService.AdminClient{12 publicpartial class LicenseView : HeuristicLab.MainForm.WindowsForms.View {32 namespace HeuristicLab.PluginAdministrator { 33 internal partial class LicenseView : HeuristicLab.MainForm.WindowsForms.View { 13 34 14 35 public LicenseView() { -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/MainForm.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 5 26 using HeuristicLab.MainForm.WindowsForms; 6 27 7 namespace HeuristicLab. DeploymentService.AdminClient{8 class MainForm : DockingMainForm {28 namespace HeuristicLab.PluginAdministrator { 29 internal class MainForm : DockingMainForm { 9 30 private System.Windows.Forms.ToolStripProgressBar progressBar; 10 31 -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/MultiSelectListView.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.PluginAdministrator { 2 23 partial class MultiSelectListView { 3 24 /// <summary> -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/MultiSelectListView.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 8 29 using System.Windows.Forms; 9 30 10 namespace HeuristicLab. DeploymentService.AdminClient{11 publicpartial class MultiSelectListView : ListView {31 namespace HeuristicLab.PluginAdministrator { 32 internal partial class MultiSelectListView : ListView { 12 33 public MultiSelectListView() { 13 34 InitializeComponent(); -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/OpenProductEditorAction.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 5 26 using HeuristicLab.MainForm; 6 27 7 namespace HeuristicLab. DeploymentService.AdminClient{8 static class OpenProductEditorAction {28 namespace HeuristicLab.PluginAdministrator { 29 internal static class OpenProductEditorAction { 9 30 internal static void Execute(IMainForm mainForm) { 10 31 ProductEditor editor = new ProductEditor(); -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/OpenServerProductsEditMenuItem.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 5 26 using HeuristicLab.MainForm; 6 27 7 namespace HeuristicLab. DeploymentService.AdminClient{8 class OpenServerProductsEditorMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {28 namespace HeuristicLab.PluginAdministrator { 29 internal class OpenServerProductsEditorMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider { 9 30 public override string Name { 10 31 get { return "Edit Products"; } -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginComparisonView.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.PluginAdministrator { 2 23 partial class PluginComparisonView { 3 24 /// <summary> -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginComparisonView.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 15 36 using System.IO; 16 37 17 namespace HeuristicLab. DeploymentService.AdminClient{18 publicpartial class PluginComparisonView : HeuristicLab.MainForm.WindowsForms.View {38 namespace HeuristicLab.PluginAdministrator { 39 internal partial class PluginComparisonView : HeuristicLab.MainForm.WindowsForms.View { 19 40 20 41 public PluginComparisonView(IPluginDescription localPlugin, IPluginDescription serverPlugin) { -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginEditor.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.PluginAdministrator { 2 23 partial class PluginEditor { 3 24 /// <summary> … … 28 49 this.refreshButton = new System.Windows.Forms.Button(); 29 50 this.uploadButton = new System.Windows.Forms.Button(); 30 this.listView = new HeuristicLab.DeploymentService.AdminClient.MultiSelectListView();51 this.listView = new MultiSelectListView(); 31 52 this.pluginNameHeader = new System.Windows.Forms.ColumnHeader(); 32 53 this.localVersionHeader = new System.Windows.Forms.ColumnHeader(); -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginEditor.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 15 36 using System.IO; 16 37 17 namespace HeuristicLab. DeploymentService.AdminClient{18 publicpartial class PluginEditor : HeuristicLab.MainForm.WindowsForms.View {38 namespace HeuristicLab.PluginAdministrator { 39 internal partial class PluginEditor : HeuristicLab.MainForm.WindowsForms.View { 19 40 private Dictionary<IPluginDescription, PluginDeploymentService.PluginDescription> localAndServerPlugins; 20 41 private BackgroundWorker pluginUploadWorker; -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginListView.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient 2 { 3 partial class PluginListView 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 9 21 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 namespace HeuristicLab.PluginAdministrator { 23 partial class PluginListView { 24 /// <summary> 25 /// Required designer variable. 26 /// </summary> 27 private System.ComponentModel.IContainer components = null; 22 28 23 #region Component Designer generated code 29 /// <summary> 30 /// Clean up any resources being used. 31 /// </summary> 32 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 33 protected override void Dispose(bool disposing) { 34 if (disposing && (components != null)) { 35 components.Dispose(); 36 } 37 base.Dispose(disposing); 38 } 24 39 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 this.listView = new HeuristicLab.DeploymentService.AdminClient.MultiSelectListView(); 40 #region Component Designer generated code 41 42 /// <summary> 43 /// Required method for Designer support - do not modify 44 /// the contents of this method with the code editor. 45 /// </summary> 46 private void InitializeComponent() { 47 this.listView = new MultiSelectListView(); 32 48 this.nameHeader = new System.Windows.Forms.ColumnHeader(); 33 49 this.versionHeader = new System.Windows.Forms.ColumnHeader(); … … 66 82 this.ResumeLayout(false); 67 83 68 84 } 69 85 70 86 #endregion 71 87 72 88 private MultiSelectListView listView; -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginListView.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 9 30 using HeuristicLab.PluginInfrastructure; 10 31 11 namespace HeuristicLab. DeploymentService.AdminClient{32 namespace HeuristicLab.PluginAdministrator { 12 33 /// <summary> 13 34 /// Wraps a ListView and adds functionality to automatically check and uncheck dependencies of plugins. 14 35 /// </summary> 15 publicpartial class PluginListView : UserControl {36 internal partial class PluginListView : UserControl { 16 37 public event ItemCheckedEventHandler ItemChecked; 17 38 -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginView.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.PluginAdministrator { 2 23 partial class PluginView { 3 24 /// <summary> -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginView.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 10 31 using System.IO; 11 32 12 namespace HeuristicLab. DeploymentService.AdminClient{13 publicpartial class PluginView : UserControl {33 namespace HeuristicLab.PluginAdministrator { 34 internal partial class PluginView : UserControl { 14 35 private const string IMAGE_KEY_ASSEMBLY = "Assembly"; 15 36 private const string IMAGE_KEY_FILE = "File"; -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/ProductEditor.Designer.cs
r3072 r3081 1 namespace HeuristicLab.DeploymentService.AdminClient { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.PluginAdministrator { 2 23 partial class ProductEditor { 3 24 /// <summary> … … 40 61 this.nameLabel = new System.Windows.Forms.Label(); 41 62 this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); 42 this.pluginListView = new HeuristicLab.DeploymentService.AdminClient.PluginListView();63 this.pluginListView = new PluginListView(); 43 64 this.splitContainer.Panel1.SuspendLayout(); 44 65 this.splitContainer.Panel2.SuspendLayout(); -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/ProductEditor.cs
r3072 r3081 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 12 33 using HeuristicLab.PluginInfrastructure; 13 34 14 namespace HeuristicLab. DeploymentService.AdminClient{15 publicpartial class ProductEditor : HeuristicLab.MainForm.WindowsForms.View {35 namespace HeuristicLab.PluginAdministrator { 36 internal partial class ProductEditor : HeuristicLab.MainForm.WindowsForms.View { 16 37 private BackgroundWorker refreshProductsWorker; 17 38 private BackgroundWorker uploadChangedProductsWorker; … … 166 187 } 167 188 } 168 catch (OverflowException ex) {189 catch (OverflowException) { 169 190 errorProvider.SetError(versionTextBox, "Invalid value"); 170 191 } 171 192 172 catch (ArgumentException ex) {193 catch (ArgumentException) { 173 194 errorProvider.SetError(versionTextBox, "Invalid value"); 174 195 } 175 catch (FormatException ex) {196 catch (FormatException) { 176 197 errorProvider.SetError(versionTextBox, "Invalid value"); 177 198 } -
trunk/sources/HeuristicLab.PluginAdministrator/3.3/Properties/AssemblyInfo.frame
r3073 r3081 42 42 43 43 // The following GUID is for the ID of the typelib if this project is exposed to COM 44 [assembly: Guid(" 863021a4-3cde-48be-8af6-dac1077f5fb5")]44 [assembly: Guid("C0D68F25-CFA0-4b80-906B-78EA1814E62B")] 45 45 46 46 // Version information for an assembly consists of the following four values:
Note: See TracChangeset
for help on using the changeset viewer.