version 1.6, 2003/06/30 18:00:18
|
version 1.11, 2003/07/01 21:10:43
|
Line 123 sub start_organicresponse {
|
Line 123 sub start_organicresponse {
|
$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); |
$result .=&Apache::edit::text_arg('Starting Molecule:','molecule', |
$result .='<nobr>'. |
$token,40); |
&Apache::edit::text_arg('Starting Molecule:','molecule', |
$result .=&Apache::edit::select_arg('Multipart:','multipart', |
$token,40); |
['yes','no'],$token); |
|
my $molecule=&Apache::lonxml::get_param('molecule',$parstack, |
my $molecule=&Apache::lonxml::get_param('molecule',$parstack, |
$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,'multipart'); |
$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); |
Line 142 sub start_organicresponse {
|
Line 141 sub start_organicresponse {
|
&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,'multipart'); |
|
$result .='</nobr>'. |
|
&Apache::edit::select_arg('Multipart:','multipart', |
|
['no','yes'],$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, |
Line 225 sub end_organicstructure {
|
Line 227 sub end_organicstructure {
|
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 $result=<<EDITREACTION; |
} |
<script type="text/javascript"> |
my $result=<<REACTIONJAVASCRIPT; |
function create_reaction_window_${id}_${field} () { |
<script language="JavaScript"> |
editor=window.open('','','width=500,height=270,scrollbars=no,resizable=yes'); |
|
editor.document.open('text/html','replace'); |
var level; |
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>'); |
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 Reaction' onClick="javascript:create_reaction_window_${id}_${field}();void(0);" /> |
|
EDITREACTION |
return $result; |
return $result; |
} |
} |
|
|
Line 420 sub start_reactionresponse {
|
Line 249 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('/adm/jme/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 436 EDITREACTION
|
Line 275 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 $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval); |
|
my %previous = &Apache::response::check_for_previous($response,$partid,$id); |
|
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
|
&Apache::lonxml::debug("submitted a $response for $answer<br \>\n"); |
|
my $ad; |
|
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,''); |
} |
} |
&Apache::response::end_response; |
&Apache::response::end_response; |