modifying xalan to output invalid XML 2007-05-21 - By keshlam@(protected)
You can't have a PI inside an attribute value. Period. But you could have a value that represents a PI
<auth name="<?php print $test ?>" />
and have a serializer that breaks the XML rule forcing that escaping, outputting the < and > characters instead.
______________________________________ "... Three things see no end: A loop with exit code done wrong, A semaphore untested, And the change that comes along. ..." -- "Threes" Rev 1.1 - Duane Elms / Leslie Fish (http://www.ovff.org/pegasus/songs/threes-rev-11.html) <html><body> <p><font size="4">You can't have a PI inside an attribute value. Period. But you could have a value that represents a PI</font> <p><font size="4"> <auth name="&lt;?php print $test ?&gt;" ; /><br> </font> <p><font size="4">and have a serializer that breaks the XML rule forcing that escaping, outputting the < and > characters instead.</font> <p><br> <br> ______________________________________<br> "... Three things see no end: A loop with exit code done wrong,<br> A semaphore untested, And the change that comes along. ..."<br> -- "Threes" Rev 1.1 - Duane Elms / Leslie Fish (<a href="http://www .ovff.org/pegasus/songs/threes-rev-11.html">http://www.ovff.org/pegasus/songs /threes-rev-11.html</a>)</body></html>
|
|