I have an instance where Apache::Admin::Config parses a modperl config
with <perl></perl> tags, and in the perl section there's some lines that
don't match the directive regex in Apache::Admin::Config::Trees::_parse
(elsif($line =~ /^(\w+)(?:\s+(.*?)|)$/)) but are valid Perl.
eg.
<perl>
App::Test->application()->start();
</perl>
Will work in Perl but not be allowed by Apache::Admin::Config because it
won't pass the directive regex in _parse(). Is it possible to update
Apache::Admin::Config to allow for these situations?
I'm thinking it's entirely possible you have no interest in
accommodating this, but figured it was worth checking.
Thanks for you time,
Dan