--- loncom/homework/chemresponse.pm 2003/10/16 20:16:42 1.16 +++ loncom/homework/chemresponse.pm 2003/10/16 21:52:27 1.17 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # chemical equation style response # -# $Id: chemresponse.pm,v 1.16 2003/10/16 20:16:42 albertel Exp $ +# $Id: chemresponse.pm,v 1.17 2003/10/16 21:52:27 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -207,19 +207,34 @@ sub start_organicstructure { my $result; if ($target eq 'web') { my $width=&Apache::lonxml::get_param('width',$parstack,$safeeval); - my $height=&Apache::lonxml::get_param('height',$parstack,$safeeval); my $molecule=&Apache::lonxml::get_param('molecule',$parstack,$safeeval); my $options=&Apache::lonxml::get_param('options',$parstack,$safeeval); my $id=time.'_'.int(rand(1000)); $result=""; &Apache::lonnet::appenv( 'cgi.'.$id.'.JME' => &Apache::lonnet::escape($molecule), + 'cgi.'.$id.'.PNG' => 1, 'cgi.'.$id.'.WIDTH' => $width ); - + } elsif ($target eq 'tex') { + my $texwidth=&Apache::lonxml::get_param('texwidth',$parstack,$safeeval,1); + if (!$texwidth) { $texwidth='90'; } + my $molecule=&Apache::lonxml::get_param('molecule',$parstack,$safeeval); + my $options=&Apache::lonxml::get_param('options',$parstack,$safeeval); + my $filename = $ENV{'user.name'}.'_'.$ENV{'user.domain'}. + '_'.time.'_'.$$.int(rand(1000)).'_organicstructure'; + my $id=$filename; + &Apache::lonnet::appenv( + 'cgi.'.$id.'.JME' => &Apache::lonnet::escape($molecule), + 'cgi.'.$id.'.PS' => 1, + 'cgi.'.$id.'.WIDTH' => $texwidth ); + $id=&Apache::lonnet::escape($id); + &Apache::lonxml::register_ssi("/cgi-bin/convertjme.pl?$id"); + $result = '\graphicspath{{/home/httpd/perl/tmp/}}\includegraphics[width='.$texwidth.' mm]{'.$filename.'.eps}'; } elsif ($target eq 'edit') { $result .=&Apache::edit::tag_start($target,$token); $result .=&Apache::edit::text_arg('Width:','width',$token,5); $result .=&Apache::edit::text_arg('Height:','height',$token,5); + $result .=&Apache::edit::text_arg('TeXwidth:','texwidth',$token,5); $result .=''; $result .=&Apache::edit::text_arg('Molecule:','molecule',$token,40); my $molecule=&Apache::lonxml::get_param('molecule',$parstack, @@ -244,7 +259,7 @@ sub start_organicstructure { my $constructtag=&Apache::edit::get_new_args($token,$parstack, $safeeval,'molecule', 'width','height', - 'options'); + 'texwidth','options'); if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } } return $result;