aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/Utils.pm
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-09-20 16:11:16 +0100
committerStruan Donald <struan@exo.org.uk>2011-09-20 16:11:16 +0100
commit77f31e8c96c727ea5ab9cf217cfd924074e8f3ed (patch)
tree71a4a47702e8afe5d84fbede43d7aff57ae11dbd /perllib/Utils.pm
parent227163b2ae15f90707c8e8d9be26daea6c7d2474 (diff)
parent891ce12c012e2c02e8f024f3701ca9ceef5a4bbf (diff)
Merge remote branch 'origin/master'
Diffstat (limited to 'perllib/Utils.pm')
-rw-r--r--perllib/Utils.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/perllib/Utils.pm b/perllib/Utils.pm
index c9afff186..954561a08 100644
--- a/perllib/Utils.pm
+++ b/perllib/Utils.pm
@@ -13,6 +13,7 @@ package Utils;
use strict;
use Encode;
+use File::Slurp qw();
use POSIX qw(strftime);
use mySociety::DBHandle qw(dbh);
use mySociety::GeoUtil;
@@ -262,4 +263,17 @@ sub _part {
}
}
+=head2 read_file
+
+Reads in a UTF-8 encoded file using File::Slurp and decodes it from UTF-8.
+This appears simplest, rather than getting confused with binmodes and so on.
+
+=cut
+sub read_file {
+ my $filename = shift;
+ my $data = File::Slurp::read_file( $filename );
+ $data = Encode::decode( 'utf8', $data );
+ return $data;
+}
+
1;