X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny%2FXML.pm;h=46060c4b3e2cc4791f9e35291f37f108ca6d3ded;hp=a5fc8819bfd5efc1d7464f25620fea9169b04a79;hb=c793253e5f2ad3ca9d60e96e07a5d87fa344ec31;hpb=92a04e78451078b33f75e7c44d247b024c27b4f7 diff --git a/lib/Config/Any/XML.pm b/lib/Config/Any/XML.pm index a5fc881..46060c4 100644 --- a/lib/Config/Any/XML.pm +++ b/lib/Config/Any/XML.pm @@ -3,6 +3,8 @@ package Config::Any::XML; use strict; use warnings; +use base 'Config::Any::Base'; + =head1 NAME Config::Any::XML - Load XML config files @@ -73,19 +75,34 @@ sub _coerce { $out; } -=head1 AUTHOR +=head2 requires_all_of( ) -=over 4 +Specifies that this module requires L in order to work. -=item * Brian Cassidy Ebricas@cpan.orgE +=cut -=item * Joel Bernstein Erataxis@cpan.orgE +sub requires_all_of { 'XML::Simple' } -=back +=head1 CAVEATS + +=head2 Strict Mode + +If, by some chance, L has already been loaded with the strict +flag turned on, then you will likely get errors as warnings will become +fatal exceptions and certain arguments to XMLin() will no longer be optional. + +See L for +more information. + +=head1 AUTHORS + +Brian Cassidy Ebricas@cpan.orgE + +Joel Bernstein Erataxis@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Brian Cassidy +Copyright 2006-2009 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.