-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Three updates for HT. #170
Conversation
Does "Respect the "Content-Length" header when parsing form data." still just produces an error? |
create-folder-dispatcher-and-handler is exported, changing from &optional to &key is a no go. |
That fixes requests with "Content-length: 0" but including a MIME boundary; Firefox sends that when uploading files that the user can't read (eg wrong owner); HT hangs waiting on the MIME boundaries, although the C-l should implicicate there won't be any.
My usecase is to provide some caching headers by passing this callback: (lambda (path content-type) (declare (ignore path content-type)) (setf (hunchentoot:header-out "Cache-Control") "max-age=864000")) Sadly there've been &optional args; so, to avoid mixing &optional and &key args new function names are required.
So what happens with Content-length: 0? Does it still work? |
Compared to #164 |
So? |
Sorry about the delay. I haven't forgotten, I just don't find a large enough block of time to concentrate on that. |
Oh, thanks a lot! |
Thank you!