Thread: [chaos-svn] SF.net SVN: chaos: [1233] trunk/chaos.net
Status: Pre-Alpha
Brought to you by:
sf_hal
|
From: <per...@us...> - 2007-03-15 13:14:04
|
Revision: 1233
http://chaos.svn.sourceforge.net/chaos/?rev=1233&view=rev
Author: perlundberg
Date: 2007-03-15 06:14:02 -0700 (Thu, 15 Mar 2007)
Log Message:
-----------
Added the Chaos.Service assembly.
Added Paths:
-----------
trunk/chaos.net/Chaos.Service/
trunk/chaos.net/Chaos.Service/AssemblyInfo.cs
trunk/chaos.net/Chaos.Service/Chaos.Service.csproj
trunk/chaos.net/Chaos.Service/Chaos.Service.sln
trunk/chaos.net/Chaos.Service/MainClass.cs
Added: trunk/chaos.net/Chaos.Service/AssemblyInfo.cs
===================================================================
--- trunk/chaos.net/Chaos.Service/AssemblyInfo.cs (rev 0)
+++ trunk/chaos.net/Chaos.Service/AssemblyInfo.cs 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,31 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Information about this assembly is defined by the following
+// attributes.
+//
+// change them to the information which is associated with the assembly
+// you compile.
+
+[assembly: AssemblyTitle("Chaos.Service")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Chaos.Service")]
+[assembly: AssemblyCopyright("")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// This sets the default COM visibility of types in the assembly to invisible.
+// If you need to expose a type to COM, use [ComVisible(true)] on that type.
+[assembly: ComVisible(false)]
+
+// The assembly version has following format :
+//
+// Major.Minor.Build.Revision
+//
+// You can specify all values by your own or you can build default build and revision
+// numbers with the '*' character (the default):
+
+[assembly: AssemblyVersion("1.0.*")]
Added: trunk/chaos.net/Chaos.Service/Chaos.Service.csproj
===================================================================
--- trunk/chaos.net/Chaos.Service/Chaos.Service.csproj (rev 0)
+++ trunk/chaos.net/Chaos.Service/Chaos.Service.csproj 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,35 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <OutputType>Library</OutputType>
+ <RootNamespace>Chaos.Service</RootNamespace>
+ <AssemblyName>Chaos.Service</AssemblyName>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}</ProjectGuid>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
+ <OutputPath>bin\Debug\</OutputPath>
+ <Optimize>False</Optimize>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <DebugSymbols>True</DebugSymbols>
+ <DebugType>Full</DebugType>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
+ <OutputPath>bin\Release\</OutputPath>
+ <Optimize>True</Optimize>
+ <DefineConstants>TRACE</DefineConstants>
+ <DebugSymbols>False</DebugSymbols>
+ <DebugType>None</DebugType>
+ <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="MainClass.cs" />
+ <Compile Include="AssemblyInfo.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
+</Project>
\ No newline at end of file
Added: trunk/chaos.net/Chaos.Service/Chaos.Service.sln
===================================================================
--- trunk/chaos.net/Chaos.Service/Chaos.Service.sln (rev 0)
+++ trunk/chaos.net/Chaos.Service/Chaos.Service.sln 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,16 @@
+Microsoft Visual Studio Solution File, Format Version 9.00
+# SharpDevelop 2.0.0.1591
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chaos.Service", "Chaos.Service.csproj", "{B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ EndGlobalSection
+EndGlobal
Added: trunk/chaos.net/Chaos.Service/MainClass.cs
===================================================================
--- trunk/chaos.net/Chaos.Service/MainClass.cs (rev 0)
+++ trunk/chaos.net/Chaos.Service/MainClass.cs 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,21 @@
+/*
+ * Created by SharpDevelop.
+ * User: per
+ * Date: 2007-03-15
+ * Time: 14:12
+ *
+ * To change this template use Tools | Options | Coding | Edit Standard Headers.
+ */
+using System;
+using System.Collections.Generic;
+
+namespace Chaos.Service
+{
+ /// <summary>
+ /// Description of MainClass.
+ /// </summary>
+ public class MainClass
+ {
+
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-15 13:12:17
|
Revision: 1232
http://chaos.svn.sourceforge.net/chaos/?rev=1232&view=rev
Author: sf_hal
Date: 2007-03-15 06:12:07 -0700 (Thu, 15 Mar 2007)
Log Message:
-----------
Initial check in.
Added Paths:
-----------
trunk/chaos.net/Storm.NET/
trunk/chaos.net/Storm.NET/Storm/
trunk/chaos.net/Storm.NET/Storm/Form1.Designer.cs
trunk/chaos.net/Storm.NET/Storm/Form1.cs
trunk/chaos.net/Storm.NET/Storm/Form1.resx
trunk/chaos.net/Storm.NET/Storm/Program.cs
trunk/chaos.net/Storm.NET/Storm/Properties/
trunk/chaos.net/Storm.NET/Storm/Properties/AssemblyInfo.cs
trunk/chaos.net/Storm.NET/Storm/Properties/Resources.Designer.cs
trunk/chaos.net/Storm.NET/Storm/Properties/Resources.resx
trunk/chaos.net/Storm.NET/Storm/Properties/Settings.Designer.cs
trunk/chaos.net/Storm.NET/Storm/Properties/Settings.settings
trunk/chaos.net/Storm.NET/Storm/Storm.csproj
trunk/chaos.net/Storm.NET/Storm.sln
trunk/chaos.net/Storm.NET/Storm.suo
Added: trunk/chaos.net/Storm.NET/Storm/Form1.Designer.cs
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Form1.Designer.cs (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Form1.Designer.cs 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,201 @@
+namespace Storm
+{
+ partial class Form1
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Services");
+ System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Clients");
+ System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Connections");
+ System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Storm", new System.Windows.Forms.TreeNode[] {
+ treeNode1,
+ treeNode2,
+ treeNode3});
+ this.statusStrip1 = new System.Windows.Forms.StatusStrip();
+ this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
+ this.menuStrip1 = new System.Windows.Forms.MenuStrip();
+ this.stormToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.aboutStormNETToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.splitContainer1 = new System.Windows.Forms.SplitContainer();
+ this.treeView1 = new System.Windows.Forms.TreeView();
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
+ this.statusStrip1.SuspendLayout();
+ this.menuStrip1.SuspendLayout();
+ this.splitContainer1.Panel1.SuspendLayout();
+ this.splitContainer1.Panel2.SuspendLayout();
+ this.splitContainer1.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // statusStrip1
+ //
+ this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripStatusLabel1});
+ this.statusStrip1.Location = new System.Drawing.Point(0, 507);
+ this.statusStrip1.Name = "statusStrip1";
+ this.statusStrip1.Size = new System.Drawing.Size(687, 22);
+ this.statusStrip1.TabIndex = 0;
+ this.statusStrip1.Text = "statusStrip1";
+ //
+ // toolStripStatusLabel1
+ //
+ this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
+ this.toolStripStatusLabel1.Size = new System.Drawing.Size(58, 17);
+ this.toolStripStatusLabel1.Text = "Storm.NET";
+ //
+ // menuStrip1
+ //
+ this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.stormToolStripMenuItem,
+ this.helpToolStripMenuItem});
+ this.menuStrip1.Location = new System.Drawing.Point(0, 0);
+ this.menuStrip1.Name = "menuStrip1";
+ this.menuStrip1.Size = new System.Drawing.Size(687, 24);
+ this.menuStrip1.TabIndex = 1;
+ this.menuStrip1.Text = "menuStrip1";
+ //
+ // stormToolStripMenuItem
+ //
+ this.stormToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.startToolStripMenuItem,
+ this.quitToolStripMenuItem});
+ this.stormToolStripMenuItem.Name = "stormToolStripMenuItem";
+ this.stormToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
+ this.stormToolStripMenuItem.Text = "&Storm";
+ //
+ // startToolStripMenuItem
+ //
+ this.startToolStripMenuItem.Name = "startToolStripMenuItem";
+ this.startToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
+ this.startToolStripMenuItem.Text = "&Start...";
+ //
+ // quitToolStripMenuItem
+ //
+ this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
+ this.quitToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
+ this.quitToolStripMenuItem.Text = "&Exit";
+ //
+ // helpToolStripMenuItem
+ //
+ this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.aboutStormNETToolStripMenuItem});
+ this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
+ this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20);
+ this.helpToolStripMenuItem.Text = "&Help";
+ //
+ // aboutStormNETToolStripMenuItem
+ //
+ this.aboutStormNETToolStripMenuItem.Name = "aboutStormNETToolStripMenuItem";
+ this.aboutStormNETToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
+ this.aboutStormNETToolStripMenuItem.Text = "&About Storm.NET";
+ //
+ // splitContainer1
+ //
+ this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.splitContainer1.Location = new System.Drawing.Point(0, 24);
+ this.splitContainer1.Name = "splitContainer1";
+ //
+ // splitContainer1.Panel1
+ //
+ this.splitContainer1.Panel1.Controls.Add(this.treeView1);
+ //
+ // splitContainer1.Panel2
+ //
+ this.splitContainer1.Panel2.Controls.Add(this.richTextBox1);
+ this.splitContainer1.Size = new System.Drawing.Size(687, 483);
+ this.splitContainer1.SplitterDistance = 229;
+ this.splitContainer1.TabIndex = 2;
+ //
+ // treeView1
+ //
+ this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.treeView1.Location = new System.Drawing.Point(0, 0);
+ this.treeView1.Name = "treeView1";
+ treeNode1.Name = "Node1";
+ treeNode1.Text = "Services";
+ treeNode2.Name = "Node2";
+ treeNode2.Text = "Clients";
+ treeNode3.Name = "Node3";
+ treeNode3.Text = "Connections";
+ treeNode4.Name = "Node0";
+ treeNode4.Text = "Storm";
+ this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
+ treeNode4});
+ this.treeView1.Size = new System.Drawing.Size(229, 483);
+ this.treeView1.TabIndex = 0;
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.richTextBox1.Location = new System.Drawing.Point(0, 0);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.Size = new System.Drawing.Size(454, 483);
+ this.richTextBox1.TabIndex = 0;
+ this.richTextBox1.Text = "";
+ //
+ // Form1
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(687, 529);
+ this.Controls.Add(this.splitContainer1);
+ this.Controls.Add(this.statusStrip1);
+ this.Controls.Add(this.menuStrip1);
+ this.MainMenuStrip = this.menuStrip1;
+ this.Name = "Form1";
+ this.Text = "Storm.NET";
+ this.statusStrip1.ResumeLayout(false);
+ this.statusStrip1.PerformLayout();
+ this.menuStrip1.ResumeLayout(false);
+ this.menuStrip1.PerformLayout();
+ this.splitContainer1.Panel1.ResumeLayout(false);
+ this.splitContainer1.Panel2.ResumeLayout(false);
+ this.splitContainer1.ResumeLayout(false);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.StatusStrip statusStrip1;
+ private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
+ private System.Windows.Forms.MenuStrip menuStrip1;
+ private System.Windows.Forms.ToolStripMenuItem stormToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem aboutStormNETToolStripMenuItem;
+ private System.Windows.Forms.SplitContainer splitContainer1;
+ private System.Windows.Forms.TreeView treeView1;
+ private System.Windows.Forms.RichTextBox richTextBox1;
+
+ }
+}
+
Added: trunk/chaos.net/Storm.NET/Storm/Form1.cs
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Form1.cs (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Form1.cs 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Text;
+using System.Windows.Forms;
+
+namespace Storm
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+
+ }
+}
\ No newline at end of file
Added: trunk/chaos.net/Storm.NET/Storm/Form1.resx
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Form1.resx (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Form1.resx 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" use="required" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>17, 17</value>
+ </metadata>
+ <metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>127, 17</value>
+ </metadata>
+</root>
\ No newline at end of file
Added: trunk/chaos.net/Storm.NET/Storm/Program.cs
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Program.cs (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Program.cs 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+
+namespace Storm
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}
\ No newline at end of file
Added: trunk/chaos.net/Storm.NET/Storm/Properties/AssemblyInfo.cs
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Properties/AssemblyInfo.cs (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Properties/AssemblyInfo.cs 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Storm")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Storm")]
+[assembly: AssemblyCopyright("Copyright © 2007")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("941c35fd-a383-4dd9-9fab-86edd614fe3a")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
Added: trunk/chaos.net/Storm.NET/Storm/Properties/Resources.Designer.cs
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Properties/Resources.Designer.cs (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Properties/Resources.Designer.cs 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:2.0.50727.42
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace Storm.Properties
+{
+
+
+ /// <summary>
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ /// </summary>
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ /// <summary>
+ /// Returns the cached ResourceManager instance used by this class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Storm.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ /// <summary>
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
Added: trunk/chaos.net/Storm.NET/Storm/Properties/Resources.resx
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Properties/Resources.resx (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Properties/Resources.resx 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+</root>
\ No newline at end of file
Added: trunk/chaos.net/Storm.NET/Storm/Properties/Settings.Designer.cs
===================================================================
--- trunk/chaos.net/Storm.NET/Storm/Properties/Settings.Designer.cs (rev 0)
+++ trunk/chaos.net/Storm.NET/Storm/Properties/Settings.Designer.cs 2007-03-15 13:12:07 UTC (rev 1232)
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:2.0.50727.42
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto...
[truncated message content] |
|
From: <per...@us...> - 2007-03-15 13:35:32
|
Revision: 1237
http://chaos.svn.sourceforge.net/chaos/?rev=1237&view=rev
Author: perlundberg
Date: 2007-03-15 06:35:30 -0700 (Thu, 15 Mar 2007)
Log Message:
-----------
chaos.sln: Added a global chaos solution for compiling everything.
Storm.csproj: Fixed an assembly reference to Chaos.Service, so that Storm.NET can access the classes in the Chaos.Service assembly.
Modified Paths:
--------------
trunk/chaos.net/Storm.NET/Storm.csproj
Added Paths:
-----------
trunk/chaos.net/chaos.sln
Modified: trunk/chaos.net/Storm.NET/Storm.csproj
===================================================================
--- trunk/chaos.net/Storm.NET/Storm.csproj 2007-03-15 13:32:30 UTC (rev 1236)
+++ trunk/chaos.net/Storm.NET/Storm.csproj 2007-03-15 13:35:30 UTC (rev 1237)
@@ -76,5 +76,11 @@
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\Chaos.Service\Chaos.Service.csproj">
+ <Project>{B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}</Project>
+ <Name>Chaos.Service</Name>
+ </ProjectReference>
+ </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
\ No newline at end of file
Added: trunk/chaos.net/chaos.sln
===================================================================
--- trunk/chaos.net/chaos.sln (rev 0)
+++ trunk/chaos.net/chaos.sln 2007-03-15 13:35:30 UTC (rev 1237)
@@ -0,0 +1,26 @@
+Microsoft Visual Studio Solution File, Format Version 9.00
+# SharpDevelop 2.0.0.1591
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Storm", "Storm.NET\Storm.csproj", "{6F1CEB73-BDC1-490E-A3F2-3A52F5566AA3}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chaos.Service", "Chaos.Service\Chaos.Service.csproj", "{B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {2C162641-E16C-4E25-82D7-68C1FA0197B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {2C162641-E16C-4E25-82D7-68C1FA0197B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {2C162641-E16C-4E25-82D7-68C1FA0197B8}.Release|Any CPU.Build.0 = Release|Any CPU
+ {2C162641-E16C-4E25-82D7-68C1FA0197B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6F1CEB73-BDC1-490E-A3F2-3A52F5566AA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6F1CEB73-BDC1-490E-A3F2-3A52F5566AA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6F1CEB73-BDC1-490E-A3F2-3A52F5566AA3}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6F1CEB73-BDC1-490E-A3F2-3A52F5566AA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ EndGlobalSection
+EndGlobal
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-16 16:17:07
|
Revision: 1243
http://chaos.svn.sourceforge.net/chaos/?rev=1243&view=rev
Author: sf_hal
Date: 2007-03-16 09:16:56 -0700 (Fri, 16 Mar 2007)
Log Message:
-----------
Initial checkin of the Chaos.IPC library used by both Storm.NET and Chaos.Service.
Added Paths:
-----------
trunk/chaos.net/Chaos.IPC/
trunk/chaos.net/Chaos.IPC/Chaos.IPC.csproj
trunk/chaos.net/Chaos.IPC/Chaos.IPC.sln
trunk/chaos.net/Chaos.IPC/Chaos.IPC.suo
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.IPC/IPCMessageArgument.cs
trunk/chaos.net/Chaos.IPC/Properties/
trunk/chaos.net/Chaos.IPC/Properties/AssemblyInfo.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <per...@us...> - 2007-03-18 12:21:42
|
Revision: 1254
http://chaos.svn.sourceforge.net/chaos/?rev=1254&view=rev
Author: perlundberg
Date: 2007-03-17 09:15:29 -0700 (Sat, 17 Mar 2007)
Log Message:
-----------
Changed some ugly "fulkod" to traditional "finkod" formatting, upon notification
by Henrik. :-)
Modified Paths:
--------------
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.IPC/IPCMessageArgument.cs
trunk/chaos.net/Chaos.Service/ServiceManager.cs
trunk/chaos.net/Chaos.Service/ServiceParameters.cs
trunk/chaos.net/Servers/Server.Console/MainWindow.cs
trunk/chaos.net/Storm.NET/ClientConnection.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <per...@us...> - 2007-03-18 12:26:11
|
Revision: 1253
http://chaos.svn.sourceforge.net/chaos/?rev=1253&view=rev
Author: perlundberg
Date: 2007-03-16 17:36:44 -0700 (Fri, 16 Mar 2007)
Log Message:
-----------
Checking in after a good Friday night of hacking. :-)
Changes are too many to mention but what I've done is continued on Henrik's
excellent work. Creating services now work and Storm.NET adds them to an
internal data structure. Being able to connect to these services and invoke
methods is under way but unfinished. The concept I've chosen is to let each
service handler create a new TCP socket which service clients will then
connect to to be able to invoke methods on the service.
Henrik or me will "finish" this shortly. :)
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Cluido.csproj
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Chaos.IPC/Chaos.IPC.csproj
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.IPC/IPCMessageArgument.cs
trunk/chaos.net/Chaos.Service/Chaos.Service.csproj
trunk/chaos.net/Chaos.Service/ServiceConnection.cs
trunk/chaos.net/Chaos.Service/ServiceManager.cs
trunk/chaos.net/Chaos.Service/ServiceParameters.cs
trunk/chaos.net/Servers/Server.Console/MainWindow.cs
trunk/chaos.net/Servers/Server.Console/Server.Console.csproj
trunk/chaos.net/Storm.NET/ClientConnection.cs
trunk/chaos.net/Storm.NET/Storm.NET.csproj
trunk/chaos.net/chaos.sln
Added Paths:
-----------
trunk/chaos.net/Chaos.IPC/ServiceIdentifier.cs
trunk/chaos.net/Chaos.Service/ServiceConnectionServer.cs
Removed Paths:
-------------
trunk/chaos.net/Chaos.Service/ServiceIdentifier.cs
Property Changed:
----------------
trunk/chaos.net/Applications/Cluido/
trunk/chaos.net/Chaos.IPC/
trunk/chaos.net/Servers/Server.Console/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-18 22:57:10
|
Revision: 1258
http://chaos.svn.sourceforge.net/chaos/?rev=1258&view=rev
Author: sf_hal
Date: 2007-03-18 09:32:35 -0700 (Sun, 18 Mar 2007)
Log Message:
-----------
Some optimizations to the console server and various minor changes. The console server is still unable to scroll the screen, but I will have that fixed soon.
Modified Paths:
--------------
trunk/chaos.net/Chaos.IPC/Chaos.IPC.sln
trunk/chaos.net/Chaos.IPC/Chaos.IPC.suo
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.IPC/IPCMessageArgument.cs
trunk/chaos.net/Chaos.Service/ServiceManager.cs
trunk/chaos.net/Chaos.Service/ServiceParameters.cs
trunk/chaos.net/Servers/Server.Console/Screen.cs
trunk/chaos.net/Storm.NET/ClientConnection.cs
trunk/chaos.net/Storm.NET/Storm.NET.sln
trunk/chaos.net/Storm.NET/Storm.NET.suo
trunk/chaos.net/start.bat
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-22 09:51:21
|
Revision: 1262
http://chaos.svn.sourceforge.net/chaos/?rev=1262&view=rev
Author: sf_hal
Date: 2007-03-22 02:51:15 -0700 (Thu, 22 Mar 2007)
Log Message:
-----------
Added startup scripts.
Added Paths:
-----------
trunk/chaos.net/start Cluido.bat
trunk/chaos.net/start Server.Console.bat
trunk/chaos.net/start Storm.NET.bat
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-22 09:52:59
|
Revision: 1264
http://chaos.svn.sourceforge.net/chaos/?rev=1264&view=rev
Author: sf_hal
Date: 2007-03-22 02:52:57 -0700 (Thu, 22 Mar 2007)
Log Message:
-----------
Console library. This implements the console protocol on top of Chaos.Service.
Added Paths:
-----------
trunk/chaos.net/Chaos.Console/
trunk/chaos.net/Chaos.Console/Chaos.Console.csproj
trunk/chaos.net/Chaos.Console/Chaos.Console.sln
trunk/chaos.net/Chaos.Console/Chaos.Console.suo
trunk/chaos.net/Chaos.Console/Console.cs
trunk/chaos.net/Chaos.Console/Properties/
trunk/chaos.net/Chaos.Console/Properties/AssemblyInfo.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-22 22:39:55
|
Revision: 1276
http://chaos.svn.sourceforge.net/chaos/?rev=1276&view=rev
Author: sf_hal
Date: 2007-03-22 15:20:31 -0700 (Thu, 22 Mar 2007)
Log Message:
-----------
Lots of changes again. The console server can now handle multiple consoles. Cluido opens a new console. Etc etc... Read the diffs! ;)
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Chaos.Console/Console.cs
trunk/chaos.net/Chaos.Service/InvokeResult.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Servers/Server.Console/MainWindow.Designer.cs
trunk/chaos.net/Servers/Server.Console/MainWindow.cs
trunk/chaos.net/Servers/Server.Console/Server.Console.csproj
trunk/chaos.net/Storm.NET/ClientConnection.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <per...@us...> - 2007-03-24 21:28:54
|
Revision: 1284
http://chaos.svn.sourceforge.net/chaos/?rev=1284&view=rev
Author: perlundberg
Date: 2007-03-24 14:28:52 -0700 (Sat, 24 Mar 2007)
Log Message:
-----------
Fixed the IPC to work since Henrik is too lazy to do it himself. ;-)
I think this is similar to how you intended to solve it, right?
Modified Paths:
--------------
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.IPC/IPCMessageArgument.cs
trunk/chaos.net/Chaos.Service/ServiceConnection.cs
trunk/chaos.net/Chaos.Service/StormConnection.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Storm.NET/ClientConnection.cs
trunk/chaos.net/Storm.NET/Connection.cs
Added Paths:
-----------
trunk/chaos.net/release.sh
Property Changed:
----------------
trunk/chaos.net/Chaos.Console/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-26 10:47:24
|
Revision: 1285
http://chaos.svn.sourceforge.net/chaos/?rev=1285&view=rev
Author: sf_hal
Date: 2007-03-26 03:47:20 -0700 (Mon, 26 Mar 2007)
Log Message:
-----------
Modified the IPC mechanism again. This time we are not making any assumptions regarding the direction of a message, but instead set up a proper two-way communication channel and let the server and client sides have their own queues.
Modified Paths:
--------------
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.Service/ServiceConnection.cs
trunk/chaos.net/Chaos.Service/StormConnection.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Storm.NET/ClientConnection.cs
trunk/chaos.net/Storm.NET/Connection.cs
trunk/chaos.net/Storm.NET/Mailbox.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-26 12:38:30
|
Revision: 1286
http://chaos.svn.sourceforge.net/chaos/?rev=1286&view=rev
Author: sf_hal
Date: 2007-03-26 05:38:26 -0700 (Mon, 26 Mar 2007)
Log Message:
-----------
Extended the IPC mechanism somewhat to allow more datatypes. Started hacking on the console <-> cluido communication to allow keypresses and mouse events to reach cluido. This is badly implemented at the moment and needs some more thought from my (our) side. It is probably cleaner to set up a new communication channel on which to receive console events. The console library *could* spawn off a new handler thread to handle incoming events on this channel and delegate the work to event handlers inside the application using the console library. This is probably the cleanest way to program this, I don't know.
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Chaos.Console/Chaos.Console.csproj
trunk/chaos.net/Chaos.Console/Console.cs
trunk/chaos.net/Chaos.IPC/IPCMessage.cs
trunk/chaos.net/Chaos.IPC/IPCMessageArgument.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Servers/Server.Console/Console.cs
trunk/chaos.net/Servers/Server.Console/Properties/Resources.Designer.cs
trunk/chaos.net/Servers/Server.Console/Properties/Settings.Designer.cs
trunk/chaos.net/Servers/Server.Console/Server.Console.csproj
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-26 23:20:25
|
Revision: 1287
http://chaos.svn.sourceforge.net/chaos/?rev=1287&view=rev
Author: sf_hal
Date: 2007-03-26 16:20:22 -0700 (Mon, 26 Mar 2007)
Log Message:
-----------
Added event channel. This doesn't work at all at the moment. There seems to be some issue with using the tcp connection from another thread than the one that created it? I will have to debug this tomorrow.
Also added some skeleton stuff to the console library that is going to be used to pack a bunch of drawing commands into a message and then commiting it for the console server to draw.
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Chaos.Console/Console.cs
trunk/chaos.net/Chaos.Service/ServiceConnection.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Servers/Server.Console/Console.cs
trunk/chaos.net/Storm.NET/ClientConnection.cs
trunk/chaos.net/Storm.NET/Connection.cs
trunk/chaos.net/Storm.NET/Mailbox.cs
Added Paths:
-----------
trunk/chaos.net/Chaos.Console/ConsolePrimitive.cs
trunk/chaos.net/Chaos.Console/ConsoleScene.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-28 12:37:42
|
Revision: 1288
http://chaos.svn.sourceforge.net/chaos/?rev=1288&view=rev
Author: sf_hal
Date: 2007-03-28 05:37:38 -0700 (Wed, 28 Mar 2007)
Log Message:
-----------
Added separate event channel connections to storm making the event passing completely separated from the function invoke stuff cleaning up the code a lot.
The whole thing now works! Cluido successfully receives keypress events from the console server and acts by echoing the character back for printing. The whole system is a bit shaky, but it is probably missing locking somewhere or similar. Anyways, a big step forward.
Next up, create a ReadLine equivalent (either in the console library or directly in cluido) and start implementing some commands in cluido!
Also, I still need to make the console server create console objects in the main UI thread to have the cursor blink. I will fix this. :)
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Chaos.Console/Console.cs
trunk/chaos.net/Chaos.Service/ServiceConnection.cs
trunk/chaos.net/Chaos.Service/StormConnection.cs
trunk/chaos.net/Servers/Server.Console/Console.cs
trunk/chaos.net/Storm.NET/ClientConnection.cs
trunk/chaos.net/chaos.sln
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-03-28 23:24:03
|
Revision: 1294
http://chaos.svn.sourceforge.net/chaos/?rev=1294&view=rev
Author: sf_hal
Date: 2007-03-28 16:23:55 -0700 (Wed, 28 Mar 2007)
Log Message:
-----------
Minor modifications to Cluido.
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/start.bat
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <per...@us...> - 2007-03-30 15:33:55
|
Revision: 1296
http://chaos.svn.sourceforge.net/chaos/?rev=1296&view=rev
Author: perlundberg
Date: 2007-03-30 08:33:44 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Added more debugging/cleanup code. Storm.NET should be able to exit cleanly and let everything else die when it does that, but we're not really there yet...
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Servers/Server.Console/MainWindow.cs
trunk/chaos.net/Storm.NET/ConnectionListener.cs
trunk/chaos.net/Storm.NET/Mailbox.cs
trunk/chaos.net/Storm.NET/MainWindow.Designer.cs
trunk/chaos.net/Storm.NET/MainWindow.cs
trunk/chaos.net/Storm.NET/MainWindow.resx
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <per...@us...> - 2007-03-30 21:31:29
|
Revision: 1300
http://chaos.svn.sourceforge.net/chaos/?rev=1300&view=rev
Author: perlundberg
Date: 2007-03-30 14:31:28 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Server.Console/ConnectionHandler.cs: added some more (and working...) debug code when getting an exception.
Server.Console/Console.cs: fixed the annoying bug with reentrancy causing the console server to crash. Now, we lock on surface in the proper places so the code should be fairly thread-safe now.
Storm.NET/Mailbox.cs: added the semaphore size to 25 since 1 has proven to be too little.
Modified Paths:
--------------
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Servers/Server.Console/Console.cs
trunk/chaos.net/Storm.NET/Mailbox.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-04-01 19:00:22
|
Revision: 1311
http://chaos.svn.sourceforge.net/chaos/?rev=1311&view=rev
Author: sf_hal
Date: 2007-04-01 12:00:19 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
Disable debugging by default.
Modified Paths:
--------------
trunk/chaos.net/Storm.NET/MainWindow.Designer.cs
trunk/chaos.net/chaos.suo
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-04-01 19:41:33
|
Revision: 1312
http://chaos.svn.sourceforge.net/chaos/?rev=1312&view=rev
Author: sf_hal
Date: 2007-04-01 12:41:31 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
Added backspace support for the readline function of cluido.
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/Chaos.Console/Console.cs
trunk/chaos.net/Servers/Server.Console/ConnectionHandler.cs
trunk/chaos.net/Servers/Server.Console/Console.cs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-04-01 19:49:53
|
Revision: 1313
http://chaos.svn.sourceforge.net/chaos/?rev=1313&view=rev
Author: sf_hal
Date: 2007-04-01 12:49:51 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
Added some code to do IPC RTT measurements and a list command that doesn't work yet.
Modified Paths:
--------------
trunk/chaos.net/Applications/Cluido/Cluido.csproj
trunk/chaos.net/Applications/Cluido/Program.cs
trunk/chaos.net/chaos.suo
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-04-02 22:20:37
|
Revision: 1320
http://chaos.svn.sourceforge.net/chaos/?rev=1320&view=rev
Author: sf_hal
Date: 2007-04-02 15:20:24 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/chaos.net/chaos.suo
Removed Paths:
-------------
trunk/chaos.net/Chaos.Console/
trunk/chaos.net/Chaos.IPC/
trunk/chaos.net/Chaos.Service/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sf...@us...> - 2007-04-02 22:32:47
|
Revision: 1323
http://chaos.svn.sourceforge.net/chaos/?rev=1323&view=rev
Author: sf_hal
Date: 2007-04-02 15:32:00 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Started to rearrange stuff again to gain Inner Peace. This might not build. ;)
Modified Paths:
--------------
trunk/chaos.net/Servers/Server.Console/Server.Console.csproj
trunk/chaos.net/Storm.NET/Storm.NET.csproj
trunk/chaos.net/chaos.sln
trunk/chaos.net/chaos.suo
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|