repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changed trials-in-common page to use a single database query to get analyses. Changed...
[sgn.git]
/
mason
/
homepage
/
other_links.mas
blob
d6d65ee5e88f757ca4632a1f0c923917b29dd080
1
<%perl>
2
3
use strict;
4
use CXGN::Tools::File;
5
6
my $documents_folder = $c->get_conf('homepage_files_dir');
7
8
my $OTHER_LINKS = "Other links are currently not available.";
9
10
11
eval {
12
$OTHER_LINKS=CXGN::Tools::File::read_commented_file("$documents_folder/other_links.txt");
13
};
14
15
16
print $OTHER_LINKS;
17
18
</%perl>