34 lines
1.3 KiB
Factor
34 lines
1.3 KiB
Factor
! Copyright (C) 2004, 2005 Slava Pestov.
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
|
IN: httpd
|
|
USING: io hashtables kernel lists namespaces ;
|
|
|
|
: set-mime-types ( assoc -- )
|
|
"mime-types" global set-hash ;
|
|
|
|
: mime-types ( -- assoc )
|
|
"mime-types" global hash ;
|
|
|
|
: mime-type ( filename -- mime-type )
|
|
file-extension mime-types assoc [ "text/plain" ] unless* ;
|
|
|
|
[
|
|
[[ "html" "text/html" ]]
|
|
[[ "txt" "text/plain" ]]
|
|
[[ "xml" "text/xml" ]]
|
|
|
|
[[ "gif" "image/gif" ]]
|
|
[[ "png" "image/png" ]]
|
|
[[ "jpg" "image/jpeg" ]]
|
|
[[ "jpeg" "image/jpeg" ]]
|
|
|
|
[[ "jar" "application/octet-stream" ]]
|
|
[[ "zip" "application/octet-stream" ]]
|
|
[[ "tgz" "application/octet-stream" ]]
|
|
[[ "tar.gz" "application/octet-stream" ]]
|
|
[[ "gz" "application/octet-stream" ]]
|
|
|
|
[[ "factor" "application/x-factor" ]]
|
|
[[ "factsp" "application/x-factor-server-page" ]]
|
|
] set-mime-types
|