• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H15-Jul-2011-738530

ChangesH A D15-Jul-20116.6 KiB160134

DOM.pmH A D23-Mar-20045.7 KiB255110

Generator.pmH A D15-Jul-201145 KiB1,571603

MANIFESTH A D22-Jun-2007157 109

META.ymlH A D15-Jul-2011474 2120

Makefile.PLH A D23-Mar-2004510 129

READMEH A D15-Jul-2011616 3324

README

1XML::Generator - A module to help in generating XML documents
2
3SYNOPSIS
4--------
5Lets you do this:
6
7	use XML::Generator  ':pretty';
8	print this(is(a(document())));
9
10To get this:
11
12	<this>
13	  <is>
14	    <a>
15	      <document />
16	    </a>
17	  </is>
18	</this>
19
20RECENT CHANGES
21------ -------
22
231.04     Fri Jul 15 08:35:00 2011
24        - Added the filter_invalid_chars option, which is turned on by default
25          under strict mode.
26
27
28COPYRIGHT
29---------
30Copyright 1999-2011 Benjamin Holzman. All rights reserved.
31This program is free software; you can redistribute it and/or
32modify it under the same terms as Perl itself.
33