|
From: Grant M. <gr...@us...> - 2002-10-13 01:16:33
|
Update of /cvsroot/perl-xml/xml-simple/lib/XML
In directory usw-pr-cvs1:/tmp/cvs-serv1993/lib/XML
Added Files:
Simple.pm
Log Message:
- moved Simple.pm to lib/XML/Simple.pm
--- NEW FILE: Simple.pm ---
# $Id: Simple.pm,v 1.1 2002/10/13 01:16:31 grantm Exp $
package XML::Simple;
=head1 NAME
XML::Simple - Easy API to maintain XML (esp config files)
=head1 SYNOPSIS
use XML::Simple;
my $ref = XMLin([<xml file or string>] [, <options>]);
my $xml = XMLout($hashref [, <options>]);
Or the object oriented way:
require XML::Simple;
[...2304 lines suppressed...]
This version (1.09) is the current stable version.
=head1 SEE ALSO
B<XML::Simple> requires either B<XML::Parser> or B<XML::SAX>.
To generate documents with namespaces, B<XML::NamespaceSupport> is required.
The optional caching functions require B<Storable>.
=head1 COPYRIGHT
Copyright 1999-2002 Grant McLean E<lt>gr...@cp...<gt>
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|