# File lib/mongrel/configurator.rb, line 232
232:     def load_mime_map(file, mime={})
233:       # configure any requested mime map
234:       mime = load_yaml(file, mime)
235: 
236:       # check all the mime types to make sure they are the right format
237:       mime.each {|k,v| log "WARNING: MIME type #{k} must start with '.'" if k.index(".") != 0 }
238: 
239:       return mime
240:     end