# File lib/cgikit.rb, line 4678
        def url( name )
                if filepath = path(name) then
                        absolute = File.expand_path @web_server_resources
                        if filepath =~ /^#{absolute}/ then
                                url = filepath.sub(@document_root, '')
                                return url
                        end
                end

                nil
        end