#lang scheme/base
(require (planet untyped/unlib:3/require))
(define-library-aliases cce-scheme (planet cce/scheme:4:1) #:provide)
(define-library-aliases javascript (planet dherman/javascript:9:2) #:provide)
(define-library-aliases pprint (planet dherman/pprint:4) #:provide)
(define-library-aliases schemeunit (planet schematics/schemeunit:3) #:provide)
(define-library-aliases spgsql (planet schematics/spgsql:2) #:provide)
(define-library-aliases unlib (planet untyped/unlib:3:13) #:provide)
(require net/url
scheme/contract
scheme/match
srfi/19
srfi/26
(except-in (unlib-in debug exn time) time-utc->string time-tai->string))
(define quote-case-restriction
(make-parameter #f))
(define lowercase-quote-symbols
'(xml xml-attrs xml* xml-attrs* opt-xml opt-xml-attr js opt-js))
(define uppercase-quote-symbols
(for/list ([lower (in-list lowercase-quote-symbols)])
(string->symbol (string-upcase (symbol->string lower)))))
(define current-time-format
(make-parameter "~Y-~m-~d ~H:~M:~S"))
(provide (all-from-out net/url
scheme/contract
scheme/match
srfi/26)
(unlib-out debug exn time))
(provide/contract
[quote-case-restriction (parameter/c (or/c 'lower 'upper))]
[lowercase-quote-symbols (listof symbol?)]
[uppercase-quote-symbols (listof symbol?)]
[current-time-format (parameter/c (or/c string? (-> date? string?)))])