-# $Id: Record.pm,v 1.20 2006-11-29 18:17:16 mike Exp $
+# $Id: Record.pm,v 1.21 2006-11-30 12:01:23 mike Exp $
package ZOOM::IRSpy::Record;
my $xml = "<irspy:$type";
foreach my $key (keys %info) {
- $xml .= " $key=\"" . $this->_string2cdata($info{$key}) . "\"";
+ $xml .= " $key=\"" . xml_encode($info{$key}) . "\"";
}
$xml .= ">" . isodate(time()) . "</irspy:$type>\n";
}
-# Yes, I know that this is already implemented in IRSpy.pm. I suggest that we
-# introduce a toolkit package with such subroutines...
-#
-sub _string2cdata {
- my ($this, $buffer) = @_;
- $buffer =~ s/&/&/gs;
- $buffer =~ s/</</gs;
- $buffer =~ s/>/>/gs;
- $buffer =~ s/"/"/gs;
- $buffer =~ s/'/'/gs;
-
- return $buffer;
-}
-
-
=head1 SEE ALSO
ZOOM::IRSpy