diff --git a/ciel.asd b/ciel.asd index 091e2c1..0156a49 100644 --- a/ciel.asd +++ b/ciel.asd @@ -43,6 +43,7 @@ :easy-routes ;; better route definition for Hunchentoot. :quri :lquery + :spinneret ;; lispy templates. Used in simpleHTTPserver.lisp ;; GUI :ltk diff --git a/docs/dependencies.md b/docs/dependencies.md index 9ce5517..8c6501d 100644 --- a/docs/dependencies.md +++ b/docs/dependencies.md @@ -55,6 +55,7 @@ simple string literal definition that doesn't require escaping characters. - repl-utilities: Ease common tasks at the REPL. - serapeum: Utilities beyond Alexandria. - shlex: Lexical analyzer for simple shell-like syntax. +- spinneret: Common Lisp HTML5 generator. - str: Modern, consistent and terse Common Lisp string manipulation library. - sxql: A SQL generator - trivia: NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase diff --git a/find-dependencies.lisp b/find-dependencies.lisp index 76355f1..79f7d39 100755 --- a/find-dependencies.lisp +++ b/find-dependencies.lisp @@ -9,7 +9,10 @@ Redirect the script output to docs/dependencies.md (see Makefile). |# (require 'asdf) +(print "loading quicklisp…") (load "~/quicklisp/setup") + +(require "cl+ssl") (load "ciel.asd") (require 'swank) ;; but why? (ql:quickload '("ciel" "str") :silent t)