[usocket-cvs] r6 - public_html usocket/trunk/doc

ehuelsmann at common-lisp.net ehuelsmann at common-lisp.net
Sun Jan 29 19:23:39 UTC 2006


Author: ehuelsmann
Date: Sun Jan 29 13:23:36 2006
New Revision: 6

Modified:
   public_html/index.shtml
   public_html/style.css
   usocket/trunk/doc/design.txt
Log:
Update website and sync design document.

Modified: public_html/index.shtml
==============================================================================
--- public_html/index.shtml	(original)
+++ public_html/index.shtml	Sun Jan 29 13:23:36 2006
@@ -13,13 +13,110 @@
    <h1><!--#include virtual="project-name" --></h1>
  </div>
 
+<h2>Community</h2>
+
  <p>This project has recently started. See <a
 href="http://common-lisp.net/websvn/filedetails.php?repname=usocket&path=%2Fusocket%2Ftrunk%2Fdoc%2Fdesign.txt&rev=0&sc=0">the design
 document</a> for more information.</p>
 
- <p>Back to <a href="http://common-lisp.net/">Common-lisp.net</a>.</p>
+ <p>Development discussion takes place on
+   <a href="mailto:usocket-devel at common-lisp.net">usocket-devel at common-lisp.net</a>.
+  Please feel free to join and chip in! (This currently being a single man project, please announce yourself.)
+ </p>
+
+<div class="roadmap">
+  <h2>Development roadmap</h2>
+
+<table rules="all" border="1" cellpadding="3">
+  <caption>Roadmap</caption>
+  <thead class="roadmap-head">
+    <tr>
+      <th colspan="2">Major steps</th><th colspan="6">Implementations</th>
+    </tr>
+    <tr>
+      <th></th>
+      <th>Minor steps</th>
+      <th>SBCL</th>
+      <th>CMUCL</th>
+      <th>ABCL</th>
+      <th>clisp</th>
+      <th>Allegro</th>
+      <th>LispWorks</th>
+    </tr>
+  </thead>
+  <tbody>
+    <tr style="border-width:2px;border-color:#000;">
+      <td rowspan="2">Minimal active sockets support
+          at the same level as provided by
+          <a href="http://cliki.net/trivial-sockets">trivial-sockets</a>.<br />
+          (Meaning streamed tcp traffic on connected sockets.)</td>
+      <td>Investigate interfaces provided.</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+    </tr>
+    <tr>
+      <td>Implement active socket support.</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+    </tr>
+    <tr>
+      <td rowspan="2">Add functions to retrieve socket properties.<br />
+         Such as local and remote IP address and port.</td>
+      <td>Investigate interfaces provided</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+    </tr>
+    <tr>
+      <td>Implement it.</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+    </tr>
+    <tr>
+      <td rowspan="2">Add support for passive (connection-accepting/server)
+         sockets.</td>
+      <td>Investigate interfaces provided</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+    </tr>
+    <tr>
+      <td>Implement passive socket support.</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+      <td class="TODO">TODO</td>
+    </tr>
+  </tbody>
+</table>
+</div>
+
+<hr />
 
- <div class="check">
+<div style="float:left;font-size:x-small;font-weight:bold">
+Back to <a href="http://common-lisp.net/">Common-lisp.net</a>.
+</div>
+ <div class="check" style="float:right">
    <a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a>
  </div>
 </body>

Modified: public_html/style.css
==============================================================================
--- public_html/style.css	(original)
+++ public_html/style.css	Sun Jan 29 13:23:36 2006
@@ -52,3 +52,16 @@
 .check a:hover { font-weight:bold;
 		 color:#000000;
 		 text-decoration:underline; }
+
+.roadmap-table { border-style: solid;
+                 border-width: 2px;
+                 border-color: #000; }
+
+.roadmap-head { border-style: solid;
+                       border-width: 2px;
+                       border-color: #000; }
+
+.TODO { background-color: #b00;
+        color: #fff;
+        font-weight: bold;
+        text-align: center; }

Modified: usocket/trunk/doc/design.txt
==============================================================================
--- usocket/trunk/doc/design.txt	(original)
+++ usocket/trunk/doc/design.txt	Sun Jan 29 13:23:36 2006
@@ -72,8 +72,9 @@
 Minimally, I'd like to support:
  - SBCL
  - CMUCL
+ - ABCL (ArmedBear)
+ - clisp
  - Allegro
  - LispWorks
- - ArmedBear (ABCL)
 
 



More information about the usocket-cvs mailing list