Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/11 18:04:25 (13 years ago)
Author:
ascheibe
Message:

#1233

  • fixed a bug in the Slave UI
  • finished renaming Webservice and Dao methods to be consistent with Job/Task naming
  • some cosmetic changes and project dependencies cleanups
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLab.Services.Hive.DataAccess-3.3.csproj

    r6721 r6743  
    7171  </PropertyGroup>
    7272  <ItemGroup>
    73     <Reference Include="HeuristicLab.Common-3.3">
    74       <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
    75     </Reference>
    76     <Reference Include="HeuristicLab.Core-3.3">
    77       <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
    78     </Reference>
    79     <Reference Include="HeuristicLab.Persistence-3.3">
    80       <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>
    81     </Reference>
    8273    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
    8374      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLabServicesHiveDataAccessPlugin.cs.frame

    r6717 r6743  
    2828namespace HeuristicLab.Services.Hive.DataAccess {
    2929  [Plugin("HeuristicLab.Services.Hive.DataAccess", "3.3.5.$WCREV$")]
    30   [PluginFile("HeuristicLab.Services.Hive.DataAccess-3.3.dll", PluginFileType.Assembly)]
    31   [PluginDependency("HeuristicLab.Common", "3.3")]
    32   [PluginDependency("HeuristicLab.Core", "3.3")]
    33   [PluginDependency("HeuristicLab.Persistence", "3.3")] 
     30  [PluginFile("HeuristicLab.Services.Hive.DataAccess-3.3.dll", PluginFileType.Assembly)] 
    3431  public class HeuristicLabServicesHiveDataAccessPlugin : PluginBase {
    3532  }
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/Logger.cs

    r6717 r6743  
    2828  public class LogFactory {
    2929    public static ILogger GetLogger(string source) {
    30       return new Logger("HL.Hive", source);
     30      return new Logger(Settings.Default.EventLogName, source);
    3131    }
    3232  }
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/Settings.Designer.cs

    r6717 r6743  
    4343            }
    4444        }
     45       
     46        [global::System.Configuration.ApplicationScopedSettingAttribute()]
     47        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     48        [global::System.Configuration.DefaultSettingValueAttribute("HL.Hive")]
     49        public string EventLogName {
     50            get {
     51                return ((string)(this["EventLogName"]));
     52            }
     53        }
    4554    }
    4655}
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/Settings.settings

    r6712 r6743  
    1414      <Value Profile="(Default)">00:05:00</Value>
    1515    </Setting>
     16    <Setting Name="EventLogName" Type="System.String" Scope="Application">
     17      <Value Profile="(Default)">HL.Hive</Value>
     18    </Setting>
    1619  </Settings>
    1720</SettingsFile>
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/app.config

    r6712 r6743  
    66    </sectionGroup>
    77  </configSections>
    8   <connectionStrings>   
     8  <connectionStrings>
    99    <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString"
    1010      connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;"
     
    1616        <value>00:05:00</value>
    1717      </setting>
     18      <setting name="EventLogName" serializeAs="String">
     19        <value>HL.Hive</value>
     20      </setting>
    1821    </HeuristicLab.Services.Hive.DataAccess.Settings>
    1922  </applicationSettings>
Note: See TracChangeset for help on using the changeset viewer.