[usocket-cvs] r224 - public_html

ehuelsmann at common-lisp.net ehuelsmann at common-lisp.net
Sat Apr 7 21:24:48 UTC 2007


Author: ehuelsmann
Date: Sat Apr  7 17:24:46 2007
New Revision: 224

Added:
   public_html/implementation-comparison.shtml
Modified:
   public_html/index.shtml
Log:
Add a comparison of supported implementations across libraries with similar goals.

Added: public_html/implementation-comparison.shtml
==============================================================================
--- (empty file)
+++ public_html/implementation-comparison.shtml	Sat Apr  7 17:24:46 2007
@@ -0,0 +1,65 @@
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+  <title><!--#include virtual="project-name" --></title>
+  <link rel="stylesheet" type="text/css" href="style.css"/>
+  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+</head>
+
+<body>
+ <div class="header">
+   <h1><!--#include virtual="project-name" --></h1>
+ </div>
+
+<h2>Supported implementations comparison</h2>
+
+<p>Different projects aim at providing TCP/IP sockets portably
+across Common Lisp implementations.  The table below summarizes
+the state of several of these libraries.</p>
+
+<table>
+<thead>
+<tr><th>Implementation</th><th>trivial-sockets</th><th>ACL-COMPAT</th>
+    <th>s-sysdeps</th><th>usocket</th></tr>
+</thead>
+<tbody>
+<tr><th>SBCL</th><td>yes</td><td>yes</td><td>yes</td><td>yes</td>
+</tr>
+<tr><th>CMUCL</th><td>yes</td><td>yes</td><td>yes</td><td>yes</td>
+</tr>
+<tr style="background-color:#eef"><th>ArmedBear</th><td>yes</td><td>no</td><td>no</td><td>yes</td>
+</tr>
+<tr><th>clisp</th><td>yes</td><td>yes</td><td>no</td><td>yes</td>
+</tr>
+<tr><th>Allegro</th><td>yes</td><td>not relevant</td><td>no</td><td>yes</td>
+</tr>
+<tr style="background-color:#eef"><th>LispWorks</th><td>yes</td><td>yes</td><td>yes</td><td>yes</td>
+</tr>
+<tr><th>OpenMCL</th><td>yes</td><td>yes</td><td>yes</td><td>yes</td>
+</tr>
+<tr><th>ECL</th><td>no</td><td>no</td><td>no</td><td>yes</td>
+</tr>
+<tr style="background-color:#eef"><th>Scieneer</th><td>no</td><td>yes</td><td>no</td><td>yes</td>
+</tr>
+<tr><th>GCL</th><td>no</td><td>no</td><td>no</td><td>no (to come)</td>
+</tr>
+<tr><th>Corman</th><td>no</td><td>yes</td><td>no</td><td>no (to come)</td>
+</tr>
+</tbody>
+
+<caption>Supported implementations comparison</caption>
+</table>
+
+
+<hr />
+
+<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>
+</html>

Modified: public_html/index.shtml
==============================================================================
--- public_html/index.shtml	(original)
+++ public_html/index.shtml	Sat Apr  7 17:24:46 2007
@@ -48,6 +48,11 @@
   <li>Scieneer</li>
 </ul>
 
+<p>To see how this list relates to the supported implementations in other
+socket libraries, see the
+<a href="implementation-comparison.shtml">Implementation comparison</a>
+page.</p>
+
 <h2>Community</h2>
 
  <p>This project has started Januari 2006.  There isn't much of a community



More information about the usocket-cvs mailing list