improve debug output of 404 errors
[sgn.git] / cgi-bin / qtl / guide.pl
blob668125f4c76f7f32d576c667a8433d385898295f
1 use CatalystX::GlobalContext qw( $c );
2 #!/usr/bin/perl -w
4 =head1 DESCRIPTION
5 easy to remember url redirect to the googledoc QTL guidelines page;
7 =head1 AUTHOR
9 Isaak Y Tecle (iyt2@cornell.edu)
11 =cut
13 use strict;
14 use CGI;
16 my $redir = CGI->new()->redirect(-uri =>'http://docs.google.com/View?id=dgvczrcd_1c479cgfb', status=>301);
18 $c->forward_to_mason_view('/qtl/guide.mas', redir=>$redir);