|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] XML::Writer 0.2, with Namespace support
I have just uploaded a new version of the XML::Writer module to the following location: http://www.megginson.com/Software/XML-Writer-0.2.tar.gz (It will also be appearing on CPAN as soon as it gets through the tests.) This version contains some significant new enhancements, including intelligent namespace support; for example, to create a document with Namespaces, you can use something like this: my $rdfns = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; my $dcns = "http://www.purl.org/dc#"; my $davidsurl = "http://home.sprynet.com/sprynet/dmeggins/"; $writer->startTag([$rdfns, 'RDF']); $writer->startTag([$rdfns, 'Description'], 'about' => 'http://www.megginson.com'); $writer->startTag([$dcns, 'Creator'], [$rdfns, 'resource'] => $davidsurl); $writer->endTag(); $writer->endTag(); $writer->endTag(); $writer->end(); The module will generate prefixes automatically; however, if you have certain preferred prefixes (like 'rdf' or 'dc') you can supply them in a map in the constructor: my $rdfns = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; my $dcns = "http://www.purl.org/dc#"; my $writer = new XML::Writer(NAMESPACES => 1, PREFIX_MAP => {$rdfns => 'rdf', $dcns => 'dc'}); There are also new query functions to obtain information about the current context. All the best, David -- David Megginson david@m... http://www.megginson.com/ xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i... Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1 To (un)subscribe, mailto:majordomo@i... the following message; (un)subscribe xml-dev To subscribe to the digests, mailto:majordomo@i... the following message; subscribe xml-dev-digest List coordinator, Henry Rzepa (mailto:rzepa@i...)
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||






