wuwei

https://github.com/mtravers/wuwei.git

git clone 'https://github.com/mtravers/wuwei.git'

(ql:quickload :wuwei)
50

WuWei – an Ajaxy web toolkit for Common Lisp

WuWei is a toolkit for building Ajax web pages and web sites in Common Lisp. It's designed to be light-weight, a toolkit rather than a platform.

Wu wei is Chinese for “effortless doing”.

Features

Examples

May be run at the demo site: http://wuwei.name

Credits

WuWei was written primarily by Mike Travers, originally under the sponsorship of CollabRx, Inc. Some bits of it are derived from BioBike.

Requirements/dependencies:

Install

Easiest using QuickLisp:

  1. Install QuickLisp from http://www.quicklisp.org/

  2. Tell the install system where to find wuwei and mtlisp:

    (push #p“/misc/repos/wuwei/” asdf:central-registry) (push #p“/misc/repos/mtlisp/”)

  3. (OpenMCL only) Unfortunately there are some incompatabilities with the distributed version of Portable AllegroServe and OpenMCL, so:

  4. download my patched version of aserve

  5. From that directory:

    (load “acl-compat/acl-compat.asd”) (load “aserve/aserve.asd”)

  6. Load everything:

    (ql:quickload “wuwei”) (ql:quickload “wuwei-examples”) ; if wanted

  7. Start the server

    (net.aserve:start :port 3333)