Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/11/10 18:23:52 (14 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/Properties/Settings.Designer.cs

    r2597 r3006  
    4242        }
    4343       
    44         [global::System.Configuration.ApplicationScopedSettingAttribute()]
     44        [global::System.Configuration.UserScopedSettingAttribute()]
    4545        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    46         [global::System.Configuration.DefaultSettingValueAttribute("<?xml version=\"1.0\" encoding=\"utf-16\"?>\r\n<ArrayOfString xmlns:xsi=\"http://www.w3." +
    47             "org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n  <s" +
    48             "tring>http://localhost:59253/UpdateLocation.svc</string>\r\n</ArrayOfString>")]
    49         public global::System.Collections.Specialized.StringCollection UpdateLocations {
     46        [global::System.Configuration.DefaultSettingValueAttribute("http://servdev.heuristiclab.com/Deployment/Update.svc")]
     47        public string UpdateLocation {
    5048            get {
    51                 return ((global::System.Collections.Specialized.StringCollection)(this["UpdateLocations"]));
     49                return ((string)(this["UpdateLocation"]));
     50            }
     51            set {
     52                this["UpdateLocation"] = value;
     53            }
     54        }
     55       
     56        [global::System.Configuration.UserScopedSettingAttribute()]
     57        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     58        [global::System.Configuration.DefaultSettingValueAttribute("")]
     59        public string UpdateLocationUserName {
     60            get {
     61                return ((string)(this["UpdateLocationUserName"]));
     62            }
     63            set {
     64                this["UpdateLocationUserName"] = value;
     65            }
     66        }
     67       
     68        [global::System.Configuration.UserScopedSettingAttribute()]
     69        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     70        [global::System.Configuration.DefaultSettingValueAttribute("")]
     71        public string UpdateLocationPassword {
     72            get {
     73                return ((string)(this["UpdateLocationPassword"]));
     74            }
     75            set {
     76                this["UpdateLocationPassword"] = value;
     77            }
     78        }
     79       
     80        [global::System.Configuration.UserScopedSettingAttribute()]
     81        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     82        [global::System.Configuration.DefaultSettingValueAttribute("http://servdev.heuristiclab.com/Deployment/Admin.svc")]
     83        public string UpdateLocationAdministrationAddress {
     84            get {
     85                return ((string)(this["UpdateLocationAdministrationAddress"]));
     86            }
     87            set {
     88                this["UpdateLocationAdministrationAddress"] = value;
    5289            }
    5390        }
Note: See TracChangeset for help on using the changeset viewer.