mirror of
https://gitlab.com/vindarel/ciel.git
synced 2026-01-30 20:33:32 -08:00
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:
parent
6cdf17ccbe
commit
9f7937dab2
3 changed files with 5 additions and 0 deletions
1
ciel.asd
1
ciel.asd
|
|
@ -43,6 +43,7 @@
|
|||
:easy-routes ;; better route definition for Hunchentoot.
|
||||
:quri
|
||||
:lquery
|
||||
:spinneret ;; lispy templates. Used in simpleHTTPserver.lisp
|
||||
|
||||
;; GUI
|
||||
:ltk
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue