Changeset 3366
- Timestamp:
- 06/27/08 11:53:57 (7 months ago)
- Files:
-
- trunk/projects/lisp-ecoop/src/handlers.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/projects/lisp-ecoop/src/handlers.lisp
r3304 r3366 41 41 (with-http-response (:content-type "application/pdf") 42 42 (setf (content-length) (length pdf)) 43 (with-http-body (:external-format '(unsigned-byte 8)) 44 (write-sequence pdf *html-stream*))))) 43 (let ((stream (hunchentoot:send-headers))) 44 (write-sequence pdf stream) 45 (finish-output stream))))) 45 46 46 47 (defclass make-submission-handler (admin-only-handler page-handler)
