--- loncom/interface/loncommon.pm 2003/10/04 22:34:02 1.124 +++ loncom/interface/loncommon.pm 2003/10/09 22:07:08 1.127 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.124 2003/10/04 22:34:02 www Exp $ +# $Id: loncommon.pm,v 1.127 2003/10/09 22:07:08 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1509,7 +1509,10 @@ returns description of a specified langu =cut sub languagedescription { - return $language{shift(@_)}; + my $code=shift; + return ($supported_language{$code}?'* ':''). + $language{$code}. + ($supported_language{$code}?' ('.&mt('interface available').')':''); } =pod @@ -2656,6 +2659,60 @@ sub check_if_partid_hidden { return undef; } +############################################################ +############################################################ + +=pod + +=item DrawGraph + +Returns a link to cgi-bin/graph + +=cut + +############################################################ +############################################################ +sub DrawGraph { + my ($Title,$xlabel,$ylabel,$Max,$values1,$values2)=@_; + # + my $identifier = time.'_'.int(rand(1000)); + if (! defined($values1) || ref($values1) ne 'ARRAY') { + return ''; + } + # + $Title = '' if (! defined($Title)); + $xlabel = '' if (! defined($xlabel)); + $ylabel = '' if (! defined($ylabel)); + $Title = &Apache::lonnet::escape($Title); + $xlabel = &Apache::lonnet::escape($xlabel); + $ylabel = &Apache::lonnet::escape($ylabel); + # + my $data1 = join(',', @$values1); + my $data2; + if (defined($values2)) { + $data2 = join(',', @$values2); + } + # + my $NumBars = scalar(@$values1); + $Max = 1 if ($Max < 1); + if ( int($Max) < $Max ) { + $Max++; + $Max = int($Max); + } + # + &Apache::lonnet::appenv($identifier.'.title' => $Title, + $identifier.'.xlabel' => $xlabel, + $identifier.'.ylabel' => $ylabel, + $identifier.'.Max' => $Max, + $identifier.'.NumBars' => $NumBars, + $identifier.'.data1' => $data1, + $identifier.'.data2' => $data2); + return ''; +} + +############################################################ +############################################################ + =pod =back