- Timestamp:
- 10/11/08 19:08:33 (16 years ago)
- Location:
- branches/GpPluginsRefactoringBranch
- Files:
-
- 9 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GpPluginsRefactoringBranch/HeuristicLab.CEDMA.Server/ServerForm.cs
r556 r643 46 46 private Database database; 47 47 private Store store; 48 private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/test.db3"; 48 //private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/test.db3"; 49 private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/debugging.db3"; 49 50 private static readonly string connectionString = "Data Source=\"" + dbFile + "\";Pooling=False"; 50 51 private static readonly string rdfFile = AppDomain.CurrentDomain.BaseDirectory + "rdf_store.db3"; … … 86 87 InitDatabase(); 87 88 InitRdfStore(); 88 InitRunScheduler();89 //InitRunScheduler(); 89 90 90 91 host = new ServiceHost(database, new Uri(addressTextBox.Text)); -
branches/GpPluginsRefactoringBranch/HeuristicLab.Communication.Data/HeuristicLab.Communication.Data.csproj
r584 r643 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{14E1C3E3-2496-436A-AE00-09F7B81DB15B}</ProjectGuid> … … 50 50 <WarningLevel>4</WarningLevel> 51 51 </PropertyGroup> 52 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 53 <DebugSymbols>true</DebugSymbols> 54 <OutputPath>bin\x86\Debug\</OutputPath> 55 <DefineConstants>DEBUG;TRACE</DefineConstants> 56 <DebugType>full</DebugType> 57 <PlatformTarget>x86</PlatformTarget> 58 <ErrorReport>prompt</ErrorReport> 59 </PropertyGroup> 60 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 61 <OutputPath>bin\x86\Release\</OutputPath> 62 <DefineConstants>TRACE</DefineConstants> 63 <Optimize>true</Optimize> 64 <DebugType>pdbonly</DebugType> 65 <PlatformTarget>x86</PlatformTarget> 66 <ErrorReport>prompt</ErrorReport> 67 </PropertyGroup> 52 68 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 53 69 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/GpPluginsRefactoringBranch/HeuristicLab.Communication.Operators/HeuristicLab.Communication.Operators.csproj
r584 r643 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}</ProjectGuid> … … 34 34 <ErrorReport>prompt</ErrorReport> 35 35 <WarningLevel>4</WarningLevel> 36 </PropertyGroup> 37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 38 <DebugSymbols>true</DebugSymbols> 39 <OutputPath>bin\x86\Debug\</OutputPath> 40 <DefineConstants>DEBUG;TRACE</DefineConstants> 41 <DebugType>full</DebugType> 42 <PlatformTarget>x86</PlatformTarget> 43 <ErrorReport>prompt</ErrorReport> 44 </PropertyGroup> 45 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 46 <OutputPath>bin\x86\Release\</OutputPath> 47 <DefineConstants>TRACE</DefineConstants> 48 <Optimize>true</Optimize> 49 <DebugType>pdbonly</DebugType> 50 <PlatformTarget>x86</PlatformTarget> 51 <ErrorReport>prompt</ErrorReport> 36 52 </PropertyGroup> 37 53 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/GpPluginsRefactoringBranch/HeuristicLab.Core/OperatorLibraryEditor.cs
r2 r643 162 162 } 163 163 164 165 164 #region TreeView Events 166 165 private void operatorsTreeView_AfterSelect(object sender, TreeViewEventArgs e) { … … 238 237 #endregion 239 238 240 241 239 #region Mouse Events 242 240 private void operatorsTreeView_MouseDown(object sender, MouseEventArgs e) { … … 249 247 } 250 248 #endregion 251 252 249 253 250 #region Context Menu Events -
branches/GpPluginsRefactoringBranch/HeuristicLab.Core/ScopeView.Designer.cs
r2 r643 32 32 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 33 33 protected override void Dispose(bool disposing) { 34 if(scopesTreeView.Nodes.Count > 0) {35 RemoveTreeNode(scopesTreeView.Nodes[0]);36 scopesTreeView.Nodes.Clear();37 }38 if 34 //if(scopesTreeView.Nodes.Count > 0) { 35 // RemoveTreeNode(scopesTreeView.Nodes[0]); 36 // scopesTreeView.Nodes.Clear(); 37 //} 38 if(disposing && (components != null)) { 39 39 components.Dispose(); 40 40 } -
branches/GpPluginsRefactoringBranch/HeuristicLab.Core/VariablesScopeView.cs
r2 r643 73 73 variablesListView.Items.Clear(); 74 74 foreach (IVariable variable in Scope.Variables) { 75 ListViewItem item = new ListViewItem(); 76 item.Text = variable.Name; 77 item.Tag = variable; 78 variablesListView.Items.Add(item); 79 variable.NameChanged += new EventHandler(Variable_NameChanged); 75 if (!variable.Name.StartsWith("##")) { 76 ListViewItem item = new ListViewItem(); 77 item.Text = variable.Name; 78 item.Tag = variable; 79 variablesListView.Items.Add(item); 80 variable.NameChanged += new EventHandler(Variable_NameChanged); 81 } 80 82 } 81 83 } … … 157 159 Invoke(new OnVariableEventDelegate(Scope_VariableAdded), sender, e); 158 160 else { 159 ListViewItem item = new ListViewItem(); 160 item.Text = e.Variable.Name; 161 item.Tag = e.Variable; 162 variablesListView.Items.Add(item); 163 e.Variable.NameChanged += new EventHandler(Variable_NameChanged); 161 if (!e.Variable.Name.StartsWith("##")) { 162 ListViewItem item = new ListViewItem(); 163 item.Text = e.Variable.Name; 164 item.Tag = e.Variable; 165 variablesListView.Items.Add(item); 166 e.Variable.NameChanged += new EventHandler(Variable_NameChanged); 167 } 164 168 } 165 169 } … … 168 172 Invoke(new OnVariableEventDelegate(Scope_VariableRemoved), sender, e); 169 173 else { 170 ListViewItem itemToDelete = null; 171 foreach (ListViewItem item in variablesListView.Items) { 172 if (item.Tag == e.Variable) 173 itemToDelete = item; 174 } 175 e.Variable.NameChanged -= new EventHandler(Variable_NameChanged); 176 variablesListView.Items.Remove(itemToDelete); 174 if (!e.Variable.Name.StartsWith("##")) { 175 ListViewItem itemToDelete = null; 176 foreach (ListViewItem item in variablesListView.Items) { 177 if (item.Tag == e.Variable) 178 itemToDelete = item; 179 } 180 e.Variable.NameChanged -= new EventHandler(Variable_NameChanged); 181 variablesListView.Items.Remove(itemToDelete); 182 } 177 183 } 178 184 } -
branches/GpPluginsRefactoringBranch/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj
r637 r643 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{32DAA44F-944A-465F-A5C9-1C491EE4976D}</ProjectGuid> … … 32 32 <ErrorReport>prompt</ErrorReport> 33 33 <WarningLevel>4</WarningLevel> 34 </PropertyGroup> 35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 36 <DebugSymbols>true</DebugSymbols> 37 <OutputPath>bin\x86\Debug\</OutputPath> 38 <DefineConstants>DEBUG;TRACE</DefineConstants> 39 <DebugType>full</DebugType> 40 <PlatformTarget>x86</PlatformTarget> 41 <ErrorReport>prompt</ErrorReport> 42 </PropertyGroup> 43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 44 <OutputPath>bin\x86\Release\</OutputPath> 45 <DefineConstants>TRACE</DefineConstants> 46 <Optimize>true</Optimize> 47 <DebugType>pdbonly</DebugType> 48 <PlatformTarget>x86</PlatformTarget> 49 <ErrorReport>prompt</ErrorReport> 34 50 </PropertyGroup> 35 51 <ItemGroup> -
branches/GpPluginsRefactoringBranch/HeuristicLab.Visualization.Test/HeuristicLab.Visualization.Test.csproj
r636 r643 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{23117533-8A91-474E-BBF6-C39485D0810A}</ProjectGuid> … … 33 33 <WarningLevel>4</WarningLevel> 34 34 <DocumentationFile>bin\Release\HeuristicLab.Visualization.Test-3.2.XML</DocumentationFile> 35 </PropertyGroup> 36 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 37 <DebugSymbols>true</DebugSymbols> 38 <OutputPath>bin\x86\Debug\</OutputPath> 39 <DefineConstants>DEBUG;TRACE</DefineConstants> 40 <DebugType>full</DebugType> 41 <PlatformTarget>x86</PlatformTarget> 42 <ErrorReport>prompt</ErrorReport> 43 </PropertyGroup> 44 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 45 <OutputPath>bin\x86\Release\</OutputPath> 46 <DefineConstants>TRACE</DefineConstants> 47 <DocumentationFile>bin\Release\HeuristicLab.Visualization.Test-3.2.XML</DocumentationFile> 48 <Optimize>true</Optimize> 49 <DebugType>pdbonly</DebugType> 50 <PlatformTarget>x86</PlatformTarget> 51 <ErrorReport>prompt</ErrorReport> 35 52 </PropertyGroup> 36 53 <ItemGroup> … … 78 95 <EmbeddedResource Include="MainForm.resx"> 79 96 <DependentUpon>MainForm.cs</DependentUpon> 97 <SubType>Designer</SubType> 80 98 </EmbeddedResource> 81 99 </ItemGroup> -
branches/GpPluginsRefactoringBranch/HeuristicLab.Visualization/HeuristicLab.Visualization.csproj
r635 r643 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}</ProjectGuid> … … 33 33 <WarningLevel>4</WarningLevel> 34 34 <DocumentationFile>bin\Release\HeuristicLab.Visualization-3.2.XML</DocumentationFile> 35 </PropertyGroup> 36 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 37 <DebugSymbols>true</DebugSymbols> 38 <OutputPath>bin\x86\Debug\</OutputPath> 39 <DefineConstants>DEBUG;TRACE</DefineConstants> 40 <DebugType>full</DebugType> 41 <PlatformTarget>x86</PlatformTarget> 42 <ErrorReport>prompt</ErrorReport> 43 </PropertyGroup> 44 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 45 <OutputPath>bin\x86\Release\</OutputPath> 46 <DefineConstants>TRACE</DefineConstants> 47 <DocumentationFile>bin\Release\HeuristicLab.Visualization-3.2.XML</DocumentationFile> 48 <Optimize>true</Optimize> 49 <DebugType>pdbonly</DebugType> 50 <PlatformTarget>x86</PlatformTarget> 51 <ErrorReport>prompt</ErrorReport> 35 52 </PropertyGroup> 36 53 <ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.