add spinneret

it depends on:

  :depends-on ("parenscript"   <---- but there is a system spinneret/cl, is spinneret needed here?
               "alexandria"
               "cl-ppcre"
               "global-vars"
               "serapeum"
               "trivial-gray-streams")
This commit is contained in:
vindarel 2023-01-20 23:24:14 +01:00
parent 6cdf17ccbe
commit 9f7937dab2
3 changed files with 5 additions and 0 deletions

View file

@ -43,6 +43,7 @@
:easy-routes ;; better route definition for Hunchentoot.
:quri
:lquery
:spinneret ;; lispy templates. Used in simpleHTTPserver.lisp
;; GUI
:ltk

View file

@ -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

View file

@ -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)