# File lib/mongrel.rb, line 910 910: def load_mime_map(file, mime={}) 911: # configure any requested mime map 912: mime = load_yaml(file, mime) 913: 914: # check all the mime types to make sure they are the right format 915: mime.each {|k,v| log "WARNING: MIME type #{k} must start with '.'" if k.index(".") != 0 } 916: 917: return mime 918: end