-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.lisp
More file actions
31 lines (29 loc) · 781 Bytes
/
Copy pathpackage.lisp
File metadata and controls
31 lines (29 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;;;; package.lisp
(in-package :cl-user)
(defpackage #:smackjack
(:documentation "the one and only smackjack package. Contains all code
to run the ajax framework. ")
(:use #:cl #:hunchentoot #:parenscript #:alexandria)
(:shadowing-import-from #:parenscript :switch)
(:export
;; smackjack.lisp
#:ajax-processor
#:ajax-namespace
#:ajax-functions-namespace-p
#:ajax-function-prefix
#:ht-simple-ajax-symbols-p
#:json-args-p
#:server-uri
#:default-content-type
#:reply-external-format
#:ht-simple-ajax-processor
#:defun-ajax
#:create-ajax-dispatcher
#:generate-prologue
;; pusher.lisp
#:ajax-pusher
#:pusher-poll-namespace
#:pusher-poll-function-name
#:pusher-poll-interval
#:pusher-pushes-per-poll
#:defun-push))