Skip Menu |

This queue is for tickets about the XML-Handler-AxPoint CPAN distribution.

Report information
The Basics
Id: 2117
Status: resolved
Priority: 0/
Queue: XML-Handler-AxPoint

People
Owner: Nobody in particular
Requestors: pete_barlow [...] ntlworld.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 1.30
Fixed in: (no value)



Subject: <source_code> wish
XML::Handler::AxPoint 1.30 running against 5.8.0 but that isn't important right now. Matt, would it be possible to remove the need to escape angle brackets inside <source_code> i.e I want to write <source_code> <test> <thing>aaaaaaaaaaaaaaaa</thing> </test> </source_code> instead of <source_code> &lt;test&gt; &lt;thing&gt;aaaaaaaaaaaaaaaa&lt;/thing&gt; &lt;/test&gt; </source_code> Hope this formats correctly and you can see what I mean, drop me a line if you can't
Date: Mon, 17 Feb 2003 11:42:53 +0000 (GMT)
From: Matt Sergeant <matt [...] sergeant.org>
To: Guest via RT <bug-XML-Handler-AxPoint [...] rt.cpan.org>
Subject: Re: [cpan #2117] <source_code> wish
RT-Send-Cc:
Your request unfortunately makes the format not XML, so it just wouldn't work. If you want that use CDATA or xinclude instead: <source-code><![CDATA[ <some> <tag/> </some> ]]></source-code> or: <source-code> <xi:include href="source.xml" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude"/> </source-code> The latter will probably only work with XML::LibXML::SAX though.