Annotation of loncom/homework/chemresponse.pm, revision 1.63
1.1 albertel 1: # The LearningOnline Network with CAPA
2: # chemical equation style response
3: #
1.63 ! albertel 4: # $Id: chemresponse.pm,v 1.62 2005/07/05 10:06:34 foxr Exp $
1.1 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28: #
29: package Apache::chemresponse;
30: use strict;
31: use Apache::lonxml;
32: use Apache::lonnet;
1.55 albertel 33: use Apache::lonlocal;
1.1 albertel 34:
35: BEGIN {
1.46 albertel 36: &Apache::lonxml::register('Apache::chemresponse',('organicresponse','organicstructure','reactionresponse','chem'));
1.1 albertel 37: }
38:
1.34 albertel 39: sub chem_standard_order {
40: my ($reaction) = @_;
41: my ($re,$pr) = split(/->|<=>/,$reaction);
42: my @reactants = split(/\s\+/,$re);
43: my @products = split(/\s\+/,$pr);
44: foreach my $substance (@reactants,@products) {
45: $substance =~ s/(\^\d*)\s+/$1_/g; # protect superscript space
46: $substance =~ s/\s*//g; # strip whitespace
47: $substance =~ s/_/ /g; # restore superscript space
48: }
49: @reactants = sort @reactants;
50: @products = sort @products;
51: my $standard = '';
52: foreach my $substance (@reactants) {
53: $standard .= $substance;
54: $standard .= ' + ';
55: }
56: $standard =~ s/ \+ $//; # get rid of trailing plus sign
57: $standard .= ' -> ';
58: foreach my $substance (@products) {
59: $standard .= $substance;
60: $standard .= ' + ';
61: }
62: $standard =~ s/ \+ $//; # get rid of trailing plus sign
63: return $standard;
64: }
65:
1.30 www 66: sub separate_jme_window {
1.55 albertel 67: my ($smile_input,$jme_input,$molecule,$options,$shown_text)=@_;
1.2 albertel 68: my $smilesection;
69: if (defined($smile_input)) {
70: $smilesection=<<SMILESECTION;
1.21 albertel 71: smiles = document.applets.JME.smiles();
1.2 albertel 72: opener.document.lonhomework.$smile_input.value = smiles;
73: SMILESECTION
74: }
75: my $jmesection;
76: if (defined($jme_input)) {
77: $jmesection=<<JMESECTION;
78: jmeFile = document.applets.JME.jmeFile();
79: opener.document.lonhomework.$jme_input.value = jmeFile;
80: JMESECTION
81: }
82:
1.14 albertel 83: if ($molecule) { $molecule='<param name="jme" value="'.$molecule.'" />'; }
1.57 albertel 84: my $insert_answer;
1.59 albertel 85: if ($shown_text eq '') {
1.57 albertel 86: $insert_answer=
87: '<input type="button" name="submit" value="Insert Answer" onclick="javascript:submitSmiles();" />';
88: }
89:
1.1 albertel 90: my $body=<<CHEMPAGE;
91: <html>
92: <head>
93: <title>Molecule Editor</title>
1.47 albertel 94: <script type="text/javascript">
1.1 albertel 95: function submitSmiles() {
1.21 albertel 96: jmeFile = document.applets.JME.jmeFile();
97: if (jmeFile == "") {
1.1 albertel 98: alert("Nothing to submit");
99: } else {
1.21 albertel 100: $jmesection
1.2 albertel 101: $smilesection
1.1 albertel 102: window.close();
103: }
104: }
105: function openHelpWindow() {
1.2 albertel 106: window.open("/adm/jme/jme_help.html","","scrollbars=yes,resizable=yes,width=500,height=600");
1.1 albertel 107: }
1.60 albertel 108: function substituent(r) {document.applets.JME.setSubstituent(r);}
1.1 albertel 109: </script>
110: </head>
111: <body bgcolor="#ffffff">
112: <center>
1.60 albertel 113: <form>
114: <table width="440"><tr>
115: <td></td>
116: <td align="right">
117: <select onchange="javascript:substituent(options[selectedIndex].text)">
118: <option>Select substituent</option>
119: <option>-C(=O)OH</option>
120: <option>-C(=O)OMe</option>
121: <option>-OC(=O)Me</option>
122: <option>-CMe3</option>
123: <option>-CF3</option>
124: <option>-CCl3</option>
125: <option>-NO2</option>
126: <option>-SO2-NH2</option>
127: <option>-NH-SO2-Me</option>
128: <option>-NMe2</option>
129: <option>-C#N</option>
130: <option>-C#C-Me</option>
131: <option>-C#CH</option>
132: </select>
133: </td></tr>
134: </table>
135: <applet code="JME.class" name="JME" archive="/adm/jme/JME.jar" width="440" height="390" mayscript>
1.1 albertel 136: You have to enable Java and JavaScript on your machine.
1.12 albertel 137: $molecule
1.6 albertel 138: <param name="options" value="$options" />
1.1 albertel 139: </applet><br />
1.49 albertel 140: <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>
1.61 albertel 141: <br />
1.57 albertel 142: $insert_answer
1.1 albertel 143: <br />
1.57 albertel 144: <input type="button" value=" Close " onclick = "javascript:window.close()" />
1.1 albertel 145:
1.57 albertel 146: <input type="button" value=" Help " onclick = "javascript:openHelpWindow()" />
1.1 albertel 147: </form>
148: </center>
149: </body>
150: </html>
151: CHEMPAGE
1.32 albertel 152: $body=&HTML::Entities::encode($body,'<>&"');
1.1 albertel 153: $body=~s/\n/ /g;
1.53 albertel 154: my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
1.41 www 155: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.55 albertel 156: my $display=&mt('Draw Molecule');
157: if (defined($shown_text)) { $display=&mt($shown_text); }
1.1 albertel 158: my $result=<<CHEMINPUT;
1.61 albertel 159: <input type="button" value="$display" onclick="javascript:editor=window.open($nothing,'jmeedit','width=500,height=500,menubar=no,scrollbars=no,resizable=yes');editor.$docopen;editor.document.write('$body');editor.document.close();editor.focus()" />
1.1 albertel 160: CHEMINPUT
161: return $result;
162: }
163:
1.56 albertel 164: sub jme_img {
165: my ($jme,$smile,$width,$options)=@_;
166: my $id=&Apache::loncommon::get_cgi_id();
167: my $result='<img alt="'.$smile.'" src="/cgi-bin/convertjme.pl?'.$id.'"';
168: if ($options =~ /border/) { $result.= ' border="1"'; }
169: $result.=' />';
170: &Apache::lonnet::appenv('cgi.'.$id.'.JME' =>
171: &Apache::lonnet::escape($jme),
172: 'cgi.'.$id.'.PNG' => 1,
173: 'cgi.'.$id.'.WIDTH' => $width);
174: return $result;
175: }
176:
1.6 albertel 177: sub start_organicresponse {
1.1 albertel 178: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
179: my $result;
180: my $partid = $Apache::inputtags::part;
181: my $id = &Apache::response::start_response($parstack,$safeeval);
182: if ($target eq 'meta') {
1.28 albertel 183: $result=&Apache::response::meta_package_write('organicresponse');
1.1 albertel 184: } elsif ($target eq 'web') {
1.55 albertel 185: my $jmeanswer=&Apache::lonxml::get_param('jmeanswer',$parstack,
186: $safeeval);
187: if ( &Apache::response::show_answer() && $jmeanswer ne '') {
1.44 albertel 188: my $options=&Apache::lonxml::get_param('options',$parstack,
189: $safeeval);
190: my $width=&Apache::lonxml::get_param('width',$parstack,
191: $safeeval);
1.56 albertel 192: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,
193: $safeeval);
194: $result.=&jme_img($jmeanswer,$answers[0],$width,$options);
1.1 albertel 195: } else {
1.44 albertel 196: my $molecule;
197: if (defined($Apache::lonhomework::history{"resource.$partid.$id.molecule"})) {
198: $molecule=$Apache::lonhomework::history{"resource.$partid.$id.molecule"};
199: } else {
200: $molecule=&Apache::lonxml::get_param('molecule',$parstack,
201: $safeeval);
202: }
203: my $options=&Apache::lonxml::get_param('options',$parstack,
204: $safeeval);
1.55 albertel 205: my $shown_text;
206: if (&Apache::response::show_answer()) {
207: $shown_text="Show Your Last Answer";
208: }
209: $result=&separate_jme_window("HWVAL_$id","MOLECULE_$id",$molecule,
210: $options,$shown_text);
1.44 albertel 211: $result.= '<input type="hidden" name="MOLECULE_'.$id.'" value="" />';
1.1 albertel 212: }
1.2 albertel 213: } elsif ($target eq 'edit') {
214: $result .=&Apache::edit::tag_start($target,$token);
1.12 albertel 215: my $options=&Apache::lonxml::get_param('options',$parstack,
216: $safeeval);
217: if ($options !~ /multipart/) { $options.=',multipart'; }
1.7 albertel 218: $result .='<nobr>'.
219: &Apache::edit::text_arg('Starting Molecule:','molecule',
220: $token,40);
1.2 albertel 221: my $molecule=&Apache::lonxml::get_param('molecule',$parstack,
222: $safeeval);
1.30 www 223: $result .=&separate_jme_window(undef,
1.2 albertel 224: &Apache::edit::html_element_name('molecule'),
1.12 albertel 225: $molecule,$options);
1.7 albertel 226: $result .='</nobr><br /><nobr>';
1.2 albertel 227: $result .=&Apache::edit::text_arg('Correct Answer:','answer',
228: $token,40);
229: $result .=&Apache::edit::hidden_arg('jmeanswer',$token);
230: my $jmeanswer=&Apache::lonxml::get_param('jmeanswer',$parstack,
231: $safeeval);
1.30 www 232: $result .=&separate_jme_window(
1.2 albertel 233: &Apache::edit::html_element_name('answer'),
234: &Apache::edit::html_element_name('jmeanswer'),
1.12 albertel 235: $jmeanswer,$options);
236: $result .='</nobr><br />';
237: $result .=&Apache::edit::checked_arg('Options:','options',
1.29 www 238: [ ['autoez','Auto E,Z stereochemistry'],
1.18 albertel 239: ['multipart','Multipart Structures'],
1.12 albertel 240: ['nostereo','No stereochemistry'],
241: ['reaction','Is a reaction'],
1.18 albertel 242: ['number','Able to number atoms'] ],
1.12 albertel 243: ,$token);
1.44 albertel 244: $result .=&Apache::edit::text_arg('Width of correct answer image:',
245: 'width',$token,10);
1.2 albertel 246: $result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
247: } elsif ($target eq 'modified') {
248: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
249: $safeeval,'molecule',
1.6 albertel 250: 'answer','jmeanswer',
1.44 albertel 251: 'options','width');
1.2 albertel 252: if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
1.1 albertel 253: }
1.63 ! albertel 254:
1.1 albertel 255: return $result;
256: }
257:
1.6 albertel 258: sub end_organicresponse {
1.1 albertel 259: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
260: my $result;
1.45 albertel 261: if ($target eq 'grade' && &Apache::response::submitted()) {
1.31 albertel 262: &Apache::response::setup_params($$tagstack[-1],$safeeval);
1.1 albertel 263: my $response = &Apache::response::getresponse();
264: if ( $response =~ /[^\s]/) {
265: my $partid = $Apache::inputtags::part;
266: my $id = $Apache::inputtags::response['-1'];
1.13 albertel 267: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
1.1 albertel 268: my %previous = &Apache::response::check_for_previous($response,$partid,$id);
269: $Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
270: my $ad;
1.13 albertel 271: foreach my $answer (@answers) {
272: &Apache::lonxml::debug("submitted a $response for $answer<br \>\n");
273: if ($response eq $answer) {
274: $ad='EXACT_ANS';
275: last;
276: } else {
277: $ad='INCORRECT';
278: }
1.1 albertel 279: }
1.42 albertel 280: if ($ad && $Apache::lonhomework::type eq 'survey') {
281: $ad='SUBMITTED';
282: }
1.1 albertel 283: &Apache::response::handle_previous(\%previous,$ad);
284: $Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad;
1.50 albertel 285: $Apache::lonhomework::results{"resource.$partid.$id.molecule"}=$env{"form.MOLECULE_$id"};
1.1 albertel 286: }
1.2 albertel 287: } elsif ($target eq "edit") {
288: $result.= &Apache::edit::tag_end($target,$token,'');
1.15 albertel 289: } elsif ($target eq 'answer') {
290: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,
291: $safeeval);
292: $result.=&Apache::response::answer_header('organicresponse');
293: foreach my $answer (@answers) {
294: $result.=&Apache::response::answer_part('organicresponse',$answer);
295: }
296: $result.=&Apache::response::answer_footer('organicresponse');
1.1 albertel 297: }
1.63 ! albertel 298:
! 299: if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
! 300: $target eq 'tex' || $target eq 'analyze') {
! 301: &Apache::lonxml::increment_counter(&Apache::response::repetition());
! 302: }
! 303: &Apache::response::end_response();
1.1 albertel 304: return $result;
305: }
306:
1.6 albertel 307: sub start_organicstructure {
1.3 albertel 308: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
309: my $result;
310: if ($target eq 'web') {
311: my $width=&Apache::lonxml::get_param('width',$parstack,$safeeval);
312: my $molecule=&Apache::lonxml::get_param('molecule',$parstack,$safeeval);
1.12 albertel 313: my $options=&Apache::lonxml::get_param('options',$parstack,$safeeval);
1.23 albertel 314: my $id=&Apache::loncommon::get_cgi_id();
1.19 albertel 315: $result="<img src='/cgi-bin/convertjme.pl?$id'";
316: if ($options =~ /border/) { $result.= ' border="1"'; }
317: $result.=' />';
1.16 albertel 318: &Apache::lonnet::appenv(
319: 'cgi.'.$id.'.JME' => &Apache::lonnet::escape($molecule),
1.17 albertel 320: 'cgi.'.$id.'.PNG' => 1,
1.16 albertel 321: 'cgi.'.$id.'.WIDTH' => $width );
1.17 albertel 322: } elsif ($target eq 'tex') {
1.38 albertel 323: my $texwidth=&Apache::lonxml::get_param('texwidth',$parstack,$safeeval,undef,1);
1.58 foxr 324: my $webwidth=&Apache::lonxml::get_param('width', $parstack, $safeeval);
325: my $webheight=&Apache::lonxml::get_param('height', $parstack, $safeeval);
1.62 foxr 326: if (!$webheight) { $webheight = $webwidth; }
1.17 albertel 327: if (!$texwidth) { $texwidth='90'; }
1.58 foxr 328: $result = "%DYNAMICIMAGE:$webwidth:$webheight:$texwidth\n";
1.17 albertel 329: my $molecule=&Apache::lonxml::get_param('molecule',$parstack,$safeeval);
330: my $options=&Apache::lonxml::get_param('options',$parstack,$safeeval);
1.50 albertel 331: my $filename = $env{'user.name'}.'_'.$env{'user.domain'}.
1.17 albertel 332: '_'.time.'_'.$$.int(rand(1000)).'_organicstructure';
333: my $id=$filename;
334: &Apache::lonnet::appenv(
335: 'cgi.'.$id.'.JME' => &Apache::lonnet::escape($molecule),
336: 'cgi.'.$id.'.PS' => 1,
337: 'cgi.'.$id.'.WIDTH' => $texwidth );
338: $id=&Apache::lonnet::escape($id);
339: &Apache::lonxml::register_ssi("/cgi-bin/convertjme.pl?$id");
1.20 albertel 340: if ($options =~ /border/) { $result.= '\fbox{'; }
341: $result .= '\graphicspath{{/home/httpd/perl/tmp/}}\includegraphics[width='.$texwidth.' mm]{'.$filename.'.eps}';
342: if ($options =~ /border/) { $result.= '} '; }
1.3 albertel 343: } elsif ($target eq 'edit') {
344: $result .=&Apache::edit::tag_start($target,$token);
1.22 albertel 345: $result .=&Apache::edit::text_arg('Width (pixels):','width',$token,5);
346: $result .=&Apache::edit::text_arg('TeXwidth (mm):','texwidth',$token,5);
1.12 albertel 347: $result .='<nobr>';
1.3 albertel 348: $result .=&Apache::edit::text_arg('Molecule:','molecule',$token,40);
349: my $molecule=&Apache::lonxml::get_param('molecule',$parstack,
350: $safeeval);
1.12 albertel 351: my $options=&Apache::lonxml::get_param('options',$parstack,
352: $safeeval);
353: if ($options !~ /reaction/) {
354: $options.= ',multipart,number';
355: }
356:
1.30 www 357: $result .=&separate_jme_window(undef,
1.12 albertel 358: &Apache::edit::html_element_name('molecule'),
359: $molecule,$options);
360: $result.="</nobr><br />";
361: $result .=&Apache::edit::checked_arg('Options:','options',
1.18 albertel 362: [ ['reaction','Is a reaction'],
1.12 albertel 363: ['border','Draw a border'] ],
364: $token);
1.24 albertel 365: $result .=&Apache::edit::end_row();
1.3 albertel 366: } elsif ($target eq 'modified') {
367: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
368: $safeeval,'molecule',
1.22 albertel 369: 'width','texwidth',
370: 'options');
1.3 albertel 371: if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
372: }
373: return $result;
1.1 albertel 374: }
375:
1.6 albertel 376: sub end_organicstructure {
1.3 albertel 377: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
378: my $result;
379: if ($target eq "edit") {
380: $result.= &Apache::edit::tag_end($target,$token,'');
381: }
1.4 albertel 382: return $result;
383: }
384:
1.9 albertel 385: sub edit_reaction_button {
1.11 albertel 386: my ($id,$field,$reaction)=@_;
1.10 albertel 387: my $id_es=&Apache::lonnet::escape($id);
388: my $field_es=&Apache::lonnet::escape($field);
1.11 albertel 389: my $reaction_es=&Apache::lonnet::escape($reaction);
1.41 www 390: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.9 albertel 391: my $result=<<EDITREACTION;
1.10 albertel 392: <script type="text/javascript">
1.47 albertel 393: // <!--
1.10 albertel 394: function create_reaction_window_${id}_${field} () {
395: editor=window.open('','','width=500,height=270,scrollbars=no,resizable=yes');
1.41 www 396: editor.$docopen;
1.37 albertel 397: 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>');
1.10 albertel 398: }
1.47 albertel 399: // -->
1.10 albertel 400: </script>
1.47 albertel 401: <input type='button' value='Edit Answer' onclick="javascript:create_reaction_window_${id}_${field}();void(0);" />
1.9 albertel 402: EDITREACTION
403: return $result;
404: }
405:
1.4 albertel 406: sub start_reactionresponse {
407: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
408: my $result;
409: my $id = &Apache::response::start_response($parstack,$safeeval);
1.10 albertel 410: if ($target eq 'meta') {
1.28 albertel 411: $result=&Apache::response::meta_package_write('reactionresponse');
1.10 albertel 412: } elsif ($target eq 'web') {
1.11 albertel 413: my $partid = $Apache::inputtags::part;
414: my $id = $Apache::inputtags::response['-1'];
415: my $reaction=$Apache::lonhomework::history{"resource.$partid.$id.submission"};
1.35 albertel 416: if ($reaction eq '') { $reaction=&Apache::lonxml::get_param('initial',$parstack,$safeeval); }
1.33 albertel 417: my $status=$Apache::inputtags::status['-1'];
418: if ($status eq 'CAN_ANSWER') {
419: $result.=&edit_reaction_button($id,"HWVAL_$id",$reaction);
420: }
421: if ( &Apache::response::show_answer() ) {
422: my $ans=&Apache::lonxml::get_param('answer',$parstack,$safeeval);
1.51 albertel 423: if (!$Apache::lonxml::default_homework_loaded) {
424: &Apache::lonxml::default_homework_load($safeeval);
425: }
426: @Apache::scripttag::parser_env = @_;
427: $Apache::inputtags::answertxt{$id}=&Apache::run::run("return &chemparse(q\0$ans\0);",$safeeval);
1.33 albertel 428: }
1.4 albertel 429: } elsif ($target eq "edit") {
1.9 albertel 430: $result .=&Apache::edit::tag_start($target,$token);
431: my $answer=&Apache::lonxml::get_param('answer',$parstack,
432: $safeeval);
1.10 albertel 433: $result .='<nobr>'.
434: &Apache::edit::text_arg('Answer:','answer',$token,40);
435: $result .=&edit_reaction_button($id,&Apache::edit::html_element_name('answer'),$answer).'</nobr>';
1.35 albertel 436: my $initial=&Apache::lonxml::get_param('initial',$parstack,$safeeval);
437: $result.='<nobr>'.
1.43 albertel 438: &Apache::edit::text_arg('Initial Reaction:','initial',$token,40);
1.35 albertel 439: $result .=&edit_reaction_button($id,&Apache::edit::html_element_name('initial'),$initial).'</nobr>';
1.10 albertel 440:
1.9 albertel 441: $result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.10 albertel 442: } elsif ($target eq 'modified') {
443: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
1.35 albertel 444: $safeeval,'answer',
445: 'initial');
1.10 albertel 446: if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
1.4 albertel 447: }
448: return $result;
449: }
450:
451: sub end_reactionresponse {
452: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
453: my $result;
1.45 albertel 454: if ($target eq 'grade' && &Apache::response::submitted()) {
1.31 albertel 455: &Apache::response::setup_params($$tagstack[-1],$safeeval);
1.10 albertel 456: my $response = &Apache::response::getresponse();
457: if ( $response =~ /[^\s]/) {
458: my $partid = $Apache::inputtags::part;
459: my $id = $Apache::inputtags::response['-1'];
1.15 albertel 460: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
1.10 albertel 461: my %previous = &Apache::response::check_for_previous($response,$partid,$id);
462: $Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
463: my $ad;
1.13 albertel 464: foreach my $answer (@answers) {
465: &Apache::lonxml::debug("submitted a $response for $answer<br \>\n");
1.34 albertel 466: if (&chem_standard_order($response) eq
467: &chem_standard_order($answer)) {
1.13 albertel 468: $ad='EXACT_ANS';
469: } else {
470: $ad='INCORRECT';
471: }
1.10 albertel 472: }
1.42 albertel 473: if ($ad && $Apache::lonhomework::type eq 'survey') {
474: $ad='SUBMITTED';
475: }
1.10 albertel 476: &Apache::response::handle_previous(\%previous,$ad);
477: $Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad;
478: }
479: } elsif ($target eq "edit") {
1.4 albertel 480: $result.= &Apache::edit::tag_end($target,$token,'');
1.15 albertel 481: } elsif ($target eq 'answer') {
482: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,
483: $safeeval);
484: $result.=&Apache::response::answer_header('reactionresponse');
485: foreach my $answer (@answers) {
486: $result.=&Apache::response::answer_part('reactionresponse',
487: $answer);
488: }
489: $result.=&Apache::response::answer_footer('reactionresponse');
1.4 albertel 490: }
1.63 ! albertel 491:
! 492: if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
! 493: $target eq 'tex' || $target eq 'analyze') {
! 494: &Apache::lonxml::increment_counter(&Apache::response::repetition());
! 495: }
! 496: &Apache::response::end_response();
1.3 albertel 497: return $result;
1.1 albertel 498: }
499:
1.46 albertel 500: sub start_chem {
501: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
502: my $result = '';
1.48 albertel 503: my $inside = &Apache::lonxml::get_all_text_unbalanced("/chem",$parser);
1.46 albertel 504: if ($target eq 'tex' || $target eq 'web') {
1.48 albertel 505: $inside=&Apache::run::evaluate($inside,$safeeval,$$parstack[-1]);
506: if (!$Apache::lonxml::default_homework_loaded) {
507: &Apache::lonxml::default_homework_load($safeeval);
508: }
509: @Apache::scripttag::parser_env = @_;
510: $result=&Apache::run::run("return &chemparse(q\0$inside\0);",$safeeval);
1.46 albertel 511: }
512: return $result;
513: }
514:
515: sub end_chem {
516: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
517: my $result = '';
518: return $result;
519: }
520:
1.1 albertel 521: 1;
522: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>