Author: eallen
Date: 2008-08-12 19:34:39 -0400 (Tue, 12 Aug 2008)
New Revision: 2288
Modified:
mgmt/trunk/cumin/python/wooly/pages.py
Log:
Added text/css response type for stylesheets
Modified: mgmt/trunk/cumin/python/wooly/pages.py
===================================================================
--- mgmt/trunk/cumin/python/wooly/pages.py 2008-08-12 21:37:06 UTC (rev 2287)
+++ mgmt/trunk/cumin/python/wooly/pages.py 2008-08-12 23:34:39 UTC (rev 2288)
@@ -92,6 +92,8 @@
type = "image/jpeg"
elif name.endswith(".html"):
type = "text/html"
+ elif name.endswith(".css"):
+ type = "text/css"
else:
type = "text/plain"
Show replies by date