X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fhelp.html;h=c2113560e4ea76b2cf48136d960779ee0fb2520c;hp=1ebf917998e54a7b7a5a9e65900dac39fa87b5b1;hb=7f4706a4bbb2a31f946c17173acef373a672a5b2;hpb=ae841c563fa70598176291605ebcb8199a50eb41 diff --git a/web/htdocs/help.html b/web/htdocs/help.html index 1ebf917..c211356 100644 --- a/web/htdocs/help.html +++ b/web/htdocs/help.html @@ -1,4 +1,4 @@ -%# $Id: help.html,v 1.2 2006-12-04 15:41:23 mike Exp $ +%# $Id: help.html,v 1.5 2006-12-06 14:07:17 mike Exp $ <%args> $help @@ -35,7 +35,7 @@ asks and answers the question: Not that I know of, other than using javascript. -Nice one, W3C! Way to improve portability! +Nice one, W3C! Way to improve cross-browser portability! IRSpy help: <% $help %>

IRSpy help: <% $help %>

-% $m->comp("/help/$help.html"); -

+<%perl> +my @path = split /\//, $help; +foreach my $i (0 .. $#path) { + my $partialPath = join("/", @path[0..$#path-$i]); + eval { $m->comp("/help/$partialPath.html") }; + print "

[No help for '$partialPath']

\n" if $@; +} + +