# File src/HTTPServer.rb, line 36
                def in_mapfile?(path)
                        load_map_file if @mapfile.to_s != ''
                        m = URIRegex.match path
                        urlRoot = m[1]
                        urlRoot.chop! if m[2] unless urlRoot == '/'
                        @mappings.has_key? urlRoot
                end