Update of /project/cl-xmpp/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv20669
Modified Files: index.html Log Message: adding info about lispworks
Date: Sat Oct 29 04:14:26 2005 Author: eenge
Index: public_html/index.html diff -u public_html/index.html:1.9 public_html/index.html:1.10 --- public_html/index.html:1.9 Fri Oct 28 23:22:05 2005 +++ public_html/index.html Sat Oct 29 04:14:25 2005 @@ -7,7 +7,7 @@
<body> <div class="header"> - <h1>cl-xmpp 0.1.0</h1> + <h1>cl-xmpp 0.3.0</h1> </div> <div class="body">
@@ -20,11 +20,7 @@ all part of <a href="http://www.jabber.org/jeps/jep-0073.html">JEP-0073: Basic IM Protocol Suite</a>. The author considers the library feature complete but will happily accept patches for any other reasonably stable JEPs.</p>
<p>Currently, you can chat, manage your contacts, roster -and presence information using this library. The code was developed -under <a href="http://www.sbcl.org">SBCL</a> and currently does -not work on any other implementation due to the fact that the socket -code is all SBCL specific. However, for someone sufficiently motivated, -it probably takes 10 minutes to add support for another implementation.</p> +and presence information using this library.</p>
<p>The code is released under an <a href="http://common-lisp.net/cgi-bin/viewcvs.cgi/cl-xmpp/LICENSE?rev=HEAD&cvsroot=cl-xmpp&content-type=text/vnd.viewcvs-markup">MIT-style @@ -33,7 +29,7 @@ <h2>Requirements</h2> <div class="level"> <ul> - <li>A recent SBCL (need 16bit wide characters)</li> + <li>A recent SBCL (need 16bit wide characters), LispWorks or Allegro (patches welcome for others)</li> <li><a href="http://common-lisp.net/project/cxml">cxml</a></li> </ul> </div> @@ -41,7 +37,9 @@ <h2>News</h2> <div class="level"> <ul> - <li>Version 0.1.0 released (initial release)</li> + <li>Version 0.3.0 released (Added Allegro and LispWorks support)</li> + <li>Version 0.2.0 released (JEP 0073 support)</li> + <li>Version 0.1.0 released (Initial release)</li> </ul> </div>
@@ -49,7 +47,7 @@ <div class="level">
<ul> - <li>implements most commands in the RFCs</li> + <li>Implements most commands in the RFCs</li> <li>event driven model with hooks makes interfacing easy -- or</li> <li>access to DOM-ish structure with raw data from the server so you can do whatever you like</li> </ul> @@ -117,8 +115,8 @@
;; If you wish to handle the incoming messages or other objects simply ;; specify an xmpp:handle method for the objects you are interested in -;; or xmpp:handle on xmpp:event to get them all. Or alternatively specify -;; :dom-repr t to receive-stanza-loop to get DOM-ish objects. +;; or (defmethod xmpp:handle (object) ...) to get them all. Or alternatively +;; specify :dom-repr t to receive-stanza-loop to get DOM-ish objects. </pre> </div>