Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/11/10 18:23:52 (15 years ago)
Author:
gkronber
Message:

Implemented deployment service on servdev.heuristiclab.com and changed all service references and configurations to point to the service address. Improved GUI of installation manager. Implemented user name authentication and authorization for the deployment service. #860 (Deployment server for plugin installation from web locations)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/LocalPluginManager.cs

    r2922 r3006  
    9292      if (ItemChecked != null) ItemChecked(this, e);
    9393    }
     94
     95    private void localPluginsListView_ItemActivate(object sender, EventArgs e) {
     96      if (localPluginsListView.SelectedItems.Count > 0) {
     97        var plugin = (PluginDescription)localPluginsListView.SelectedItems[0].Tag;
     98        PluginView pluginView = new PluginView(plugin);
     99        pluginView.ShowInForm();
     100      }
     101    }
    94102  }
    95103}
Note: See TracChangeset for help on using the changeset viewer.