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