Simple hg hook to apply a local tag to a list of repos specified in a csv file (following format of fbf sources.csv file used in PDK builds). Used to create movable tags such as "S3_LATESTGOOD".
# $Id: UnicodeExt.pm,v 1.4 2003/07/30 13:39:23 matt Exp $
package XML::SAX::PurePerl::Reader;
use strict;
use Encode;
sub set_raw_stream {
my ($fh) = @_;
binmode($fh, ":bytes");
}
sub switch_encoding_stream {
my ($fh, $encoding) = @_;
binmode($fh, ":encoding($encoding)");
}
sub switch_encoding_string {
Encode::from_to($_[0], $_[1], "utf-8");
}
1;