This module provides a way (as a mod_perl handler or running under vanilla CGI) to look at the path ($r->path_info or $ENV{PATH_INFO}) of the incoming request, parse off the desired module and it's run mode, create an instance of that module and run it.
path_info ベースの CGI::Application 用ディスパッチャ。URL の PATH_INFO を見て、どの CGI::Application サブクラスを、どの run mode で呼び出すかを判定する。mod_perl ハンドラとしても使うことができる、というか mod_perl ハンドラとして使うのが吉。
いつも mod_rewrite でやってたのでこれは便利かも。