• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

ChangesH A D24-Jan-20063.8 KiB

Makefile.PLH A D24-Jan-2006362

MANIFESTH A D24-Jan-200672

META.ymlH A D24-Jan-2006595

READMEH A D24-Jan-20061.2 KiB

t/H11-Apr-20133

TODOH A D24-Jan-2006490

Writer.pmH A D24-Jan-200638.3 KiB

README

1XML::Writer is a simple Perl module for writing XML documents: it
2takes care of constructing markup and escaping data correctly, and by
3default, it also performs a significant amount of well-formedness
4checking on the output, to make certain (for example) that start and
5end tags match, that there is exactly one document element, and that
6there are not duplicate attribute names.
7
8Here is an example:
9
10  my $writer = new XML::Writer();
11
12  $writer->startTag('greeting', 'type' => 'simple');
13  $writer->characters("Hello, world!");
14  $writer->endTag('greeting');
15  $writer->end();
16
17If necessary, error-checking can be turned off for production use.
18
19This release bumps the version number so the changes in the 0.4.x releases
20can automatically be picked up by CPAN users.
21
22See the Changes file for detailed changes between versions.
23
24Copyright (c) 1999 by David Megginson,
25copyright 2003 Ed Avis, <ed@membled.com> and others.
26Some fixes, and a rewritten test suite,
27copyright 2004, 2005 Joseph Walton <joe@kafsemo.org>
28
29Current development is hosted at <http://xml-writer-perl.berlios.de/>.
30
31This library is free software; you can redistribute it and/or modify
32it under the same terms as Perl itself.
33