Skip to content

Commit

Permalink
update system file to use strings for system names instead of uninter…
Browse files Browse the repository at this point in the history
…ned symbols as per asdf best practices
  • Loading branch information
aarvid committed Jun 29, 2017
1 parent 80f2d83 commit 16030ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions smackjack.asd
@@ -1,17 +1,17 @@
;;;; smackjack.asd

(asdf:defsystem #:smackjack
(asdf:defsystem "smackjack"
:serial t
:version "0.1"
:description "A small Ajax framework for hunchentoot using parenscript"
:author "Andy Peterson <andy.arvid@gmail.com>"
:license "MIT"
:depends-on (#:alexandria
#:hunchentoot
#:cl-json
#:parenscript
#:cl-containers
#+sbcl :sb-introspect)
:depends-on ("alexandria"
"hunchentoot"
"cl-json"
"parenscript"
"cl-containers"
#+sbcl "sb-introspect")
:components ((:file "package")
(:file "smackjack")
(:file "pusher")
Expand Down
4 changes: 2 additions & 2 deletions smackjack.lisp
Expand Up @@ -100,7 +100,7 @@ lisp function using ajax"))
:initarg :reply-external-format
:type flexi-streams::external-format
:accessor reply-external-format
:initform hunchentoot::+utf-8+
:initform hunchentoot::+utf-8+ ;;HT
:documentation "The format for the character output stream"))
(:documentation "The principal and controlling class of this
library. The programmer will instantiate this class, define the ajax
Expand All @@ -121,7 +121,7 @@ be loaded to the browser."))
One possible usage:
(push (create-ajax-dispatcher your-ajax-processor)
hunchentoot:*dispatch-table*)"))
(defmethod create-ajax-dispatcher ((processor ajax-processor))
(defmethod create-ajax-dispatcher ((processor ajax-processor)) ;HT
(create-prefix-dispatcher (server-uri processor)
#'(lambda () (process-ajax-request processor))))

Expand Down

0 comments on commit 16030ca

Please sign in to comment.