equal
deleted
inserted
replaced
|
1 package XML::DOM::PerlSAX; |
|
2 use strict; |
|
3 |
|
4 BEGIN |
|
5 { |
|
6 if ($^W) |
|
7 { |
|
8 warn "XML::DOM::PerlSAX has been renamed to XML::Handler::DOM, " |
|
9 "please modify your code accordingly."; |
|
10 } |
|
11 } |
|
12 |
|
13 use XML::Handler::DOM; |
|
14 use vars qw{ @ISA }; |
|
15 @ISA = qw{ XML::Handler::DOM }; |
|
16 |
|
17 1; # package return code |
|
18 |
|
19 __END__ |
|
20 |
|
21 =head1 NAME |
|
22 |
|
23 XML::DOM::PerlSAX - Old name of L<XML::Handler::BuildDOM> |
|
24 |
|
25 =head1 SYNOPSIS |
|
26 |
|
27 See L<XML::DOM::BuildDOM> |
|
28 |
|
29 =head1 DESCRIPTION |
|
30 |
|
31 XML::DOM::PerlSAX was renamed to L<XML::Handler::BuildDOM> to comply |
|
32 with naming conventions for PerlSAX filters/handlers. |
|
33 |
|
34 For backward compatibility, this package will remain in existence |
|
35 (it simply includes XML::Handler::BuildDOM), but it will print a warning when |
|
36 running with I<'perl -w'>. |
|
37 |
|
38 =head1 AUTHOR |
|
39 |
|
40 Send bug reports, hints, tips, suggestions to Enno Derksen at |
|
41 <F<enno@att.com>>. |
|
42 |
|
43 =head1 SEE ALSO |
|
44 |
|
45 L<XML::Handler::BuildDOM>, L<XML::DOM> |
|
46 |