From 217596b510fb388138000257ac0d81f548d37e33 Mon Sep 17 00:00:00 2001 From: mainzelm Date: Fri, 24 Oct 2003 08:16:07 +0000 Subject: [PATCH] Return text/css for files with .css extension. --- scheme/httpd/file-dir-handler.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/scheme/httpd/file-dir-handler.scm b/scheme/httpd/file-dir-handler.scm index ba13d62..1453472 100644 --- a/scheme/httpd/file-dir-handler.scm +++ b/scheme/httpd/file-dir-handler.scm @@ -502,6 +502,7 @@ ((string-ci=? ext ".htm") "text/html") ((string-ci=? ext ".html") "text/html") ((string-ci=? ext ".txt") "text/plain") + ((string-ci=? ext ".css") "text/css") ((string-ci=? ext ".doc") "application/msword") ((string-ci=? ext ".gif") "image/gif") ((string-ci=? ext ".png") "image/png")