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