Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/10 09:36:18 (14 years ago)
Author:
cneumuel
Message:

added HeuristicLab.Calendar (calendar GUI implementation from hive project) (#1107)

Location:
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/AddJobForm.cs

    r3011 r4105  
    129129            }
    130130
    131             SerializedJob computableJob =
    132               new SerializedJob();
     131            SerializedJob computableJob = new SerializedJob();
    133132            computableJob.JobInfo = job;
    134             computableJob.SerializedJobData = PersistenceManager.SaveToGZip(new TestJob());
     133
     134            // [chn] TODO: persist to zip
     135            // computableJob.SerializedJobData = PersistenceManager.SaveToGZip(new TestJob());
    135136            Response resp = jobManager.AddNewJob(computableJob);
    136137          }
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/CgCalendar.cs

    r3220 r4105  
    88using System.Windows.Forms;
    99using System.Xml.Serialization;
    10 using Calendar;
     10using HeuristicLab.Calendar;
    1111using HeuristicLab.Hive.Client.Console;
    1212using HeuristicLab.Hive.Contracts.BusinessObjects;
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/HeuristicLab.Hive.Server.Console-3.3.csproj

    r4078 r4105  
    8484      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
    8585    </Reference>
     86    <Reference Include="HeuristicLab.Tracing-3.3">
     87      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.Tracing-3.3.dll</HintPath>
     88    </Reference>
    8689    <Reference Include="System" />
    8790    <Reference Include="System.Core">
     
    225228  </ItemGroup>
    226229  <ItemGroup>
     230    <ProjectReference Include="..\..\HeuristicLab.Calendar\3.3\HeuristicLab.Calendar-3.3.csproj">
     231      <Project>{D17A4D6A-4CAA-4470-8A19-F42463C021FD}</Project>
     232      <Name>HeuristicLab.Calendar-3.3</Name>
     233    </ProjectReference>
     234    <ProjectReference Include="..\..\HeuristicLab.DataAccess\3.3\HeuristicLab.DataAccess-3.3.csproj">
     235      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
     236      <Name>HeuristicLab.DataAccess-3.3</Name>
     237    </ProjectReference>
    227238    <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.3\HeuristicLab.Hive.Contracts-3.3.csproj">
    228239      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/HiveServerConsolePlugin.cs

    r4077 r4105  
    2727
    2828namespace HeuristicLab.Grid {
    29   [Plugin("HeuristicLab.Hive.Server.Console-3.3")]
     29  [Plugin("HeuristicLab.Hive.Server.Console", "3.3")]
    3030  [PluginFile("HeuristicLab.Hive.Server.Console-3.3.dll", PluginFileType.Assembly)]
    31   [PluginDependency("HeuristicLab.Core-3.3")]
     31  [PluginDependency("HeuristicLab.Core", "3.3")]
     32  [PluginDependency("HeuristicLab.Calendar", "3.3")]
     33  [PluginDependency("HeuristicLab.Hive.Contracts", "3.3")]
     34  [PluginDependency("HeuristicLab.Tracing", "3.3")]
     35  [PluginDependency("HeuristicLab.Hive.JobBase", "3.3")]
    3236  public class HeuristicLabHiveClientConsolePlugin : PluginBase {
    3337  }
Note: See TracChangeset for help on using the changeset viewer.