Merge pull request #4106 from solgenomics/topic/wishlist
[sgn.git] / mason / homepage / tomato_genome_release.mas
blob9ab49e9f6228f9fe7f618879a8bd275481e75a43
1 <%doc>
3 =head1 NAME 
5 publication_of_the_week.mas - a mason module to display an html section with news, read from a file.
7 =head1 DESCRIPTION
9 The module does not require any parameters. If the file read does not succeed, an error message is displayed.
11 =head1 AUTHOR
13 Lukas Mueller <lam87@cornell.edu>
15 =cut
17 </%doc>
19 <%perl>
21 use strict;
22 use File::Spec;
23 use CXGN::Tools::File;
25 my $publication = "The tomato genome release information is currently unavailable.<br /><br />";
27 eval {
29  $publication = CXGN::Tools::File::read_commented_file(File::Spec->catfile($c->get_conf('homepage_files_dir'), "tomato_genome_release.txt"));
33 if ($@) { print "ERROR $@\n"; }
35 </%perl>
37 <div class="boxbgcolor1" style="margin:0px;">
38 <div class="boxheading">Current Tomato Genome version SL3.0 and Annotation ITAG3.10 <font color="red">       [ New ]</font>  </div>
40 <div class="boxcontent"><% $publication %>
42 </div>
43 </div>