let forms do POST requests by default (currently unchangeable)
This commit is contained in:
parent
091f5ab590
commit
04ba0986d3
|
@ -177,6 +177,7 @@
|
||||||
parse-html-forms
|
parse-html-forms
|
||||||
sxml-to-html ; SXML->HTML
|
sxml-to-html ; SXML->HTML
|
||||||
srfi-1 ; FILTER
|
srfi-1 ; FILTER
|
||||||
|
(subset rfc822 (get-header))
|
||||||
(subset srfi-13 (string-index))
|
(subset srfi-13 (string-index))
|
||||||
sxml-tree-trans
|
sxml-tree-trans
|
||||||
url
|
url
|
||||||
|
|
|
@ -89,8 +89,8 @@
|
||||||
; (reset-instance-table!)
|
; (reset-instance-table!)
|
||||||
; (make-http-error-response http-status/accepted req "servlet cache cleared"))
|
; (make-http-error-response http-status/accepted req "servlet cache cleared"))
|
||||||
((or (string=? request-method "GET")
|
((or (string=? request-method "GET")
|
||||||
; (string=? request-method "POST")) ; do this at later time
|
(string=? request-method "POST")) ; do this at later time
|
||||||
)
|
; )
|
||||||
(let ((response
|
(let ((response
|
||||||
(if (resume-url? path-string)
|
(if (resume-url? path-string)
|
||||||
(resume-url path-string servlet-path req)
|
(resume-url path-string servlet-path req)
|
||||||
|
@ -119,11 +119,12 @@
|
||||||
(memo (make-memo)))
|
(memo (make-memo)))
|
||||||
(table-set! *instance-table* instance-id
|
(table-set! *instance-table* instance-id
|
||||||
(make-instance path-string ; used to make
|
(make-instance path-string ; used to make
|
||||||
; redirections to origin
|
; redirections to origin
|
||||||
memo
|
memo
|
||||||
(make-integer-table) ; continuation table
|
(make-integer-table) ; continuation table
|
||||||
(make-lock) ; continuation table lock
|
(make-lock) ; continuation table lock
|
||||||
(make-thread-safe-counter))) ; continuation counter
|
(make-thread-safe-counter) ; continuation counter
|
||||||
|
#f)) ; servlet-data
|
||||||
(release-lock *instance-table-lock*)
|
(release-lock *instance-table-lock*)
|
||||||
(register-session! instance-id 'no-return)
|
(register-session! instance-id 'no-return)
|
||||||
(let ((servlet
|
(let ((servlet
|
||||||
|
|
|
@ -41,27 +41,28 @@
|
||||||
(cond
|
(cond
|
||||||
((string=? request-method "GET")
|
((string=? request-method "GET")
|
||||||
(form-query (http-url:search (request:url request))))
|
(form-query (http-url:search (request:url request))))
|
||||||
; ((string=? request-method "POST")
|
((string=? request-method "POST")
|
||||||
; (let* ((content-length (get-content-length (request:headers request)))
|
(let* ((content-length (get-content-length (request:headers request)))
|
||||||
; (form-data (read-line **IN**)))
|
(input-port (socket:inport (request:socket request)))
|
||||||
; (form-query form-data)))
|
(form-data (read-string content-length input-port)))
|
||||||
|
(form-query form-data)))
|
||||||
(else
|
(else
|
||||||
(error "unsupported request type")))))
|
(error "unsupported request type")))))
|
||||||
|
|
||||||
;; Will be needed when we handle POST requests.
|
;; Will be needed when we handle POST requests.
|
||||||
;(define (get-content-length headers)
|
(define (get-content-length headers)
|
||||||
; (cond ((get-header headers 'content-length) =>
|
(cond ((get-header headers 'content-length) =>
|
||||||
; ;; adopted from httpd/cgi-server.scm
|
;; adopted from httpd/cgi-server.scm
|
||||||
; (lambda (content-length) ; Skip initial whitespace (& other non-digits).
|
(lambda (content-length) ; Skip initial whitespace (& other non-digits).
|
||||||
; (let ((first-digit (string-index content-length char-set:digit))
|
(let ((first-digit (string-index content-length char-set:digit))
|
||||||
; (content-length-len (string-length content-length)))
|
(content-length-len (string-length content-length)))
|
||||||
; (if first-digit
|
(if first-digit
|
||||||
; (number->string (substring content-length first-digit
|
(string->number (substring content-length first-digit
|
||||||
; content-length-len))
|
content-length-len))
|
||||||
; ;; http-status/bad-request req
|
;; http-status/bad-request req
|
||||||
; `(error "Illegal `Content-length:' header.")))))
|
`(error "Illegal `Content-length:' header.")))))
|
||||||
; (else
|
(else
|
||||||
; (error "No Content-length specified for POST data."))))
|
(error "No Content-length specified for POST data."))))
|
||||||
|
|
||||||
(define (extract-bindings bindings key)
|
(define (extract-bindings bindings key)
|
||||||
(let ((key (if (symbol? key) (symbol->string key) key)))
|
(let ((key (if (symbol? key) (symbol->string key) key)))
|
||||||
|
@ -144,7 +145,7 @@
|
||||||
(define (make-servlet-form call-back-function attributes elems)
|
(define (make-servlet-form call-back-function attributes elems)
|
||||||
`("<form" ,@(map (lambda (attribute-value)
|
`("<form" ,@(map (lambda (attribute-value)
|
||||||
((enattr (car attribute-value)) (cadr attribute-value)))
|
((enattr (car attribute-value)) (cadr attribute-value)))
|
||||||
`((method "GET")
|
`((method "POST")
|
||||||
(action ,call-back-function)
|
(action ,call-back-function)
|
||||||
,@attributes))
|
,@attributes))
|
||||||
#\> #\newline
|
#\> #\newline
|
||||||
|
|
Loading…
Reference in New Issue