/usr/share/racket/pkgs/plai-lib/web.rkt is in racket-common 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #lang scheme
(require plai/datatype
plai/test-harness
web-server/servlet
(prefix-in insta: web-server/insta/insta))
(provide (all-from-out plai/datatype)
(all-from-out web-server/servlet)
(except-out (all-from-out scheme) error #%module-begin)
(except-out (all-from-out plai/test-harness) plai-error)
(rename-out [plai-error error]
[insta:no-web-browser no-web-browser]
[insta:static-files-path static-files-path]
[insta:#%module-begin #%module-begin]))
|