--- loncom/homework/randomlabel.pm 2002/07/22 17:15:55 1.31 +++ loncom/homework/randomlabel.pm 2002/08/27 18:21:27 1.36 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # random labelling tool # -# $Id: randomlabel.pm,v 1.31 2002/07/22 17:15:55 sakharuk Exp $ +# $Id: randomlabel.pm,v 1.36 2002/08/27 18:21:27 sakharuk Exp $ # # Copyright Michigan State University Board of Trustees # @@ -60,6 +60,7 @@ package Apache::randomlabel; use Apache::lonnet; use strict; use Apache::edit; +use Apache::File(); BEGIN { &Apache::lonxml::register('Apache::randomlabel',('randomlabel','labelgroup','location','label')); @@ -106,21 +107,44 @@ sub start_randomlabel { $result.="\n"; $result.="\n"; } elsif ($target eq 'tex') { + my $newbgimg = $bgimg; $bgimg=~s/(.gif|.jpg)$/.eps/; $bgimg= &Apache::lonnet::filelocation($bgimg); if (not $ENV{'request.role'}=~/^au\./) { $bgimg=~s/http:\/[^\/]*/\/home\/httpd\/html/; + $bgimg=~s/\/$//; + #if no eps file try to replicate it + if (not-e $bgimg) { + my $response = &Apache::lonnet::repcopy($bgimg); + #if replication failed try to find ps file + if (not-e $bgimg) { + $bgimg=~s/\.eps$/\.ps/; + #if no ps file try to replicate it + if (not-e $bgimg) { + $response = &Apache::lonnet::repcopy($bgimg); + #if replication failed try to produce eps file dynamically + $bgimg=~s/\.ps$/\.eps/; + my $temp_file; + my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout.dat"; + $temp_file = Apache::File->new('>>'.$filename); + $newbgimg =~ s/(.*)\/res\//\/home\/httpd\/html\/res\//; + print $temp_file "$newbgimg\n"; + $bgimg =~ m/\/([^\/]+)$/; + $bgimg = '/home/httpd/prtspool/'.$1; + } + } + } } else { $bgimg=~s/http:\/[^\/]*\/~([^\/]+)/\/home\/$1\/public_html/; - } $bgimg=~s/\/$//; + my $dirtywidth=$texwidth+5; if ($texwidth==90) { - $result.='\vspace*{2mm} \noindent \epsfxsize='.$texwidth.' mm \epsffile{'. - $bgimg.'}\setlength{\unitlength}{1mm} \begin{picture}('.$texwidth.','.$texwidth*$h/$w.')'; + $result.='\vspace*{2mm}\noindent \parbox{'.$dirtywidth.' mm}{ \noindent \epsfxsize='.$texwidth.' mm \epsffile{'. + $bgimg.'}\setlength{\unitlength}{1mm} \begin{picture}('.$texwidth.','.$texwidth*$h/$w.')(0,-'.$texwidth*$h/$w.')'; } else { - $result.='\vspace*{2mm} \noindent \epsfxsize='.$texwidth.' mm \epsffile{'. - $bgimg.'}\setlength{\unitlength}{1mm} \begin{picture}('.$texwidth.','.$texwidth*$h/$w.')('.(100-$texwidth).','.(100-$texwidth)*$h/$w.')'; + $result.='\vspace*{2mm}\noindent \parbox{'.$dirtywidth.' mm}{ \noindent \epsfxsize='.$texwidth.' mm \epsffile{'. + $bgimg.'}\setlength{\unitlength}{1mm} \begin{picture}('.$texwidth.','.$texwidth*$h/$w.')(0,-'.$texwidth*$h/$w.')'; } } elsif ($target eq 'edit') { $result.=&Apache::edit::tag_start($target,$token); @@ -155,12 +179,15 @@ sub end_randomlabel { if( $count != 0) { $result.= "\n"; } $result .= "\n
"; } elsif ($target eq 'tex') { - $result='\end{picture}\\\\'; - if (@$parstack[-1]=~/\$texwidth\s*=\s*?"90/) { #" + $result='\end{picture}\\\\}'; @$parstack[-1]=~/\$height\s*=\s*?"(.+)?"/; - my $howtoskipback = $1/45; - $result.=' \vskip -'.$howtoskipback.' cm '; - } + my $one=$1; + @$parstack[-1]=~/\$width\s*=\s*?"(.+)?"/; + my $two=$1; + @$parstack[-1]=~/\$texwidth\s*=\s*?"(.+)?"/; + my $three=$1; + my $howtoskipback = $three*$one/$two; + $result.=' \vskip -'.$howtoskipback.' mm '; } elsif ($target eq 'edit') { $result.=&Apache::edit::end_table; } @@ -283,10 +310,10 @@ sub end_labelgroup { my $y = $Apache::randomlabel::ycoord[$i]; my $value = $Apache::randomlabel::value[$i]; #x latex coordinate - my $tcX=($x-5)*($texwidth/$wwidth); + my $tcX=($x)*($texwidth/$wwidth); #y latex coordinate - my $ratio=($wwidth > 0 ? $wheight/$wwidth : 1 ); - my $tcY=$TY1-$y*($TY1/$wheight)+$texwidth*$ratio; +# my $ratio=($wwidth > 0 ? $wheight/$wwidth : 1 ); + my $tcY=$TY1-$y*($TY1/$wheight); $tcX=sprintf('%.2f',$tcX); $tcY=sprintf('%.2f',$tcY); $result.='\put('.$tcX.','.$tcY.'){\normalsize \bf '.$label.'}'."\n";