Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pusher.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ on page load")
:accessor push-default-sessions
:initarg :default-sessions
:initform :acceptor-sessions
:type '(member :current-session :acceptor-sessions
:acceptor-sessions-except-current)
:type (member :current-session :acceptor-sessions
:acceptor-sessions-except-current)
:documentation "If a push function is called and the hunchentoot
sessions are not specified, this will determine which in sessions the push call
happens on the client side."))
Expand Down
6 changes: 3 additions & 3 deletions smackjack.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
:accessor http-method
:initarg :method
:initform :get
:type '(member :post :get)
:type (member :post :get)
:documentation "http method of the lisp ajax function")
(callback-data
:accessor callback-data
:initarg :callback-data
:initform :response-xml
:type '(member :request-object :response-xml :response-text
:response-xml-text :json)
:type (member :request-object :response-xml :response-text
:response-xml-text :json)
:documentation "argument passed to callback function from ajax response.
Content-type should correspond.")
(content-type
Expand Down