Last change
on this file since 3038 was
3006,
checked in by gkronber, 15 years ago
|
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 size:
641 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 | using HeuristicLab.PluginInfrastructure;
|
---|
10 |
|
---|
11 | namespace HeuristicLab.PluginInfrastructure.Advanced {
|
---|
12 | internal partial class LicenseView : InstallationManagerControl {
|
---|
13 |
|
---|
14 | public LicenseView() {
|
---|
15 | InitializeComponent();
|
---|
16 | Name = "License";
|
---|
17 | }
|
---|
18 |
|
---|
19 | public LicenseView(IPluginDescription plugin) {
|
---|
20 | InitializeComponent();
|
---|
21 | Name = "License of: " + plugin;
|
---|
22 | richTextBox.Text = plugin.LicenseText;
|
---|
23 | }
|
---|
24 | }
|
---|
25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.