Skip to content

Commit

Permalink
Patch from Eric Just to eliminate unecessary URL parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
lstein committed Jul 17, 2004
1 parent 412c3b3 commit 178e948
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,3 +1,5 @@
1.63
* Patch from Eric Just to eliminate unecessary URL arguments.
1.62 Mon Apr 5 09:43:25 EDT 2004
* Added request timeout option for very long requests.
* Added additional padding to prevent scales of xyplot glyph from being
Expand Down
8 changes: 5 additions & 3 deletions cgi-bin/gbrowse.PLS
Expand Up @@ -45,7 +45,7 @@ print OUT "use libs '$OPTIONS{LIB}'\n" if defined $OPTIONS{LIB};
# In the following, perl variables are not expanded during extraction.

print OUT <<'!NO!SUBS!';
# $Id: gbrowse.PLS,v 1.97 2004-06-24 18:13:26 lstein Exp $
# $Id: gbrowse.PLS,v 1.98 2004-07-17 16:51:35 lstein Exp $
use strict;
use Bio::Graphics;
Expand Down Expand Up @@ -412,8 +412,10 @@ sub main_display {
}
# print the top of the form, with navigation bar, etc
print start_form(-name=>'mainform',
-method=>'POST');
my $action = $source ? url()."/$source" : url();
print start_form(-name => 'mainform',
-action => $action,
-method => 'POST');
print navigation_table($segment,$page_settings);
print html_frag('html2',$segment,$page_settings);
Expand Down

0 comments on commit 178e948

Please sign in to comment.