################################################################################
use strict;
-use vars qw($xml_dom_used);
+use vars qw(
+ $xml_dom_used
+ $VERSION
+);
-use Carp qw(croak confess);
+use Carp qw(
+ croak
+ confess
+);
BEGIN {
$xml_dom_used = eval q[
];
}
+################################################################################
+#
+# Version check
+#
+$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+
+
### sub new ####################################################################
#
# constructor
);
# remove newlines
- $scrap =~ s/\n|\r\n|\n\r|\r//g if ($no_nl);
+ #
+ $scrap =~ s/\015\012|\015|\012//g if ($no_nl);
# return
\$scrap;
return;
}
-# keeping 'require' happy
+# keep 'require' happy
1;
#
#
-### end of Template ############################################################
+### end of Template ############################################################
\ No newline at end of file