version 1.5, 2003/05/05 21:14:10
|
version 1.57, 2005/06/26 22:18:32
|
Line 30 package Apache::chemresponse;
|
Line 30 package Apache::chemresponse;
|
use strict; |
use strict; |
use Apache::lonxml; |
use Apache::lonxml; |
use Apache::lonnet; |
use Apache::lonnet; |
|
use Apache::lonlocal; |
|
|
BEGIN { |
BEGIN { |
&Apache::lonxml::register('Apache::chemresponse',('chemresponse','chemstructure','reactionresponse')); |
&Apache::lonxml::register('Apache::chemresponse',('organicresponse','organicstructure','reactionresponse','chem')); |
} |
} |
|
|
sub seperate_jme_window { |
sub chem_standard_order { |
my ($smile_input,$jme_input,$molecule)=@_; |
my ($reaction) = @_; |
|
my ($re,$pr) = split(/->|<=>/,$reaction); |
|
my @reactants = split(/\s\+/,$re); |
|
my @products = split(/\s\+/,$pr); |
|
foreach my $substance (@reactants,@products) { |
|
$substance =~ s/(\^\d*)\s+/$1_/g; # protect superscript space |
|
$substance =~ s/\s*//g; # strip whitespace |
|
$substance =~ s/_/ /g; # restore superscript space |
|
} |
|
@reactants = sort @reactants; |
|
@products = sort @products; |
|
my $standard = ''; |
|
foreach my $substance (@reactants) { |
|
$standard .= $substance; |
|
$standard .= ' + '; |
|
} |
|
$standard =~ s/ \+ $//; # get rid of trailing plus sign |
|
$standard .= ' -> '; |
|
foreach my $substance (@products) { |
|
$standard .= $substance; |
|
$standard .= ' + '; |
|
} |
|
$standard =~ s/ \+ $//; # get rid of trailing plus sign |
|
return $standard; |
|
} |
|
|
|
sub separate_jme_window { |
|
my ($smile_input,$jme_input,$molecule,$options,$shown_text)=@_; |
my $smilesection; |
my $smilesection; |
if (defined($smile_input)) { |
if (defined($smile_input)) { |
$smilesection=<<SMILESECTION; |
$smilesection=<<SMILESECTION; |
|
smiles = document.applets.JME.smiles(); |
opener.document.lonhomework.$smile_input.value = smiles; |
opener.document.lonhomework.$smile_input.value = smiles; |
SMILESECTION |
SMILESECTION |
} |
} |
Line 51 SMILESECTION
|
Line 80 SMILESECTION
|
JMESECTION |
JMESECTION |
} |
} |
|
|
|
if ($molecule) { $molecule='<param name="jme" value="'.$molecule.'" />'; } |
|
my $insert_answer; |
|
if ($shown_text ne '') { |
|
$insert_answer= |
|
'<input type="button" name="submit" value="Insert Answer" onclick="javascript:submitSmiles();" />'; |
|
} |
|
|
my $body=<<CHEMPAGE; |
my $body=<<CHEMPAGE; |
<html> |
<html> |
<head> |
<head> |
<title>Molecule Editor</title> |
<title>Molecule Editor</title> |
<script language="JavaScript"> |
<script type="text/javascript"> |
function submitSmiles() { |
function submitSmiles() { |
smiles = document.applets.JME.smiles(); |
jmeFile = document.applets.JME.jmeFile(); |
if (smiles == "") { |
if (jmeFile == "") { |
alert("Nothing to submit"); |
alert("Nothing to submit"); |
} else { |
} else { |
$smilesection |
|
$jmesection |
$jmesection |
|
$smilesection |
window.close(); |
window.close(); |
} |
} |
} |
} |
Line 73 function openHelpWindow() {
|
Line 109 function openHelpWindow() {
|
</head> |
</head> |
<body bgcolor="#ffffff"> |
<body bgcolor="#ffffff"> |
<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="440" height="390"> |
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" /> |
</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> |
<form> |
<form> |
<input type="button" name="submit" value="Insert Answer" onClick = "submitSmiles();" /> |
$insert_answer |
<br /> |
<br /> |
<input type="button" value=" Close " onClick = "window.close()" /> |
<input type="button" value=" Close " onclick = "javascript:window.close()" /> |
|
|
<input type="button" value=" Help " onClick = "openHelpWindow()" /> |
<input type="button" value=" Help " onclick = "javascript:openHelpWindow()" /> |
</form> |
</form> |
</center> |
</center> |
</body> |
</body> |
</html> |
</html> |
CHEMPAGE |
CHEMPAGE |
$body=&HTML::Entities::encode($body); |
$body=&HTML::Entities::encode($body,'<>&"'); |
$body=~s/\n/ /g; |
$body=~s/\n/ /g; |
|
my $nothing=&Apache::lonhtmlcommon::javascript_nothing(); |
|
my $docopen=&Apache::lonhtmlcommon::javascript_docopen(); |
|
my $display=&mt('Draw Molecule'); |
|
if (defined($shown_text)) { $display=&mt($shown_text); } |
my $result=<<CHEMINPUT; |
my $result=<<CHEMINPUT; |
<input type="button" value="Draw Molecule" onClick="javascript:editor=window.open('','','width=500,height=500,scrollbars=no,resizable=yes');editor.document.open('text/html','replace');editor.document.writeln('$body')" /> |
<input type="button" value="$display" onclick="javascript:editor=window.open($nothing,'jmeedit','width=500,height=500,menubar=yes,scrollbars=no,resizable=yes');editor.$docopen;editor.document.write('$body');editor.document.close();editor.focus()" /> |
CHEMINPUT |
CHEMINPUT |
return $result; |
return $result; |
} |
} |
|
|
sub start_chemresponse { |
sub jme_img { |
|
my ($jme,$smile,$width,$options)=@_; |
|
my $id=&Apache::loncommon::get_cgi_id(); |
|
my $result='<img alt="'.$smile.'" src="/cgi-bin/convertjme.pl?'.$id.'"'; |
|
if ($options =~ /border/) { $result.= ' border="1"'; } |
|
$result.=' />'; |
|
&Apache::lonnet::appenv('cgi.'.$id.'.JME' => |
|
&Apache::lonnet::escape($jme), |
|
'cgi.'.$id.'.PNG' => 1, |
|
'cgi.'.$id.'.WIDTH' => $width); |
|
return $result; |
|
} |
|
|
|
sub start_organicresponse { |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $result; |
my $result; |
my $partid = $Apache::inputtags::part; |
my $partid = $Apache::inputtags::part; |
my $id = &Apache::response::start_response($parstack,$safeeval); |
my $id = &Apache::response::start_response($parstack,$safeeval); |
if ($target eq 'meta') { |
if ($target eq 'meta') { |
|
$result=&Apache::response::meta_package_write('organicresponse'); |
} elsif ($target eq 'web') { |
} elsif ($target eq 'web') { |
my $molecule; |
my $jmeanswer=&Apache::lonxml::get_param('jmeanswer',$parstack, |
if (defined($Apache::lonhomework::history{"resource.$partid.$id.molecule"})) { |
|
$molecule=$Apache::lonhomework::history{"resource.$partid.$id.molecule"}; |
|
} else { |
|
$molecule=&Apache::lonxml::get_param('molecule',$parstack, |
|
$safeeval); |
$safeeval); |
|
if ( &Apache::response::show_answer() && $jmeanswer ne '') { |
|
my $options=&Apache::lonxml::get_param('options',$parstack, |
|
$safeeval); |
|
my $width=&Apache::lonxml::get_param('width',$parstack, |
|
$safeeval); |
|
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack, |
|
$safeeval); |
|
$result.=&jme_img($jmeanswer,$answers[0],$width,$options); |
|
} else { |
|
my $molecule; |
|
if (defined($Apache::lonhomework::history{"resource.$partid.$id.molecule"})) { |
|
$molecule=$Apache::lonhomework::history{"resource.$partid.$id.molecule"}; |
|
} else { |
|
$molecule=&Apache::lonxml::get_param('molecule',$parstack, |
|
$safeeval); |
|
} |
|
my $options=&Apache::lonxml::get_param('options',$parstack, |
|
$safeeval); |
|
my $shown_text; |
|
if (&Apache::response::show_answer()) { |
|
$shown_text="Show Your Last Answer"; |
|
} |
|
$result=&separate_jme_window("HWVAL_$id","MOLECULE_$id",$molecule, |
|
$options,$shown_text); |
|
$result.= '<input type="hidden" name="MOLECULE_'.$id.'" value="" />'; |
} |
} |
$result=&seperate_jme_window("HWVAL_$id","MOLECULE_$id",$molecule); |
|
$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); |
$result .=&Apache::edit::text_arg('Starting Molecule:','molecule', |
my $options=&Apache::lonxml::get_param('options',$parstack, |
$token,40); |
$safeeval); |
|
if ($options !~ /multipart/) { $options.=',multipart'; } |
|
$result .='<nobr>'. |
|
&Apache::edit::text_arg('Starting Molecule:','molecule', |
|
$token,40); |
my $molecule=&Apache::lonxml::get_param('molecule',$parstack, |
my $molecule=&Apache::lonxml::get_param('molecule',$parstack, |
$safeeval); |
$safeeval); |
$result .=&seperate_jme_window(undef, |
$result .=&separate_jme_window(undef, |
&Apache::edit::html_element_name('molecule'), |
&Apache::edit::html_element_name('molecule'), |
$molecule); |
$molecule,$options); |
$result .='<br />'; |
$result .='</nobr><br /><nobr>'; |
$result .=&Apache::edit::text_arg('Correct Answer:','answer', |
$result .=&Apache::edit::text_arg('Correct Answer:','answer', |
$token,40); |
$token,40); |
$result .=&Apache::edit::hidden_arg('jmeanswer',$token); |
$result .=&Apache::edit::hidden_arg('jmeanswer',$token); |
my $jmeanswer=&Apache::lonxml::get_param('jmeanswer',$parstack, |
my $jmeanswer=&Apache::lonxml::get_param('jmeanswer',$parstack, |
$safeeval); |
$safeeval); |
$result .=&seperate_jme_window( |
$result .=&separate_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); |
$jmeanswer,$options); |
|
$result .='</nobr><br />'; |
|
$result .=&Apache::edit::checked_arg('Options:','options', |
|
[ ['autoez','Auto E,Z stereochemistry'], |
|
['multipart','Multipart Structures'], |
|
['nostereo','No stereochemistry'], |
|
['reaction','Is a reaction'], |
|
['number','Able to number atoms'] ], |
|
,$token); |
|
$result .=&Apache::edit::text_arg('Width of correct answer image:', |
|
'width',$token,10); |
$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', |
|
'options','width'); |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
} |
} |
return $result; |
return $result; |
} |
} |
|
|
sub end_chemresponse { |
sub end_organicresponse { |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $result; |
my $result; |
if ($target eq 'grade' && defined($ENV{'form.submitted'})) { |
if ($target eq 'grade' && &Apache::response::submitted()) { |
&Apache::response::setup_params($$tagstack[-1]); |
&Apache::response::setup_params($$tagstack[-1],$safeeval); |
my $response = &Apache::response::getresponse(); |
my $response = &Apache::response::getresponse(); |
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'; |
|
} |
|
} |
|
if ($ad && $Apache::lonhomework::type eq 'survey') { |
|
$ad='SUBMITTED'; |
} |
} |
&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; |
$Apache::lonhomework::results{"resource.$partid.$id.molecule"}=$ENV{"form.MOLECULE_$id"}; |
$Apache::lonhomework::results{"resource.$partid.$id.molecule"}=$env{"form.MOLECULE_$id"}; |
} |
} |
} 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; |
} |
} |
|
|
sub start_chemstructure { |
sub start_organicstructure { |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
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=&Apache::loncommon::get_cgi_id(); |
<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,undef,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"); |
|
if ($options =~ /border/) { $result.= '\fbox{'; } |
|
$result .= '\graphicspath{{/home/httpd/perl/tmp/}}\includegraphics[width='.$texwidth.' mm]{'.$filename.'.eps}'; |
|
if ($options =~ /border/) { $result.= '} '; } |
} 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 (pixels):','width',$token,5); |
$result .=&Apache::edit::text_arg('Height:','height',$token,5); |
$result .=&Apache::edit::text_arg('TeXwidth (mm):','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); |
$result .=&seperate_jme_window(undef, |
my $options=&Apache::lonxml::get_param('options',$parstack, |
&Apache::edit::html_element_name('molecule'), |
$safeeval); |
$molecule); |
if ($options !~ /reaction/) { |
$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
$options.= ',multipart,number'; |
|
} |
|
|
|
$result .=&separate_jme_window(undef, |
|
&Apache::edit::html_element_name('molecule'), |
|
$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(); |
} 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','texwidth', |
|
'options'); |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
} |
} |
return $result; |
return $result; |
} |
} |
|
|
sub end_chemstructure { |
sub end_organicstructure { |
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 "edit") { |
Line 214 sub end_chemstructure {
|
Line 349 sub end_chemstructure {
|
return $result; |
return $result; |
} |
} |
|
|
sub reaction_javascript { |
sub edit_reaction_button { |
my $rightarrow; |
my ($id,$field,$reaction)=@_; |
if ($ENV{'browser.unicode'}) { |
my $id_es=&Apache::lonnet::escape($id); |
$rightarrow=" → " |
my $field_es=&Apache::lonnet::escape($field); |
} else { |
my $reaction_es=&Apache::lonnet::escape($reaction); |
$rightarrow=" <font face=symbol>®</font> "; |
my $docopen=&Apache::lonhtmlcommon::javascript_docopen(); |
|
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.$docopen; |
|
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?inhibitmenu=yes" name="viewer" scrolling="no" /> <frame src="/res/adm/pages/reactionresponse/reaction_editor.html?inhibitmenu=yes&reaction=$reaction_es&id=$id_es&field=$field_es" name="editor" scrolling="no" /> </frameset> </html>'); |
} |
} |
my $result=<<REACTIONJAVASCRIPT; |
// --> |
<script language="JavaScript"> |
|
|
|
var level; |
|
var reactants; |
|
var products; |
|
|
|
|
|
function parse_reaction(string) { |
|
var reaction_array = string.split('->'); |
|
var i; |
|
reactants = new Array(0); |
|
products = new Array(0); |
|
|
|
if (reaction_array.length > 0) |
|
reactants = reaction_array[0].split(' +'); |
|
if (reaction_array.length > 1) |
|
products = reaction_array[1].split(' +'); |
|
} |
|
|
|
function to_capa(string) { |
|
var reaction = ""; |
|
var i; |
|
|
|
parse_reaction(string); |
|
|
|
for (i = 0; i < reactants.length; i++) |
|
reactants[i] = capa_component(reactants[i]); |
|
for (i = 0; i < products.length; i++) |
|
products[i] = capa_component(products[i]); |
|
|
|
reactants.sort(); |
|
products.sort(); |
|
|
|
for (i = 0; i < reactants.length-1; i++) { |
|
reaction += reactants[i]; |
|
reaction += " + "; |
|
} |
|
if (i < reactants.length) |
|
reaction += reactants[i]; |
|
if (products.length > 0) { |
|
reaction += " -> "; |
|
for (i = 0; i < products.length-1; i++) { |
|
reaction += products[i]; |
|
reaction += " + "; |
|
} |
|
if (i < products.length) |
|
reaction += products[i]; |
|
} |
|
|
|
return reaction; |
|
} |
|
|
|
function capa_component(string) { |
|
var reactant = ""; |
|
var i = 0; |
|
level = 0; |
|
|
|
for (;string.substring(i,i+1) == ' ';i++) |
|
; |
|
for (;isDigit(string.substring(i,i+1));i++) |
|
reactant += string.substring(i,i+1); |
|
for (;i < string.length;i++) |
|
reactant += capa_char(string.substring(i,i+1)); |
|
|
|
return reactant; |
|
} |
|
|
|
function capa_char(chr) { |
|
if (level == 0) { // baseline |
|
if (chr == '^') |
|
level = 1; |
|
if (chr == ' ') |
|
return ""; |
|
return chr; |
|
} |
|
if (level == 1) { // superscript |
|
if (isDigit(chr)) |
|
return chr; |
|
level = 0; |
|
return chr; |
|
} |
|
} |
|
|
|
function to_html(string) { |
|
var reaction = ""; |
|
var i; |
|
|
|
parse_reaction(string); |
|
for (i = 0; i < reactants.length-1; i++) { |
|
reaction += html_component(reactants[i]); |
|
reaction += " + "; |
|
} |
|
if (i < reactants.length) |
|
reaction += html_component(reactants[i]); |
|
|
|
if (products.length > 0) { |
|
reaction += " $rightarrow "; |
|
for (i = 0; i < products.length-1; i++) { |
|
reaction += html_component(products[i]); |
|
reaction += " + "; |
|
} |
|
if (i < products.length) |
|
reaction += html_component(products[i]); |
|
} |
|
|
|
return reaction; |
|
} |
|
|
|
function html_component(string) { |
|
var reactant = ""; |
|
var i = 0; |
|
level = 0; |
|
|
|
for (;string.substring(i,i+1) == ' ';i++) |
|
; |
|
for (;isDigit(string.substring(i,i+1));i++) |
|
reactant += string.substring(i,i+1); |
|
for (;i < string.length;i++) |
|
reactant += html_char(string.substring(i,i+1)); |
|
|
|
return reactant; |
|
} |
|
|
|
function html_char(chr) { |
|
if (level == 0) { // baseline |
|
if (isDigit(chr)) |
|
return chr.sub(); |
|
if (chr == '^') { |
|
level = 1; |
|
return ""; |
|
} |
|
if (chr == '+') // baseline or superscript |
|
return "?"; |
|
if (chr == ' ') |
|
return ""; |
|
return chr; |
|
} |
|
if (level == 1) { // superscript |
|
if (isDigit(chr)) |
|
return chr.sup(); |
|
if (chr == '+' || chr == '-') { |
|
level = 0; |
|
return chr.sup(); |
|
} |
|
if (chr == ' ') { |
|
level = 0; |
|
return ""; |
|
} |
|
level = 0; |
|
return chr; |
|
} |
|
} |
|
|
|
function isDigit(string) { |
|
if (string >= '0' && string <='9') |
|
return 1; |
|
else |
|
return 0; |
|
} |
|
|
|
function openHelpWindow() { |
|
window.open("reaction_help.html","","scrollbars=yes,resizable=yes,width=550,height=600") |
|
} |
|
|
|
function submitReaction() { |
|
reaction = to_capa(document.form.text.value); |
|
if (reaction == "") { |
|
alert("Nothing to submit"); |
|
} |
|
else { |
|
name = "INPUT" + ((problem < 10) ? "0" : "") + problem; |
|
i = 0; |
|
while (parent.opener.document.CAPA.elements[i].name != name) |
|
i++; |
|
parent.opener.document.CAPA.elements[i].value = reaction; |
|
parent.opener.document.CAPA.submit(); |
|
} |
|
} |
|
</script> |
</script> |
REACTIONJAVASCRIPT |
<input type='button' value='Edit Answer' onclick="javascript:create_reaction_window_${id}_${field}();void(0);" /> |
|
EDITREACTION |
return $result; |
return $result; |
} |
} |
|
|
Line 409 sub start_reactionresponse {
|
Line 374 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.=&reaction_javascript(); |
$result=&Apache::response::meta_package_write('reactionresponse'); |
# $result.='<iframe name="REACTION_'.$id.'" width="200" height="100" src="/adm/jme/reaction_viewer.html"></iframe>'; |
} elsif ($target eq 'web') { |
$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()" />' |
my $partid = $Apache::inputtags::part; |
|
my $id = $Apache::inputtags::response['-1']; |
|
my $reaction=$Apache::lonhomework::history{"resource.$partid.$id.submission"}; |
|
if ($reaction eq '') { $reaction=&Apache::lonxml::get_param('initial',$parstack,$safeeval); } |
|
my $status=$Apache::inputtags::status['-1']; |
|
if ($status eq 'CAN_ANSWER') { |
|
$result.=&edit_reaction_button($id,"HWVAL_$id",$reaction); |
|
} |
|
if ( &Apache::response::show_answer() ) { |
|
my $ans=&Apache::lonxml::get_param('answer',$parstack,$safeeval); |
|
if (!$Apache::lonxml::default_homework_loaded) { |
|
&Apache::lonxml::default_homework_load($safeeval); |
|
} |
|
@Apache::scripttag::parser_env = @_; |
|
$Apache::inputtags::answertxt{$id}=&Apache::run::run("return &chemparse(q\0$ans\0);",$safeeval); |
|
} |
} 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>'; |
|
my $initial=&Apache::lonxml::get_param('initial',$parstack,$safeeval); |
|
$result.='<nobr>'. |
|
&Apache::edit::text_arg('Initial Reaction:','initial',$token,40); |
|
$result .=&edit_reaction_button($id,&Apache::edit::html_element_name('initial'),$initial).'</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', |
|
'initial'); |
|
if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); } |
} |
} |
return $result; |
return $result; |
} |
} |
Line 421 sub start_reactionresponse {
|
Line 418 sub start_reactionresponse {
|
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' && &Apache::response::submitted()) { |
|
&Apache::response::setup_params($$tagstack[-1],$safeeval); |
|
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 (&chem_standard_order($response) eq |
|
&chem_standard_order($answer)) { |
|
$ad='EXACT_ANS'; |
|
} else { |
|
$ad='INCORRECT'; |
|
} |
|
} |
|
if ($ad && $Apache::lonhomework::type eq 'survey') { |
|
$ad='SUBMITTED'; |
|
} |
|
&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; |
} |
} |
|
|
|
sub start_chem { |
|
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_; |
|
my $result = ''; |
|
my $inside = &Apache::lonxml::get_all_text_unbalanced("/chem",$parser); |
|
if ($target eq 'tex' || $target eq 'web') { |
|
$inside=&Apache::run::evaluate($inside,$safeeval,$$parstack[-1]); |
|
if (!$Apache::lonxml::default_homework_loaded) { |
|
&Apache::lonxml::default_homework_load($safeeval); |
|
} |
|
@Apache::scripttag::parser_env = @_; |
|
$result=&Apache::run::run("return &chemparse(q\0$inside\0);",$safeeval); |
|
} |
|
return $result; |
|
} |
|
|
|
sub end_chem { |
|
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_; |
|
my $result = ''; |
|
return $result; |
|
} |
|
|
1; |
1; |
__END__ |
__END__ |