Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/10 13:46:54 (14 years ago)
Author:
gkronber
Message:

Integrated PluginAdministrator plugin into HL3.3 solution. #918 (Integrate deployment service into trunk and HL3.3 solution file)

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
     21namespace HeuristicLab.PluginAdministrator {
    222  partial class ConnectionSetupView {
    323    /// <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
     21using System;
    222using System.Collections.Generic;
    323using System.ComponentModel;
     
    828using System.Windows.Forms;
    929
    10 namespace HeuristicLab.DeploymentService.AdminClient {
     30namespace HeuristicLab.PluginAdministrator {
    1131  internal partial class ConnectionSetupView : HeuristicLab.MainForm.WindowsForms.View {
    1232    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
     21using System;
    222using System.Collections.Generic;
    323using System.Linq;
     
    525using HeuristicLab.MainForm;
    626
    7 namespace HeuristicLab.DeploymentService.AdminClient {
    8   static class EditConnectionAction {
     27namespace HeuristicLab.PluginAdministrator {
     28  internal static class EditConnectionAction {
    929    internal static void Execute(IMainForm mainForm) {
    1030      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
     21using System;
    222using System.Collections.Generic;
    323using System.Linq;
     
    525using HeuristicLab.MainForm;
    626
    7 namespace HeuristicLab.DeploymentService.AdminClient {
    8   class EditConnectionMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
     27namespace HeuristicLab.PluginAdministrator {
     28  internal class EditConnectionMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
    929    public override string Name {
    1030      get { return "Edit Connection Properties"; }
  • trunk/sources/HeuristicLab.PluginAdministrator/3.3/HeuristicLabPluginAdministratorApplication.cs

    r3072 r3081  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2727using HeuristicLab.MainForm.WindowsForms;
    2828
    29 namespace HeuristicLab.DeploymentService.AdminClient {
    30   [Application("Deployment service administration client")]
    31   public class HeuristicLabDeploymentServiceAdminClientApplication : ApplicationBase {
     29namespace HeuristicLab.PluginAdministrator {
     30  [Application("Deployment Service Administrator")]
     31  public class HeuristicLabPluginAdministratorApplication : ApplicationBase {
    3232    public override void Run() {
    3333      MainForm mainForm = new MainForm(typeof(IUserInterfaceItemProvider));
    34       mainForm.Title = "Deployment Service Administration Client";
     34      mainForm.Title = "Deployment Service Administrator";
    3535      Application.Run(mainForm);
    3636    }
  • trunk/sources/HeuristicLab.PluginAdministrator/3.3/HeuristicLabPluginAdministratorPlugin.cs.frame

    r3072 r3081  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.PluginInfrastructure;
    2626
    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 {
     27namespace 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 {
    3134  }
    3235}
  • 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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
    425using System.Text;
    526
    6 namespace HeuristicLab.DeploymentService.AdminClient {
    7   interface IUserInterfaceItemProvider {
     27namespace HeuristicLab.PluginAdministrator {
     28  internal interface IUserInterfaceItemProvider {
    829  }
    930}
  • 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
     22namespace HeuristicLab.PluginAdministrator {
    223  partial class LicenseView {
    324    /// <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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    930using HeuristicLab.PluginInfrastructure;
    1031
    11 namespace HeuristicLab.DeploymentService.AdminClient {
    12   public partial class LicenseView : HeuristicLab.MainForm.WindowsForms.View {
     32namespace HeuristicLab.PluginAdministrator {
     33  internal partial class LicenseView : HeuristicLab.MainForm.WindowsForms.View {
    1334
    1435    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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
     
    526using HeuristicLab.MainForm.WindowsForms;
    627
    7 namespace HeuristicLab.DeploymentService.AdminClient {
    8   class MainForm : DockingMainForm {
     28namespace HeuristicLab.PluginAdministrator {
     29  internal class MainForm : DockingMainForm {
    930    private System.Windows.Forms.ToolStripProgressBar progressBar;
    1031
  • 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
     22namespace HeuristicLab.PluginAdministrator {
    223  partial class MultiSelectListView {
    324    /// <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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    829using System.Windows.Forms;
    930
    10 namespace HeuristicLab.DeploymentService.AdminClient {
    11   public partial class MultiSelectListView : ListView {
     31namespace HeuristicLab.PluginAdministrator {
     32  internal partial class MultiSelectListView : ListView {
    1233    public MultiSelectListView() {
    1334      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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
     
    526using HeuristicLab.MainForm;
    627
    7 namespace HeuristicLab.DeploymentService.AdminClient {
    8   static class OpenProductEditorAction {
     28namespace HeuristicLab.PluginAdministrator {
     29  internal static class OpenProductEditorAction {
    930    internal static void Execute(IMainForm mainForm) {
    1031      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
     22using System;
    223using System.Collections.Generic;
    324using System.Linq;
     
    526using HeuristicLab.MainForm;
    627
    7 namespace HeuristicLab.DeploymentService.AdminClient {
    8   class OpenServerProductsEditorMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
     28namespace HeuristicLab.PluginAdministrator {
     29  internal class OpenServerProductsEditorMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
    930    public override string Name {
    1031      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
     22namespace HeuristicLab.PluginAdministrator {
    223  partial class PluginComparisonView {
    324    /// <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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    1536using System.IO;
    1637
    17 namespace HeuristicLab.DeploymentService.AdminClient {
    18   public partial class PluginComparisonView : HeuristicLab.MainForm.WindowsForms.View {
     38namespace HeuristicLab.PluginAdministrator {
     39  internal partial class PluginComparisonView : HeuristicLab.MainForm.WindowsForms.View {
    1940
    2041    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
     22namespace HeuristicLab.PluginAdministrator {
    223  partial class PluginEditor {
    324    /// <summary>
     
    2849      this.refreshButton = new System.Windows.Forms.Button();
    2950      this.uploadButton = new System.Windows.Forms.Button();
    30       this.listView = new HeuristicLab.DeploymentService.AdminClient.MultiSelectListView();
     51      this.listView = new MultiSelectListView();
    3152      this.pluginNameHeader = new System.Windows.Forms.ColumnHeader();
    3253      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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    1536using System.IO;
    1637
    17 namespace HeuristicLab.DeploymentService.AdminClient {
    18   public partial class PluginEditor : HeuristicLab.MainForm.WindowsForms.View {
     38namespace HeuristicLab.PluginAdministrator {
     39  internal partial class PluginEditor : HeuristicLab.MainForm.WindowsForms.View {
    1940    private Dictionary<IPluginDescription, PluginDeploymentService.PluginDescription> localAndServerPlugins;
    2041    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
    921
    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     }
     22namespace HeuristicLab.PluginAdministrator {
     23  partial class PluginListView {
     24    /// <summary>
     25    /// Required designer variable.
     26    /// </summary>
     27    private System.ComponentModel.IContainer components = null;
    2228
    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    }
    2439
    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();
    3248      this.nameHeader = new System.Windows.Forms.ColumnHeader();
    3349      this.versionHeader = new System.Windows.Forms.ColumnHeader();
     
    6682      this.ResumeLayout(false);
    6783
    68     }
     84    }
    6985
    70     #endregion
     86    #endregion
    7187
    7288    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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    930using HeuristicLab.PluginInfrastructure;
    1031
    11 namespace HeuristicLab.DeploymentService.AdminClient {
     32namespace HeuristicLab.PluginAdministrator {
    1233  /// <summary>
    1334  /// Wraps a ListView and adds functionality to automatically check and uncheck dependencies of plugins.
    1435  /// </summary>
    15   public partial class PluginListView : UserControl {
     36  internal partial class PluginListView : UserControl {
    1637    public event ItemCheckedEventHandler ItemChecked;
    1738
  • 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
     22namespace HeuristicLab.PluginAdministrator {
    223  partial class PluginView {
    324    /// <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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    1031using System.IO;
    1132
    12 namespace HeuristicLab.DeploymentService.AdminClient {
    13   public partial class PluginView : UserControl {
     33namespace HeuristicLab.PluginAdministrator {
     34  internal partial class PluginView : UserControl {
    1435    private const string IMAGE_KEY_ASSEMBLY = "Assembly";
    1536    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
     22namespace HeuristicLab.PluginAdministrator {
    223  partial class ProductEditor {
    324    /// <summary>
     
    4061      this.nameLabel = new System.Windows.Forms.Label();
    4162      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
    42       this.pluginListView = new HeuristicLab.DeploymentService.AdminClient.PluginListView();
     63      this.pluginListView = new PluginListView();
    4364      this.splitContainer.Panel1.SuspendLayout();
    4465      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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
     
    1233using HeuristicLab.PluginInfrastructure;
    1334
    14 namespace HeuristicLab.DeploymentService.AdminClient {
    15   public partial class ProductEditor : HeuristicLab.MainForm.WindowsForms.View {
     35namespace HeuristicLab.PluginAdministrator {
     36  internal partial class ProductEditor : HeuristicLab.MainForm.WindowsForms.View {
    1637    private BackgroundWorker refreshProductsWorker;
    1738    private BackgroundWorker uploadChangedProductsWorker;
     
    166187        }
    167188      }
    168       catch (OverflowException ex) {
     189      catch (OverflowException) {
    169190        errorProvider.SetError(versionTextBox, "Invalid value");
    170191      }
    171192
    172       catch (ArgumentException ex) {
     193      catch (ArgumentException) {
    173194        errorProvider.SetError(versionTextBox, "Invalid value");
    174195      }
    175       catch (FormatException ex) {
     196      catch (FormatException) {
    176197        errorProvider.SetError(versionTextBox, "Invalid value");
    177198      }
  • trunk/sources/HeuristicLab.PluginAdministrator/3.3/Properties/AssemblyInfo.frame

    r3073 r3081  
    4242
    4343// 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")]
    4545
    4646// Version information for an assembly consists of the following four values:
Note: See TracChangeset for help on using the changeset viewer.