# File lib/cgikit.rb, line 4691
        def path( name )
                resourcedir = [@resources, @web_server_resources]

                resourcedir.each do |dir|
                        filepath = File.join(dir, name).untaint
                        if FileTest.exist? filepath then
                                return File.expand_path(filepath).untaint
                        end
                end
                nil
        end