From: tla Date: Thu, 27 Nov 2014 15:44:21 +0000 (+0100) Subject: send ASCII-only requests to Stemweb. Issue #46 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2Fstemmaweb.git;a=commitdiff_plain;h=0f254bdcd38a3944a498c5d9f5119d65ceb75385 send ASCII-only requests to Stemweb. Issue #46 --- diff --git a/lib/stemmaweb/Controller/Stemweb.pm b/lib/stemmaweb/Controller/Stemweb.pm index 42126ec..262f235 100644 --- a/lib/stemmaweb/Controller/Stemweb.pm +++ b/lib/stemmaweb/Controller/Stemweb.pm @@ -276,7 +276,7 @@ sub request :Local :Args(0) { } else { # Form the request for Stemweb. my $return_uri = URI->new( $c->uri_for( '/stemweb/result' ) ); - my $tsv_options = { noac => 1 }; + my $tsv_options = { noac => 1, ascii => 1 }; if( $mergetypes && @$mergetypes ) { $tsv_options->{mergetypes} = $mergetypes; }