version 1.8, 2003/06/30 20:58:52
|
version 1.19, 2003/10/18 07:24:35
|
Line 51 SMILESECTION
|
Line 51 SMILESECTION
|
JMESECTION |
JMESECTION |
} |
} |
|
|
|
if ($molecule) { $molecule='<param name="jme" value="'.$molecule.'" />'; } |
my $body=<<CHEMPAGE; |
my $body=<<CHEMPAGE; |
<html> |
<html> |
<head> |
<head> |
Line 75 function openHelpWindow() {
|
Line 76 function openHelpWindow() {
|
<center> |
<center> |
<applet code="JME.class" name="JME" archive="/adm/jme/JME.jar" width="97%" height="78%"> |
<applet code="JME.class" name="JME" archive="/adm/jme/JME.jar" width="97%" height="78%"> |
You have to enable Java and JavaScript on your machine. |
You have to enable Java and JavaScript on your machine. |
<param name="jme" value="$molecule" /> |
$molecule |
<param name="options" value="$options" /> |
<param name="options" value="$options" /> |
</applet><br /> |
</applet><br /> |
<font face="arial,helvetica,sans-serif" size=-1><a href="http://www.molinspiration.com/jme/index.html">JME Editor</a> courtesy of Peter Ertl, Novartis</font> |
<font face="arial,helvetica,sans-serif" size=-1><a href="http://www.molinspiration.com/jme/index.html">JME Editor</a> courtesy of Peter Ertl, Novartis</font> |
Line 112 sub start_organicresponse {
|
Line 113 sub start_organicresponse {
|
$molecule=&Apache::lonxml::get_param('molecule',$parstack, |
$molecule=&Apache::lonxml::get_param('molecule',$parstack, |
$safeeval); |
$safeeval); |
} |
} |
my $multipart=&Apache::lonxml::get_param('multipart',$parstack, |
my $options=&Apache::lonxml::get_param('options',$parstack, |
$safeeval); |
$safeeval); |
if ($multipart eq 'yes') { |
$result=&seperate_jme_window("HWVAL_$id","MOLECULE_$id",$molecule,$options); |
$multipart = 'multipart'; |
|
} else { |
|
$multipart =''; |
|
} |
|
$result=&seperate_jme_window("HWVAL_$id","MOLECULE_$id",$molecule,$multipart); |
|
$result.= '<input type="hidden" name="MOLECULE_'.$id.'" value="" />'; |
$result.= '<input type="hidden" name="MOLECULE_'.$id.'" value="" />'; |
} elsif ($target eq 'edit') { |
} elsif ($target eq 'edit') { |
$result .=&Apache::edit::tag_start($target,$token); |
$result .=&Apache::edit::tag_start($target,$token); |
|
my $options=&Apache::lonxml::get_param('options',$parstack, |
|
$safeeval); |
|
if ($options !~ /multipart/) { $options.=',multipart'; } |
$result .='<nobr>'. |
$result .='<nobr>'. |
&Apache::edit::text_arg('Starting Molecule:','molecule', |
&Apache::edit::text_arg('Starting Molecule:','molecule', |
$token,40); |
$token,40); |
Line 130 sub start_organicresponse {
|
Line 129 sub start_organicresponse {
|
$safeeval); |
$safeeval); |
$result .=&seperate_jme_window(undef, |
$result .=&seperate_jme_window(undef, |
&Apache::edit::html_element_name('molecule'), |
&Apache::edit::html_element_name('molecule'), |
$molecule,'multipart'); |
$molecule,$options); |
$result .='</nobr><br /><nobr>'; |
$result .='</nobr><br /><nobr>'; |
$result .=&Apache::edit::text_arg('Correct Answer:','answer', |
$result .=&Apache::edit::text_arg('Correct Answer:','answer', |
$token,40); |
$token,40); |
Line 140 sub start_organicresponse {
|
Line 139 sub start_organicresponse {
|
$result .=&seperate_jme_window( |
$result .=&seperate_jme_window( |
&Apache::edit::html_element_name('answer'), |
&Apache::edit::html_element_name('answer'), |
&Apache::edit::html_element_name('jmeanswer'), |
&Apache::edit::html_element_name('jmeanswer'), |
$jmeanswer,'multipart'); |
$jmeanswer,$options); |
$result .='</nobr>'. |
$result .='</nobr><br />'; |
&Apache::edit::select_arg('Multipart:','multipart', |
$result .=&Apache::edit::checked_arg('Options:','options', |
['no','yes'],$token); |
[ ['autoez','Auto E,Z sterochemistry'], |
|
['multipart','Multipart Structures'], |
|
['nostereo','No stereochemistry'], |
|
['reaction','Is a reaction'], |
|
['number','Able to number atoms'] ], |
|
,$token); |
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
} elsif ($target eq 'modified') { |
} elsif ($target eq 'modified') { |
my $constructtag=&Apache::edit::get_new_args($token,$parstack, |
my $constructtag=&Apache::edit::get_new_args($token,$parstack, |
$safeeval,'molecule', |
$safeeval,'molecule', |
'answer','jmeanswer', |
'answer','jmeanswer', |
'multipart'); |
'options'); |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
} |
} |
return $result; |
return $result; |
Line 164 sub end_organicresponse {
|
Line 168 sub end_organicresponse {
|
if ( $response =~ /[^\s]/) { |
if ( $response =~ /[^\s]/) { |
my $partid = $Apache::inputtags::part; |
my $partid = $Apache::inputtags::part; |
my $id = $Apache::inputtags::response['-1']; |
my $id = $Apache::inputtags::response['-1']; |
my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval); |
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
my %previous = &Apache::response::check_for_previous($response,$partid,$id); |
my %previous = &Apache::response::check_for_previous($response,$partid,$id); |
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
&Apache::lonxml::debug("submitted a $response for $answer<br \>\n"); |
|
my $ad; |
my $ad; |
if ($response eq $answer) { |
foreach my $answer (@answers) { |
$ad='EXACT_ANS'; |
&Apache::lonxml::debug("submitted a $response for $answer<br \>\n"); |
} else { |
if ($response eq $answer) { |
$ad='INCORRECT'; |
$ad='EXACT_ANS'; |
|
last; |
|
} else { |
|
$ad='INCORRECT'; |
|
} |
} |
} |
&Apache::response::handle_previous(\%previous,$ad); |
&Apache::response::handle_previous(\%previous,$ad); |
$Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad; |
$Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad; |
Line 180 sub end_organicresponse {
|
Line 187 sub end_organicresponse {
|
} |
} |
} elsif ($target eq "edit") { |
} elsif ($target eq "edit") { |
$result.= &Apache::edit::tag_end($target,$token,''); |
$result.= &Apache::edit::tag_end($target,$token,''); |
|
} elsif ($target eq 'answer') { |
|
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack, |
|
$safeeval); |
|
$result.=&Apache::response::answer_header('organicresponse'); |
|
foreach my $answer (@answers) { |
|
$result.=&Apache::response::answer_part('organicresponse',$answer); |
|
} |
|
$result.=&Apache::response::answer_footer('organicresponse'); |
} |
} |
&Apache::response::end_response; |
&Apache::response::end_response; |
return $result; |
return $result; |
Line 190 sub start_organicstructure {
|
Line 205 sub start_organicstructure {
|
my $result; |
my $result; |
if ($target eq 'web') { |
if ($target eq 'web') { |
my $width=&Apache::lonxml::get_param('width',$parstack,$safeeval); |
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 $molecule=&Apache::lonxml::get_param('molecule',$parstack,$safeeval); |
$result=<<CHEMOUTPUT; |
my $options=&Apache::lonxml::get_param('options',$parstack,$safeeval); |
<applet code="JME.class" archive="/adm/jme/JME.jar" width="$width" height="$height"> |
my $id=time.'_'.int(rand(1000)); |
<param name="options" value="depict border" /> |
$result="<img src='/cgi-bin/convertjme.pl?$id'"; |
<param name="jme" value="$molecule" /> |
if ($options =~ /border/) { $result.= ' border="1"'; } |
</applet> |
$result.=' />'; |
CHEMOUTPUT |
&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') { |
} elsif ($target eq 'edit') { |
$result .=&Apache::edit::tag_start($target,$token); |
$result .=&Apache::edit::tag_start($target,$token); |
$result .=&Apache::edit::text_arg('Width:','width',$token,5); |
$result .=&Apache::edit::text_arg('Width:','width',$token,5); |
$result .=&Apache::edit::text_arg('Height:','height',$token,5); |
$result .=&Apache::edit::text_arg('Height:','height',$token,5); |
|
$result .=&Apache::edit::text_arg('TeXwidth:','texwidth',$token,5); |
|
$result .='<nobr>'; |
$result .=&Apache::edit::text_arg('Molecule:','molecule',$token,40); |
$result .=&Apache::edit::text_arg('Molecule:','molecule',$token,40); |
my $molecule=&Apache::lonxml::get_param('molecule',$parstack, |
my $molecule=&Apache::lonxml::get_param('molecule',$parstack, |
$safeeval); |
$safeeval); |
|
my $options=&Apache::lonxml::get_param('options',$parstack, |
|
$safeeval); |
|
if ($options !~ /reaction/) { |
|
$options.= ',multipart,number'; |
|
} |
|
|
$result .=&seperate_jme_window(undef, |
$result .=&seperate_jme_window(undef, |
&Apache::edit::html_element_name('molecule'), |
&Apache::edit::html_element_name('molecule'), |
$molecule,'multipart'); |
$molecule,$options); |
|
$result.="</nobr><br />"; |
|
$result .=&Apache::edit::checked_arg('Options:','options', |
|
[ ['reaction','Is a reaction'], |
|
['border','Draw a border'] ], |
|
$token); |
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
} elsif ($target eq 'modified') { |
} elsif ($target eq 'modified') { |
my $constructtag=&Apache::edit::get_new_args($token,$parstack, |
my $constructtag=&Apache::edit::get_new_args($token,$parstack, |
$safeeval,'molecule', |
$safeeval,'molecule', |
'width','height'); |
'width','height', |
|
'texwidth','options'); |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
} |
} |
return $result; |
return $result; |
Line 227 sub end_organicstructure {
|
Line 273 sub end_organicstructure {
|
return $result; |
return $result; |
} |
} |
|
|
|
sub edit_reaction_button { |
|
my ($id,$field,$reaction)=@_; |
|
my $id_es=&Apache::lonnet::escape($id); |
|
my $field_es=&Apache::lonnet::escape($field); |
|
my $reaction_es=&Apache::lonnet::escape($reaction); |
|
my $result=<<EDITREACTION; |
|
<script type="text/javascript"> |
|
function create_reaction_window_${id}_${field} () { |
|
editor=window.open('','','width=500,height=270,scrollbars=no,resizable=yes'); |
|
editor.document.open('text/html','replace'); |
|
editor.document.writeln('<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><html> <head><title>LON-CAPA Reaction Editor</title></head><frameset rows="30%,*" border="0"> <frame src="/res/adm/pages/reactionresponse/reaction_viewer.html" name="viewer" scrolling="no" /> <frame src="/res/adm/pages/reactionresponse/reaction_editor.html?reaction=$reaction_es&id=$id_es&field=$field_es" name="editor" scrolling="no" /> </frameset> </html>'); |
|
} |
|
</script> |
|
<input type='button' value='Edit Reaction' onClick="javascript:create_reaction_window_${id}_${field}();void(0);" /> |
|
EDITREACTION |
|
return $result; |
|
} |
|
|
sub start_reactionresponse { |
sub start_reactionresponse { |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $result; |
my $result; |
my $id = &Apache::response::start_response($parstack,$safeeval); |
my $id = &Apache::response::start_response($parstack,$safeeval); |
if ($target eq 'web') { |
if ($target eq 'meta') { |
$result.=<<EDITREACTION; |
} elsif ($target eq 'web') { |
<input type='button' value='Edit Reaction' onClick="javascript:editor=window.open('/res/adm/reactionresponse/reaction_window.html','','width=500,height=270,scrollbars=no,resizable=yes'); document.cookie='problem=$id';" /> |
my $partid = $Apache::inputtags::part; |
EDITREACTION |
my $id = $Apache::inputtags::response['-1']; |
|
my $reaction=$Apache::lonhomework::history{"resource.$partid.$id.submission"}; |
# $result.=&reaction_javascript(); |
$result.=&edit_reaction_button($id,"HWVAL_$id",$reaction); |
# $result.='<iframe name="REACTION_'.$id.'" width="200" height="100" src="/adm/jme/reaction_viewer.html"></iframe>'; |
|
# $result.='<input type="button" value="Check" onClick = "javascript:newWindow=open(\'\',\'new_W\',\'width=500,height=200,scrollbars=1\');newWindow.document.open(\'text/html\',\'replace\');newWindow.document.writeln(\'<center><br />\'+to_html(document.lonhomework.HWVAL_'.$id.'.value)+\'</center><input type="button" value=" Close " onClick = "parent.window.close()" />\');newWindow.document.close()" />' |
|
} elsif ($target eq "edit") { |
} elsif ($target eq "edit") { |
|
$result .=&Apache::edit::tag_start($target,$token); |
|
my $answer=&Apache::lonxml::get_param('answer',$parstack, |
|
$safeeval); |
|
$result .='<nobr>'. |
|
&Apache::edit::text_arg('Answer:','answer',$token,40); |
|
$result .=&edit_reaction_button($id,&Apache::edit::html_element_name('answer'),$answer).'</nobr>'; |
|
|
|
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
|
} elsif ($target eq 'modified') { |
|
my $constructtag=&Apache::edit::get_new_args($token,$parstack, |
|
$safeeval,'answer'); |
|
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
} |
} |
return $result; |
return $result; |
} |
} |
Line 247 EDITREACTION
|
Line 321 EDITREACTION
|
sub end_reactionresponse { |
sub end_reactionresponse { |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $result; |
my $result; |
if ($target eq "edit") { |
if ($target eq 'grade' && defined($ENV{'form.submitted'})) { |
|
&Apache::response::setup_params($$tagstack[-1]); |
|
my $response = &Apache::response::getresponse(); |
|
if ( $response =~ /[^\s]/) { |
|
my $partid = $Apache::inputtags::part; |
|
my $id = $Apache::inputtags::response['-1']; |
|
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
|
my %previous = &Apache::response::check_for_previous($response,$partid,$id); |
|
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
|
my $ad; |
|
foreach my $answer (@answers) { |
|
&Apache::lonxml::debug("submitted a $response for $answer<br \>\n"); |
|
if ($response eq $answer) { |
|
$ad='EXACT_ANS'; |
|
} else { |
|
$ad='INCORRECT'; |
|
} |
|
} |
|
&Apache::response::handle_previous(\%previous,$ad); |
|
$Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad; |
|
} |
|
} elsif ($target eq "edit") { |
$result.= &Apache::edit::tag_end($target,$token,''); |
$result.= &Apache::edit::tag_end($target,$token,''); |
|
} elsif ($target eq 'answer') { |
|
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack, |
|
$safeeval); |
|
$result.=&Apache::response::answer_header('reactionresponse'); |
|
foreach my $answer (@answers) { |
|
$result.=&Apache::response::answer_part('reactionresponse', |
|
$answer); |
|
} |
|
$result.=&Apache::response::answer_footer('reactionresponse'); |
} |
} |
&Apache::response::end_response; |
&Apache::response::end_response; |
return $result; |
return $result; |