Convert a 2-arg open to 3-arg with basic error handling
[sgn.git] / mason / homepage / potato_genome_info.mas
blob958fa64a177f68ef7538a5740be9e419c88e04ca
3 <%doc>
5 Mason module that displays div of potato genome status information, based on the contents of a file.
6 Takes no arguments.
8 </%doc>
10 <%perl>
12 use File::Spec;
14 my $file;
15 my $html = "(Potato genome information currently not available)";
17 eval { $file = File::Spec->catfile($c->get_conf('homepage_files_dir'), 'potato_genome_info.txt');
18 $html = $m->file($file);
21 </%perl>
23 <% $html %>