From: Grant M. <gr...@us...> - 2002-10-09 23:06:10
|
Update of /cvsroot/perl-xml/xml-filter-nsnormalise In directory usw-pr-cvs1:/tmp/cvs-serv17032 Modified Files: Changes MANIFEST Makefile.PL Log Message: - fixed fatal error on mapping to the same prefix the document already uses - added xmlnsnorm command-line utility - fixed typo in sample code Index: Changes =================================================================== RCS file: /cvsroot/perl-xml/xml-filter-nsnormalise/Changes,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Changes 9 Oct 2002 02:25:33 -0000 1.1.1.1 +++ Changes 9 Oct 2002 23:06:07 -0000 1.2 @@ -1,6 +1,12 @@ Revision history for Perl extension XML::Filter::NSNormalise. -0.01 Wed Oct 9 10:00:44 2002 +0.02 Thu Oct 10 + - added xmlnsnorm command-line utility + - fixed fatal error on mapping to the same prefix the document already uses + - fixed typo in sample code + - added extra examples/clarifcations in POD + +0.01 Wed Oct 9 - first release to CPAN - added tests - added POD Index: MANIFEST =================================================================== RCS file: /cvsroot/perl-xml/xml-filter-nsnormalise/MANIFEST,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- MANIFEST 9 Oct 2002 02:25:33 -0000 1.1.1.1 +++ MANIFEST 9 Oct 2002 23:06:07 -0000 1.2 @@ -2,6 +2,7 @@ Makefile.PL MANIFEST lib/XML/Filter/NSNormalise.pm +bin/xmlnsnorm README t/1_basic.t t/2_more.t Index: Makefile.PL =================================================================== RCS file: /cvsroot/perl-xml/xml-filter-nsnormalise/Makefile.PL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile.PL 9 Oct 2002 02:25:33 -0000 1.1.1.1 +++ Makefile.PL 9 Oct 2002 23:06:07 -0000 1.2 @@ -9,6 +9,7 @@ Test::Simple => 0.41, XML::SAX => undef, }, + 'EXE_FILES' => [ qw(bin/xmlnsnorm) ], ($] >= 5.005 ? ( AUTHOR => 'Grant McLean <gr...@cp...>', ABSTRACT_FROM => 'lib/XML/Filter/NSNormalise.pm', |