--- loncom/localize/lonlocal.pm 2004/02/18 23:33:17 1.31 +++ loncom/localize/lonlocal.pm 2005/11/10 19:19:51 1.35 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Localization routines # -# $Id: lonlocal.pm,v 1.31 2004/02/18 23:33:17 albertel Exp $ +# $Id: lonlocal.pm,v 1.35 2005/11/10 19:19:51 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -206,11 +206,16 @@ sub current_language { # ============================================================== What encoding? sub current_encoding { + my $default='UTF-8'; + if ($Apache::lonnet::env{'browser.os'} eq 'win' && + $Apache::lonnet::env{'browser.type'} eq 'explorer') { + $default='ISO-8859-1'; + } if ($lh) { my $enc=$lh->maketext('char_encoding'); - return ($enc eq 'char_encoding'?'':$enc); + return ($enc eq 'char_encoding'?$default:$enc); } else { - return undef; + return $default; } } @@ -254,11 +259,14 @@ sub get_language_handle { } # ========================================================== Localize localtime +sub gettimezone { + return ' ('.$Apache::lonnet::env{'server.timezone'}.')'; +} sub locallocaltime { my $thistime=shift; if ((¤t_language=~/^en/) || (!$lh)) { - return ''.localtime($thistime); + return ''.localtime($thistime).&gettimezone(); } else { my $format=$lh->maketext('date_locale'); if ($format eq 'date_locale') { @@ -288,7 +296,7 @@ sub locallocaltime { 'month','weekday','ampm') { $format=~s/\$$_/eval('$'.$_)/gse; } - return $format; + return $format.&gettimezone(); } }