Changeset 76
- Timestamp:
- 08/26/08 11:08:35 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/main/connectors/hunchentoot/src/hunchentoot.lisp
r56 r76 30 30 (in-package :hunchentoot-connector) 31 31 32 (setf hunchentoot:*hunchentoot-default-external-format* (flex:make-external-format :utf-8 :eol-style :lf)) 33 (setf hunchentoot:*default-content-type* "text/html; charset=utf-8") 32 (setf hunchentoot:*hunchentoot-default-external-format* (flex:make-external-format :utf-8 :eol-style :lf) 33 hunchentoot:*default-content-type* "text/html; charset=utf-8" 34 hunchentoot:*handle-http-errors-p* nil) 34 35 35 36 (defgeneric claw-to-hunchentoot-cookie (claw-cookie) … … 314 315 (defmethod (setf connector-reply-external-format-encoding) (value (connector hunchentoot-connector)) 315 316 (let ((encoding (flexi-streams:external-format-name (hunchentoot:reply-external-format)))) 316 ;(log-message :info "ENCODING: ~a| VALUE: ~a" encoding value)317 317 (unless (and (null value) (equal encoding value)) 318 318 (setf (hunchentoot:reply-external-format) … … 321 321 (defmethod connector-writer ((connector hunchentoot-connector)) 322 322 (hunchentoot:send-headers)) 323 ;*standard-output*)324 323 325 324 (defmethod connector-redirect ((connector hunchentoot-connector) target &key host port protocol add-session-id code)
