(define-structure servlet servlet-interface (open scheme-with-scsh servlets servlet-handler/admin httpd-responses httpd-requests url handle-fatal-error let-opt srfi-1 ;filter-map, last sort ) (begin (define remove-servlet-path (let ((regexp (rx ,(file-name-as-directory (options-servlet-path)) (submatch (* any))))) (lambda (file-name) (let ((match (regexp-search regexp file-name))) (if match (match:substring match 1) file-name))))) ;; returns two values: an action to perform out of ACTIONS and a ;; list of selected elements out of TABLE-ELEMENTS. (define (select-table title header header-row table-elements selector actions footer) (let* ((checkboxes (map (lambda (_) (make-checkbox-input-field)) table-elements)) (action-title "Choose an action") (select (make-select-input-field (cons action-title actions) '(@ (size 1)))) (req (send-html/suspend (lambda (new-url) `(html (title ,title) (body ,header (servlet-form ,new-url POST (table ,@(cons '(th) header-row) ,@(map (lambda (checkbox table-element) `(tr (td ,checkbox) ,@(selector table-element))) checkboxes table-elements)) (p ,select ,(make-submit-button "Do it"))) ,footer))))) (bindings (get-bindings req)) (action (input-field-value select bindings))) (if (string=? action action-title) (values #f #f req) (values action (filter-map (lambda (checkbox table-element) (if (input-field-value checkbox bindings) table-element #f)) checkboxes table-elements) req)))) (define (unload-servlets outdated? servlet-names) (if-outdated outdated? (show-outdated (make-callback show-servlets)) (for-each unload-servlet servlet-names))) (define (no-servlets) `(p "Currently, there are no servlets loaded " (URL ,(make-callback show-servlets) "(reload)") ", but there may be " (URL ,(make-callback show-sessions) "sessions") " you want to administer.")) (define (show-servlets req . maybe-update-text) (let* ((update-text (:optional maybe-update-text "")) (loaded-servlets (sort-list! (get-loaded-servlets) string? entry1 entry2) (session-id? entry1 entry2) (session-servlet-name