2 # ikiwiki w3m cgi meta-wrapper
3 if (! exists $ENV{PATH_INFO} || ! length $ENV{PATH_INFO}) {
4 die "PATH_INFO should be set";
6 my $path=$ENV{PATH_INFO};
8 $path="$ENV{HOME}/.ikiwiki/wrappers/$path";
10 print "Content-type: text/html\n\n";
11 print "Cannot find ikiwiki wrapper: $path\n";
15 die "$path: exec error: $!";