# File lib/celerity/util.rb, line 75 def content_type_for(path) if ct = java.net.URLConnection.getFileNameMap.getContentTypeFor(path) return ct else ContentTypes[File.extname(path).downcase] end end