`cat ~/diff-sunet/$num/log`
This commit is contained in:
parent
92dc531fa2
commit
64ef783d8d
|
@ -263,7 +263,7 @@
|
||||||
((string? data) (display data out))
|
((string? data) (display data out))
|
||||||
((list? data) (for-each (lambda (data) (display data out)) data))
|
((list? data) (for-each (lambda (data) (display data out)) data))
|
||||||
(else ;; We lose.
|
(else ;; We lose.
|
||||||
(display "Error in SUrflet output.\n" out))
|
(display "Error in SUrflet output: no valid data.\n" out))
|
||||||
))))
|
))))
|
||||||
(make-error-response (status-code internal-error) #f
|
(make-error-response (status-code internal-error) #f
|
||||||
"The SUrflet returned an invalid response object (no surflet-response)."))))
|
"The SUrflet returned an invalid response object (no surflet-response)."))))
|
||||||
|
|
|
@ -262,8 +262,8 @@
|
||||||
(attributes '() sxml-attribute?))
|
(attributes '() sxml-attribute?))
|
||||||
(let ((name (generate-input-field-name "select")))
|
(let ((name (generate-input-field-name "select")))
|
||||||
(if multiple?
|
(if multiple?
|
||||||
(make-multiple-select name select-options attributes)
|
(make-multiple-select name real-select-options attributes)
|
||||||
(make-single-select name select-options
|
(make-single-select name real-select-options
|
||||||
attributes))))))
|
attributes))))))
|
||||||
|
|
||||||
;; deprecated: Does not introduce further functionality.
|
;; deprecated: Does not introduce further functionality.
|
||||||
|
|
Loading…
Reference in New Issue