dragonchild has asked for the wisdom of the Perl Monks concerning the following question:

Where can I find documentation for doing <TMPL_INCLUDE>-type stuff in XML? (Specifically, I'm using XML::Parser under Apache/mod_perl with taint-checking.) Right now, what I have is:
<?xml version="1.0" standalone="no" ?> <!DOCTYPE pdftemplate [ <!ENTITY footer SYSTEM "./footer.xml"> ]> # ... some XML here, including &footer;
The error I'm getting is:
Insecure $ENV{PATH} while running with -T switch at /some/path/perl5/5 +.00503/Cwd.pm line 82.
footer.xml is in the same directory as the main XML file.

------
We are the carpenters and bricklayers of the Information Age.

Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.