File:  [LON-CAPA] / loncom / homework / structuretags.pm
Revision 1.116: download - view: text, annotated - select for diffs
Mon Sep 23 17:25:24 2002 UTC (21 years, 7 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- make the default fields wider

    1: # The LearningOnline Network with CAPA 
    2: # definition of tags that give a structure to a document
    3: #
    4: # $Id: structuretags.pm,v 1.116 2002/09/23 17:25:24 albertel Exp $
    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: # 2/19 Guy
   29: # 6/26/2001 fixed extra web display at end of <web></web> tags
   30: # 8/17,8/18,8/20 Gerd Kortemeyer
   31: 
   32: package Apache::structuretags; 
   33: 
   34: use strict;
   35: use Apache::lonnet;
   36: use Apache::File();
   37: 
   38: BEGIN {
   39:   &Apache::lonxml::register('Apache::structuretags',('block','while','randomlist','problem','library','web','tex','part','preduedate','postanswerdate','solved','notsolved','startouttext','endouttext'));
   40: #  &Apache::lonxml::register_insert('problem','',('part','postanswerdate','preduedate'))
   41: }
   42: 
   43: sub start_web {
   44:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   45:   my $bodytext=&Apache::lonxml::get_all_text("/web",$$parser[$#$parser]);
   46:   if ($target eq 'web') {
   47:     return $bodytext;
   48:   } 
   49:   return '';
   50: }
   51: 
   52: sub end_web {
   53:     return '';
   54: }
   55: 
   56: sub start_tex {
   57:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   58:   my $bodytext=&Apache::lonxml::get_all_text("/tex",$$parser[$#$parser]);
   59:   if ($target eq 'tex') {
   60:       return $bodytext.' ';
   61:   }
   62:   return '';
   63: }
   64: 
   65: sub end_tex {
   66:     return '';
   67: }
   68: 
   69: sub page_start {
   70:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   71:   my %found;
   72:   foreach my $taginside ($tagstack) {
   73:     foreach my $taglookedfor ('html','body','form') {
   74:       if ($taginside =~ /^$taglookedfor$/i) { $found{$taglookedfor} = 1; }
   75:     }
   76:   }
   77: 
   78:   my $result;
   79:   my $head_tag_start;
   80:   if (!defined($found{'html'})) {
   81:     $result=&Apache::londefdef::start_html($target,$token,$tagstack,$parstack,
   82: 					   $parser,$safeeval);
   83:     $head_tag_start='<head>'.&Apache::lonxml::registerurl(undef,$target);
   84:   }
   85:   my $body_tag_start;
   86:   if (!defined($found{'body'})) {
   87:     $body_tag_start='<body onLoad="'.&Apache::lonxml::loadevents().'" '.
   88:       'onUnload="'.&Apache::lonxml::unloadevents().'" ';
   89:     my $background=&Apache::lonxml::get_param('background',$parstack,$safeeval);
   90:     if ($background) {
   91:       $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=
   92: 	$background;
   93:       $body_tag_start.='background="'.$background.'" ';
   94:     } else {
   95:       my $bgcolor=&Apache::lonxml::get_param('bgcolor',$parstack,$safeeval);
   96:       if ($bgcolor) {
   97: 	$body_tag_start.='bgcolor="'.$bgcolor.'" ';
   98:       } else {
   99: 	$body_tag_start.='bgcolor="#ffffff"';
  100:       }
  101:     }
  102:     $body_tag_start.='>';
  103:   }
  104:   my $form_tag_start;
  105:   if (!defined($found{'form'})) {
  106:     $form_tag_start='<form name="lonhomework" method="POST" action="'.
  107:       $ENV{'request.uri'}.'">';
  108:   }
  109:   return ($result,$head_tag_start,$body_tag_start,$form_tag_start);
  110: }
  111: 
  112: sub get_resource_name {
  113:   my ($parstack,$safeeval)=@_;
  114:   my $name=&Apache::lonxml::get_param('name',$parstack,$safeeval);
  115:   if ($name eq '') { 
  116:     $name=&Apache::lonnet::EXT('resource.title');
  117:     if ($name eq 'con_lost') { $name = ''; }
  118:   }
  119:   $Apache::lonhomework::name=$name;
  120:   return $name;
  121: }
  122: 
  123: sub setup_rndseed {
  124:   my ($safeeval)=@_;
  125:   my $rndseed;
  126:   if ($ENV{'request.state'} eq "construct") {
  127:     $rndseed=$ENV{'form.rndseed'};
  128:     if (!$rndseed) {
  129:       $rndseed=time;
  130:       $ENV{'form.rndseed'}=$rndseed;
  131:     }
  132:     &Apache::run::run('$external::randomseed='.$rndseed.';',$safeeval);
  133:   }
  134:   return $rndseed;
  135: }
  136: 
  137: sub problem_edit_header {
  138:   return '<input type="hidden" name="submitted" value="edit" />
  139:        <input type="hidden" name="problemmode" value="Edit" />
  140:        <input type="submit" name="problemmode" value="Discard Edits and View" />
  141:        <input type="submit" name="problemmode" value="EditXML" />
  142:        <input type="submit" name="Undo" value="undo" /> <hr />
  143:        <input type="submit" name="submit" value="Submit Changes" />
  144:        <input type="submit" name="submit" value="Submit Changes and View" /><br />
  145:       ';
  146: }
  147: 
  148: sub problem_edit_footer {
  149:   return '<br /><input type="submit" name="submit" value="Submit Changes and Edit" />
  150:     <input type="submit" name="submit" value="Submit Changes and View" />';
  151: }
  152: 
  153: sub problem_web_to_edit_header {
  154:   my ($rndseed)=@_;
  155:   my $result.='<input type="hidden" name="problemmode" value="View" />
  156:              <input type="submit" name="problemmode" value="Edit" />
  157:              <input type="submit" name="problemmode" value="EditXML" />
  158:              Random Seed:<input type="text" name="rndseed" width="10" value="'.
  159: 	       $rndseed.'" />
  160:              <input type="submit" name="changerandseed" value="Change" />
  161:              <input type="submit" name="resetdata" value="Reset Submissions" />
  162:              <input type="checkbox" name="showallfoils" ';
  163:   if (defined($ENV{'form.showallfoils'})) { $result.='checked="on"'; }
  164:   $result.= ' />&nbsp;Show&nbsp;All&nbsp;Foils
  165:              <hr />';
  166: }
  167: 
  168: sub initialize_storage {
  169:   %Apache::lonhomework::results=();
  170:   my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
  171:   if ($ENV{'request.state'} eq 'construct') {
  172:     %Apache::lonhomework::history=
  173:       &Apache::lonnet::tmprestore($ENV{'request.uri'},'',$domain,$name);
  174:     my ($temp)=keys %Apache::lonhomework::history ;
  175:     &Apache::lonxml::debug("Return message of $temp");
  176:   } else {
  177:     %Apache::lonhomework::history=
  178:       &Apache::lonnet::restore($symb,$courseid,$domain,$name);
  179:   }
  180:   #ignore error conditions
  181:   my ($temp)=keys %Apache::lonhomework::history ;
  182:   if ($temp =~ m/^error:.*/) { %Apache::lonhomework::history=(); }
  183: }
  184: 
  185: # -------------------------------------------------------------finalize_storage
  186: # Stores away the result has to a student's environment
  187: # checks form.grade_ for specific values, other wises stores
  188: # to the running users environment
  189: sub finalize_storage {
  190:   my $result;
  191:   my ($temp) = keys %Apache::lonhomework::results;
  192:   if ( $temp ne '' ) {
  193:     my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
  194:     if ($ENV{'request.state'} eq 'construct') {
  195:       $result=&Apache::lonnet::tmpstore(\%Apache::lonhomework::results,
  196: 				      $ENV{'request.uri'},'',$domain,$name);
  197:       &Apache::lonxml::debug('Construct Store return message:'.$result);
  198:     } else {
  199:       $result=&Apache::lonnet::cstore(\%Apache::lonhomework::results,
  200: 				      $symb,$courseid,$domain,$name);
  201:       &Apache::lonxml::debug('Store return message:'.$result);
  202:     }
  203:   }
  204:   return $result;
  205: }
  206: 
  207: sub checkout_msg {
  208: return (<<ENDCHECKOUT);
  209: <h2>The resource needs to be checked out</h2>
  210: As a resource gets checked out, a unique timestamped ID is given to it, and a
  211: permanent record is left in the system.<p />
  212: <font color=red>
  213: Checking out resources is subject to course policies, and may exclude future
  214: credit even if done erroneously.<p />
  215: </font>
  216: <form name="checkout" method="POST" action="$ENV{'request.uri'}">
  217: <input type="hidden" name="doescheckout" value="yes" />
  218: <input type="button" name="checkoutbutton" value="Check out Exam for Viewing" onClick="javascript:if (confirm('Check out Exam?')) { document.checkout.submit(); }" />
  219: </form>
  220: ENDCHECKOUT
  221: }
  222: 
  223: sub start_problem {
  224:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  225: 
  226:   # meta is called from lonpublisher, which doesn't uses the normal
  227:   # lonhomework method of parsing the file which means that inputtags 
  228:   # won't get reset
  229:   if ( $Apache::inputtags::part ne '' && $target != 'meta' ) {
  230:     &Apache::lonxml::error('Only one problem allowed in a .problem file');
  231:     my $bodytext=&Apache::lonxml::get_all_text("/problem",$$parser[-1]);
  232:     return '';
  233:   }
  234: #intialize globals
  235:   $Apache::inputtags::part='0';
  236:   @Apache::inputtags::responselist = ();
  237:   @Apache::inputtags::previous=();
  238:   if ($target ne 'analyze') {
  239:     &initialize_storage();
  240:     if ($target eq 'web') {
  241:       &Apache::lonhomework::showhash(%Apache::lonhomework::history);
  242:     }
  243:     $Apache::lonhomework::type=&Apache::lonnet::EXT('resource.0.type');
  244:     &Apache::lonxml::debug("Found this to be of type :$Apache::lonhomework::type:");
  245:   }
  246:   if ($Apache::lonhomework::type eq '') {
  247:     my $uri=$ENV{'request.uri'};
  248:     if ($uri=~/\.(\w+)$/) {
  249:       $Apache::lonhomework::type=$1;
  250:       &Apache::lonxml::debug("Using type of $1");
  251:     } else {
  252:       $Apache::lonhomework::type='problem';
  253:       &Apache::lonxml::debug("Using default type, problem, :$uri:");
  254:     }
  255:   }
  256: 
  257:   #added vars to the scripting enviroment
  258:   my $expression='$external::part='.$Apache::inputtags::part.';';
  259:   &Apache::run::run($expression,$safeeval);
  260:   my $status;
  261:   my $accessmsg;
  262: 
  263:   #should get back a <html> or the neccesary stuff to start XML/MathML
  264:   my ($result,$head_tag_start,$body_tag_start,$form_tag_start)=
  265:     &page_start($target,$token,$tagstack,$parstack,$parser,$safeeval);
  266:   if ($target eq 'tex' and $ENV{'request.symb'} =~ m/\.page_/) { $result = '';}
  267: 
  268:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  269:     #handle exam checkout
  270:     if ($Apache::lonhomework::type eq 'exam') {
  271:       my $token=$Apache::lonhomework::history{"resource.0.outtoken"};
  272:       if (($ENV{'form.doescheckout'}) && (!$token)) {
  273: 	$token=&Apache::lonxml::maketoken();
  274: 	$Apache::lonhomework::history{"resource.0.outtoken"}=$token;
  275:       }
  276:       $body_tag_start.=&Apache::lonxml::printtokenheader($target,$token);
  277:     }
  278: 
  279:     #handle rand seed in construction space
  280:     my $rndseed=&setup_rndseed($safeeval);
  281:     ($status,$accessmsg) = &Apache::lonhomework::check_access('0');
  282:     push (@Apache::inputtags::status,$status);
  283:     my $expression='$external::datestatus="'.$status.'";';
  284:     $expression.='$external::gradestatus="'.$Apache::lonhomework::history{"resource.0.solved"}.'";';
  285:     &Apache::run::run($expression,$safeeval);
  286:     if (( $status eq 'CLOSED' ) ||
  287:         ( $status eq 'UNCHECKEDOUT') ||
  288:         ( $status eq 'BANNED')) {
  289:       my $bodytext=&Apache::lonxml::get_all_text("/problem",$$parser[$#$parser]);
  290:       if ( $target eq "web" ) {
  291: 	$result.= $head_tag_start.'</head>';
  292:         my $msg=$body_tag_start.
  293: 	    '<h1>Not open to be viewed</h1>';
  294:         if ($status eq 'CLOSED') {
  295: 	    $msg.='The problem '.$accessmsg;
  296: 	} elsif ($status eq 'UNCHECKEDOUT') {
  297:             $msg.=&checkout_msg;
  298:         }
  299: 	$result.=$msg.'<br />';
  300:       }
  301:     } elsif ($target eq 'web') {
  302:       my $name= &get_resource_name($parstack,$safeeval);
  303:       if ($status eq 'CAN_ANSWER') {
  304: 	# create a page header and exit
  305: 	$result.="$head_tag_start<title>$name</title></head>
  306:               $body_tag_start \n $form_tag_start".	
  307: 		'<input type="hidden" name="submitted" value="yes" />';
  308: 	if ($ENV{'request.state'} eq "construct") {
  309: 	  $result.= &problem_web_to_edit_header($rndseed);
  310: 	}
  311: 	# if we are viewing someone else preserve that info
  312: 	if (defined $ENV{'form.grade_symb'}) {
  313: 	  foreach my $field ('symb','courseid','domain','username') {
  314: 	    $result .= '<input type="hidden" name="grade_'.$field.
  315: 	      '" value="'.$ENV{"form.grade_$field"}.'" />'."\n";
  316: 	  }
  317: 	}
  318:       } elsif ($status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER'
  319: 	       || $status eq 'CLOSED') {
  320: 	$result.=$head_tag_start.
  321: 	  "<title>$name</title></head>\n$body_tag_start\n";
  322:       }
  323:     } elsif ($target eq 'tex') {
  324: 	my $name= &Apache::lonxml::get_param('name',$parstack,$safeeval);
  325: 	if ($name eq '') { 
  326: 	    $name=&Apache::lonnet::EXT('resource.title');
  327: 	    if ($name eq 'con_lost') { $name = ''; }
  328: 	}
  329: 	$Apache::lonhomework::name=$name;
  330: 	my $id = $Apache::inputtags::part;
  331: 	my $duedate = &Apache::lonnet::EXT("resource.$id.duedate"); 
  332: 	$duedate = POSIX::strftime("%c",localtime($duedate));
  333: 	my $temp_file;
  334: 	my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout.due";
  335:         if (-e $filename) {
  336: 	    $temp_file = Apache::File->new($filename); 
  337: 	} else {
  338: 	    $temp_file = Apache::File->new('>>'.$filename); 
  339: 	}
  340: 	my @due_file_content = <$temp_file>;
  341: 	my $due_file_content = $due_file_content[$#due_file_content];
  342:         chomp $due_file_content;
  343:         if ($due_file_content ne $duedate) {	    
  344: 	$temp_file = Apache::File->new('>'.$filename); 
  345: 	    print $temp_file "$duedate\n";	    
  346: 	    if (not $ENV{'request.symb'} =~ m/\.page_/) {
  347: 		if(not $duedate=~m/1969/) {
  348: 		    $result .= '\begin{document} \noindent\textit{Due date: '.$duedate.'} \vskip 1 mm';	
  349: 		} else {
  350: 		    $result .= '\begin{document} \noindent \vskip 1 mm';
  351: 		}
  352: 	    } else {
  353: 		$result .= '\parbox{\minipagewidth}{\vskip 1mm\textit{Due date: '.$duedate.'} \\\\\\\\';
  354: 	    } 
  355: 	} else {
  356: 	    if (not $ENV{'request.symb'} =~ m/\.page_/) {
  357: 		$result .= '\begin{document} \noindent \vskip 1 mm';	
  358: 	    } else {
  359: 		$result .= '\parbox{\minipagewidth}{\vskip 1mm \\\\\\\\';
  360: 	    } 
  361: 	}
  362:     }
  363:   } elsif ($target eq 'edit') {
  364:     $result.=$head_tag_start."</head>".$body_tag_start.$form_tag_start.
  365:       &problem_edit_header();
  366:     my $temp=&Apache::edit::insertlist($target,$token);
  367:     $result.=$temp;
  368:   } elsif ($target eq 'modified') {
  369:     $result=$token->[4];
  370:     $result.=&Apache::edit::handle_insert();
  371:   } else {
  372:     # page_start returned a starting result, delete it if we don't need it
  373:     $result = '';
  374:   }
  375:   return $result;
  376: }
  377: 
  378: sub end_problem {
  379:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  380:   my $result='';
  381:   my $status=$Apache::inputtags::status['-1'];
  382:   if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || $target eq 'tex') {
  383:     if ( $target eq 'grade' && $Apache::inputtags::part eq '0') {
  384:       # if part is zero, no <part>s existed, so we need to the grading
  385:       &Apache::inputtags::grade;
  386:     } elsif ( ($target eq 'web' || $target eq 'tex') && $Apache::inputtags::part eq '0' && 
  387: 	      $status ne 'UNCHECKEDOUT') {
  388:       # if part is zero, no <part>s existed, so we need show the current 
  389:       # grading status
  390:       my $gradestatus = &Apache::inputtags::gradestatus($Apache::inputtags::part);
  391:       #FIXME this is ugly we should just generate tex in inputtags
  392:       if ($target eq 'tex') { $gradestatus=&html_to_tex($gradestatus); }
  393:       $result.= $gradestatus;
  394:     }
  395:     if (
  396: 	(($target eq 'web') && ($ENV{'request.state'} ne 'construct')) ||
  397: 	($target eq 'answer') || ($target eq 'tex')
  398:        ) {
  399:       if ($status eq 'CAN_ANSWER') {
  400: 	  if ($target ne 'tex') {
  401: 	      $result.="</form></body>\n";
  402: 	  } 
  403:       } elsif ($status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER' ||
  404: 	       $status eq 'UNCHECKEDOUT' ) {
  405: 	  if ($target ne 'tex') {
  406: 	      $result.="</body>\n";
  407: 	  }
  408:       }
  409:       if ($target ne 'tex') {
  410: 	  $result.=&Apache::lonxml::xmlend();
  411:       } else {
  412: 	      $result .= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}';
  413: 	      if (not $ENV{'request.symb'} =~ m/\.page_/) {
  414: 		  $result .= '\end{document} ';
  415: 	      } else {
  416: 		  $result .= '} ';
  417: 	      }
  418:       }
  419:     }
  420:     if ($target eq 'grade') { 
  421:       &Apache::lonhomework::showhash(%Apache::lonhomework::results);
  422:       &finalize_storage();
  423:     }
  424:   } elsif ($target eq 'meta') {
  425:     if ($Apache::inputtags::part eq '0') {
  426:       $result=&Apache::response::mandatory_part_meta;
  427:     }
  428:   } elsif ($target eq 'edit') {
  429:     &Apache::lonxml::debug("in end_problem with $target, edit");
  430:     $result = &problem_edit_footer();
  431:   } 
  432:   return $result;
  433: }
  434: 
  435: #FIXME I am ugly shoot me
  436: sub html_to_tex {
  437:   my ($string)=@_;
  438:   $string =~ s/<table>//;
  439:   $string =~ s/<\/table>//;
  440:   $string =~ s/<tr([^>]*)>//g;
  441:   $string =~ s/<\/tr>//g;
  442:   $string =~ s/<td([^>]*)>//g;
  443:   $string =~ s/<\/td>//g;
  444:   $string =~ s/<b>/\\textbf{/g;
  445:   $string =~ s/<\/b>/}/g;
  446:   $string =~ s/<br \/>/\\vskip 0 mm /g;
  447:   $string =~ s/<input([^>]*)>//g;
  448:   return $string;
  449: }
  450: 
  451: sub start_library {
  452:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  453:   my ($result,$head_tag_start,$body_tag_start,$form_tag_start);
  454: 
  455:   if ($target eq 'edit') {
  456:     ($result,$head_tag_start,$body_tag_start,$form_tag_start)=
  457:       &page_start($target,$token,$tagstack,$parstack,$parser,$safeeval);
  458:     $result.=$head_tag_start."</head>".$body_tag_start.$form_tag_start.
  459:       &problem_edit_header();
  460:     my $temp=&Apache::edit::insertlist($target,$token);
  461:     $result.=$temp;
  462:   } elsif ($target eq 'modified') {
  463:     $result=$token->[4];
  464:     $result.=&Apache::edit::handle_insert();
  465:   } elsif ($target eq 'web' && $$tagstack[0] ne 'problem' &&
  466: 	   $ENV{'request.state'} eq "construct" ) {
  467:     ($result,$head_tag_start,$body_tag_start,$form_tag_start)=
  468:       &page_start($target,$token,$tagstack,$parstack,$parser,$safeeval);
  469:     my $name=&get_resource_name($parstack,$safeeval);
  470:     my $rndseed=&setup_rndseed($safeeval);
  471:     $result.="$head_tag_start<title>$name</title></head>
  472:               $body_tag_start \n $form_tag_start".	
  473: 		'<input type="hidden" name="submitted" value="yes" />';
  474:     $result.=&problem_web_to_edit_header($rndseed);
  475:   }
  476:   return $result;
  477: }
  478: 
  479: sub end_library {
  480:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  481:   my $result='';
  482:   if ($target eq 'edit') {
  483:     $result=&problem_edit_footer();
  484:   } elsif ($target eq 'web' && $$tagstack[0] ne 'problem' &&
  485: 	   $ENV{'request.state'} eq "construct") {
  486:     $result.='</form></body>'.&Apache::lonxml::xmlend();
  487:   }
  488:   return $result;
  489: }
  490: 
  491: sub start_block {
  492:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  493: 
  494:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  495:     my $code = @$parstack[$#$parstack];
  496:     $code =~ s/\"//g;
  497:     $code .=';return $condition;';
  498:     #  print "<br />$code<br />";
  499:     my $result = &Apache::run::run($code,$safeeval);
  500:     &Apache::lonxml::debug("block :$code: returned :$result:");
  501:     if ( ! $result ) { 
  502:       my $skip=&Apache::lonxml::get_all_text("/block",$$parser[$#$parser]);
  503:       &Apache::lonxml::debug("skipping ahead :$skip: $$parser[$#$parser]");
  504:     }
  505:   }
  506:   return "";
  507: }
  508: 
  509: sub end_block {
  510:   return '';
  511: }
  512: 
  513: sub start_while {
  514:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  515: 
  516:   my $code = @$parstack[$#$parstack];
  517:   $code =~ s/\"//g;
  518:   $code .=';return $condition;';
  519: 
  520:   push( @Apache::structuretags::whileconds, $code); 
  521:   my $result = &Apache::run::run($code,$safeeval);
  522:   my $bodytext=$$parser[$#$parser]->get_text("/while");
  523:   push( @Apache::structuretags::whilebody, $bodytext);
  524:   if ( $result ) { 
  525:     &Apache::lonxml::newparser($parser,\$bodytext);
  526:   }
  527:   return "";
  528: }
  529: 
  530: sub end_while {
  531:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  532:   my $code = pop @Apache::structuretags::whileconds;
  533:   my $bodytext = pop @Apache::structuretags::whilebody;
  534:   my $result = &Apache::run::run($code,$safeeval);
  535:   if ( $result ) { 
  536:     &Apache::lonxml::newparser($parser,\$bodytext);
  537:   } 
  538:   return "";
  539: }
  540: 
  541: # <randomlist show="1"> 
  542: #  <tag1>..</tag1>
  543: #  <tag2>..</tag2>
  544: #  <tag3>..</tag3>
  545: #  ... 
  546: # </randomlist>
  547: sub start_randomlist {
  548:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  549:   my $result;
  550:   if ($target eq 'answer' || $target eq 'grade' || $target eq 'web' ||
  551:       $target eq 'tex') {
  552:     my $body= &Apache::lonxml::get_all_text("/randomlist",$$parser[$#$parser]);
  553:     my $b_parser= HTML::TokeParser->new(\$body);
  554:     my $b_tok;
  555:     my @randomlist;
  556:     my $list_item;
  557:     while($b_tok = $b_parser->get_token() ) {
  558:       if($b_tok->[0] eq 'S') { # start tag
  559: 	# get content of the tag until matching end tag
  560: 	# get all text upto the matching tag
  561: 	# and push the content into @randomlist
  562: 	$list_item = &Apache::lonxml::get_all_text('/'.$b_tok->[1],$b_parser);
  563: 	$list_item = "$b_tok->[4]"."$list_item"."</$b_tok->[1]>";
  564: 	push(@randomlist,$list_item);
  565: 	#  print "<br /><b>START-TAG $b_tok->[1], $b_tok->[4], $list_item</b>";
  566:       }
  567:       if($b_tok->[0] eq 'T') { # text
  568: 	# what to do with text in between tags?
  569: 	#  print "<b>TEXT $b_tok->[1]</b><br />";
  570:       }
  571:       # if($b_tok->[0] eq 'E') { # end tag, should not happen
  572:       #  print "<b>END-TAG $b_tok->[1]</b><br />";
  573:       # }
  574:     }
  575:     my @idx_arr = (0 .. $#randomlist);
  576:     &Apache::structuretags::shuffle(\@idx_arr);
  577:     my $bodytext = '';
  578:     my $show=$#randomlist;
  579:     my $showarg=&Apache::lonxml::get_param('show',$parstack,$safeeval);
  580:     $showarg--;
  581:     if ( ($showarg >= 0) && ($showarg < $show) ) { $show = $showarg; }
  582:     for(0 .. $show) {
  583:       $bodytext .= "$randomlist[ $idx_arr[$_] ]";
  584:     }
  585:     &Apache::lonxml::newparser($parser,\$bodytext);
  586:   } elsif ($target eq 'edit' ) {
  587:     $result .= &Apache::edit::tag_start($target,$token);
  588:     $result .= &Apache::edit::text_arg('Maximum Tags to Show:','show',$token,5);
  589:     $result .= &Apache::edit::end_row().&Apache::edit::start_spanning_row();
  590:   } elsif ($target eq 'modified' ) {
  591:     my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
  592: 						 'show');
  593:     if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  594:   }
  595:   return $result;
  596: }
  597: 
  598: sub shuffle {
  599:     my $a=shift;
  600:     my $i;
  601:     if (defined(@$a)) {
  602:       &Apache::response::setrandomnumber();
  603:       for($i=@$a;--$i;) {
  604: 	my $j=int rand($i+1);
  605: 	next if $i == $j;
  606: 	@$a[$i,$j] = @$a[$j,$i];
  607:       }
  608:     }
  609: }
  610: 
  611: sub end_randomlist {
  612:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  613:   my $result;
  614:   if ($target eq 'edit' ) {
  615:     $result=&Apache::edit::tag_end($target,$token,'End Randomly Parsed Block');
  616:   }
  617:   return $result;
  618: }
  619: 
  620: sub start_part {
  621:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  622:   my $result='';
  623:   my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
  624:   if ($id eq '') { $id = $Apache::lonxml::curdepth; }
  625:   $Apache::inputtags::part=$id;
  626:   @Apache::inputtags::responselist = ();
  627:   @Apache::inputtags::previous=();
  628:   if ($target eq 'meta') {
  629:     return &Apache::response::mandatory_part_meta;
  630:   } elsif ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  631:     my ($status,$accessmsg) = &Apache::lonhomework::check_access($id);
  632:     push (@Apache::inputtags::status,$status);
  633:     my $expression='$external::datestatus="'.$status.'";';
  634:     $expression.='$external::gradestatus="'.$Apache::lonhomework::history{"resource.$id.solved"}.'";';
  635:     &Apache::run::run($expression,$safeeval);
  636:     if ( $status eq 'CLOSED' ) {
  637:       my $bodytext=&Apache::lonxml::get_all_text("/part",$$parser[$#$parser]);
  638:       if ( $target eq "web" ) {
  639: 	$result="<br />Part is not open to be viewed. It $accessmsg<br />";
  640:       } elsif ( $target eq 'tex' ) {
  641: 	$result="\\vskip 0 mm Part is not open to be viewed. It $accessmsg \\\\";
  642:       }
  643:     } else {
  644:       if ($target eq 'tex') {
  645: 	$result='\vskip 0 mm';
  646:       }
  647:     }
  648:   }
  649:   return $result;
  650: }
  651: 
  652: sub end_part {
  653:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  654:   &Apache::lonxml::debug("in end_part $target ");
  655:   my $status=$Apache::inputtags::status['-1'];
  656:   pop @Apache::inputtags::status;
  657:   if ( $target eq 'meta' ) { return ''; }
  658:   if ( $target eq 'grade' && $status eq 'CAN_ANSWER') {
  659:     return &Apache::inputtags::grade;
  660:   }
  661:   if ($target eq 'web' || $target eq 'tex' ) {
  662:     my $gradestatus=&Apache::inputtags::gradestatus($Apache::inputtags::part);
  663:     #FIXME this is ugly we should just generate tex in inputtags
  664:     if ($target eq 'tex') { $gradestatus=&html_to_tex($gradestatus); }
  665:     return $gradestatus;
  666:   }
  667:   return '';
  668: }
  669: 
  670: sub start_preduedate {
  671:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  672:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  673:     if ($Apache::inputtags::status['-1'] ne 'CAN_ANSWER' &&
  674: 	$Apache::inputtags::status['-1'] ne 'CANNOT_ANSWER' ) {
  675:       &Apache::lonxml::get_all_text("/preduedate",$$parser[$#$parser]);
  676:     }
  677:   }
  678:   return '';
  679: }
  680: 
  681: sub end_preduedate {
  682:   return '';
  683: }
  684: 
  685: sub start_postanswerdate {
  686:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  687:   if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
  688:     if ($Apache::inputtags::status['-1'] ne 'SHOW_ANSWER') {
  689:       &Apache::lonxml::get_all_text("/postanswerdate",$$parser[$#$parser]);
  690:     }
  691:   } elsif ($target eq 'tex') {
  692:       return '\vskip 0 mm \noindent';
  693:   }
  694:   return '';
  695: }
  696: 
  697: sub end_postanswerdate {
  698:   return '';
  699: }
  700: 
  701: sub start_notsolved {
  702:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  703:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  704:     my $gradestatus=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
  705:     &Apache::lonxml::debug("not solved has :$gradestatus:");
  706:     if ($gradestatus =~ /^correct/) {
  707:       &Apache::lonxml::debug("skipping");
  708:       &Apache::lonxml::get_all_text("/notsolved",$$parser[$#$parser]);
  709:     }
  710:   }
  711:   return '';
  712: }
  713: 
  714: sub end_notsolved {
  715:   return '';
  716: }
  717: 
  718: sub start_solved {
  719:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  720:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  721:     my $gradestatus=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
  722:     if ($gradestatus !~ /^correct/) {
  723:       &Apache::lonxml::get_all_text("/solved",$$parser[$#$parser]);
  724:     }
  725:   }
  726:   return '';
  727: }
  728: 
  729: sub end_solved {
  730:   return '';
  731: }
  732: 
  733: sub start_startouttext {
  734:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  735:   my @result=(''.'');
  736:   if ($target eq 'edit' || $target eq 'modified' ) { @result=('','no'); }
  737:   return (@result);
  738: }
  739: sub end_startouttext {
  740:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  741:   my $result='';
  742:   my $text='';
  743: 
  744:   if ($target eq 'edit') {
  745:     $text=&Apache::lonxml::get_all_text("endouttext",$$parser[-1]);
  746:     $result.=&Apache::edit::start_table($token)."<tr><td>Text Block</td>
  747: <td>Delete:".
  748:   &Apache::edit::deletelist($target,$token)
  749:     ."</td>
  750: <td>".
  751:   &Apache::edit::insertlist($target,$token).
  752:     &Apache::edit::end_row().&Apache::edit::start_spanning_row()."\n".
  753:       &Apache::edit::editfield($token->[1],$text,"",80,4);
  754:   }
  755:   if ($target eq 'modified') {
  756:     $text=&Apache::lonxml::get_all_text("endouttext",$$parser['-1']);
  757:     $result='<startouttext />'.&Apache::edit::modifiedfield();
  758:   }
  759:   if ($target eq 'tex') {
  760:       $result .= '\noindent ';
  761:   }
  762:   return $result;
  763: }
  764: sub start_endouttext {
  765:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  766:   my $result='';
  767:   if ($target eq "edit" ) { $result="</td></tr>".&Apache::edit::end_table()."\n"; }
  768:   if ($target eq "modified") { $result='<endouttext />'; }
  769:   return $result;
  770: }
  771: sub end_endouttext {
  772:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  773:   my @result=('','');
  774:   if ($target eq "edit" || $target eq 'modified') { @result=('','no'); }
  775:   return (@result);
  776: }
  777: sub delete_startouttext {
  778:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  779: #  my $text=&Apache::lonxml::get_all_text("endouttext",$$parser['-1']);
  780:   my $text=$$parser['-1']->get_text("/endouttext");
  781:   my $ntoken=$$parser['-1']->get_token();
  782:   &Apache::lonxml::debug("Deleting :$text: and :$ntoken->[0]:$ntoken->[1]:$ntoken->[2]: for startouttext");
  783:   &Apache::lonxml::end_tag($tagstack,$parstack,$ntoken);
  784:   # Deleting 2 parallel tag pairs, but we need the numbers later to look like 
  785:   # they did the last time round
  786:   &Apache::lonxml::increasedepth($ntoken);
  787:   &Apache::lonxml::decreasedepth($ntoken);
  788:   return 1;
  789: }
  790: 
  791: 1;
  792: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>