# File lib/cgikit/command.rb, line 198
  def self.path_info( url )
    paths = url.split('/')
    ok = false
    infos = []
    paths.each do |path|
      if /#$0/ === path then
        ok = true
      elsif ok then
        infos << path
      end
    end
    path_info = "/#{infos.join('/')}"
    path_info
  end