Hi,
I have looked through http://perl.apache.org/docs/general/testing/testing.html
for a list of variables available for @@ substitution. After that I thought
the best documentation is the code and found in TestConfigParse.pm this
function:
sub apply_take1 {
my($self, $c, $directive) = @_;
if (exists $self->{vars}->{lc $directive}) {
#override replacement @Variables@
$self->{vars}->{lc $directive} = $c->{$directive};
}
else {
$self->spec_add_config($directive, qq("$c->{$directive}"));
}
}
Am I right that all variables from $self->{vars} can be used in @@
substitution? The next step would be to look a t/conf/apache_test_config.pm
which variables that are.
Wouldn't it be better to have a list with a short explanation in the
testing.html document?
My actual question was whether I can use @[EMAIL PROTECTED] I think the answer
is yes
but the way to get it is too complicated.
Torsten