File:  [LON-CAPA] / loncom / homework / structuretags.pm
Revision 1.187: download - view: text, annotated - select for diffs
Thu Jun 19 20:04:16 2003 UTC (20 years, 10 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- you put anything you want into the randomseed now. BUG#1352

    1: # The LearningOnline Network with CAPA 
    2: # definition of tags that give a structure to a document
    3: #
    4: # $Id: structuretags.pm,v 1.187 2003/06/19 20:04:16 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: 
   33: package Apache::structuretags; 
   34: 
   35: use strict;
   36: use Apache::lonnet;
   37: use Apache::File();
   38: use Apache::lonmenu;
   39: 
   40: BEGIN {
   41:     &Apache::lonxml::register('Apache::structuretags',('block','languageblock','instructorcomment','while','randomlist','problem','library','web','tex','part','preduedate','postanswerdate','solved','notsolved','startouttext','endouttext'));
   42: }
   43: 
   44: sub start_web {
   45:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   46:     if (!($target eq 'web' || $target eq 'edit' || $target eq 'modified' ||
   47: 	  $target eq 'answer' || $target eq 'grade' || $target eq 'meta' )) {
   48: 	my $bodytext=&Apache::lonxml::get_all_text("/web",$parser);
   49:     }
   50:     return '';
   51: }
   52: 
   53: sub end_web {
   54:     return '';
   55: }
   56: 
   57: sub start_tex {
   58:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   59:     if (!($target eq 'tex' || $target eq 'edit' || $target eq 'modified' ||
   60: 	  $target eq 'answer' || $target eq 'grade' || $target eq 'meta' )) {
   61: 	&Apache::lonxml::debug("tex 1");
   62: 	my $bodytext=&Apache::lonxml::get_all_text("/tex",$parser);
   63:     }
   64:     return '';
   65: }
   66: 
   67: sub end_tex {
   68:     return '';
   69: }
   70: 
   71: sub page_start {
   72:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   73:     my %found;
   74:     foreach my $taginside ($tagstack) {
   75: 	foreach my $taglookedfor ('html','body','form') {
   76: 	    if ($taginside =~ /^$taglookedfor$/i) {$found{$taglookedfor} = 1;}
   77: 	}
   78:     }
   79: 
   80:     my $result;
   81:     my $head_tag_start;
   82:     if (!defined($found{'html'})) {
   83: 	$result=&Apache::londefdef::start_html($target,$token,$tagstack,
   84: 					       $parstack,$parser,$safeeval);
   85: 	$head_tag_start='<head>'.&Apache::lonmenu::registerurl(undef,$target);
   86:     }
   87:     my $body_tag_start;
   88:     if (!defined($found{'body'})) {
   89: 	$body_tag_start='<body onLoad="'.&Apache::lonmenu::loadevents().'" '.
   90: 	    'onUnload="'.&Apache::lonmenu::unloadevents().'" ';
   91: 	my $background=&Apache::lonxml::get_param('background',$parstack,
   92: 						  $safeeval);
   93: 	if ($background) {
   94: 	    $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=
   95: 		$background;
   96: 	    $body_tag_start.='background="'.$background.'" ';
   97: 	} else {
   98: 	    my $bgcolor=&Apache::lonxml::get_param('bgcolor',$parstack,
   99: 						   $safeeval);
  100: 	    if ($bgcolor) {
  101: 		$body_tag_start.='bgcolor="'.$bgcolor.'" ';
  102: 	    } else {
  103: 		$body_tag_start.='bgcolor="#ffffff"';
  104: 	    }
  105: 	}
  106: 	$body_tag_start.='>'.&Apache::lonmenu::menubuttons(undef,$target,1);
  107: 	if ($target eq 'web' && $ENV{'request.state'} ne 'construct') {
  108: 	    my ($symb,undef,undef,undef,$publicuser)=
  109: 		&Apache::lonxml::whichuser();
  110: 	    if ($symb eq '' && !$publicuser) {
  111: 		my $help = &Apache::loncommon::help_open_topic("Ambiguous_Reference");
  112: 		$help="Browsing resource, all submissions are temporary.<br />";
  113: 		$body_tag_start.=$help;
  114: 	    }
  115: 	}
  116:     }
  117:     my $form_tag_start;
  118:     if (!defined($found{'form'})) {
  119: 	$form_tag_start='<form name="lonhomework" method="POST" action="'.
  120: 	    $ENV{'request.uri'}.'">';
  121:     }
  122:     return ($result,$head_tag_start,$body_tag_start,$form_tag_start);
  123: }
  124: 
  125: #use Time::HiRes();
  126: sub get_resource_name {
  127:     my ($parstack,$safeeval)=@_;
  128:     my $name=&Apache::lonnet::gettitle();
  129:     if ($name eq '') {
  130: 	$name=&Apache::lonnet::EXT('resource.title');
  131: 	if ($name eq 'con_lost') { $name = ''; }
  132:     }
  133:     $Apache::lonhomework::name=$name;
  134:     return $name;
  135: }
  136: 
  137: sub setup_rndseed {
  138:     my ($safeeval)=@_;
  139:     my $rndseed;
  140:     my ($symb)=&Apache::lonxml::whichuser();
  141:     if ($ENV{'request.state'} eq "construct" || $symb eq '') {
  142: 	$rndseed=$ENV{'form.rndseed'};
  143: 	if (!$rndseed) {
  144: 	    $rndseed=$Apache::lonhomework::history{'rndseed'};
  145: 	    if (!$rndseed) {
  146: 		$rndseed=time;
  147: 		$ENV{'form.rndseed'}=$rndseed;
  148: 	    }
  149: 	}
  150: 	if ($ENV{'form.resetdata'} eq 'New Problem Variation' ||
  151: 	    $ENV{'form.newrandomization'} eq 'New Randomization') {
  152: 	    $rndseed=time;
  153: 	    if ($rndseed eq $ENV{'form.rndseed'}) {
  154: 		srand($rndseed);
  155: 		$rndseed=int(rand(1000000000));
  156: 	    }
  157: 	    $ENV{'form.rndseed'}=$rndseed;
  158: 	    delete($ENV{'form.resetdata'});
  159: 	    delete($ENV{'form.newrandomization'});
  160: 	}
  161: 	if (defined($rndseed) && $rndseed ne int($rndseed)) {
  162: 	   $rndseed=join(',',&Math::Random::random_seed_from_phrase($rndseed));
  163:         }
  164: 	&Apache::lonxml::debug("Setting rndseed to $rndseed");
  165: 	&Apache::run::run('$external::randomseed='.$rndseed.';',$safeeval);
  166:     }
  167:     return $rndseed;
  168: }
  169: 
  170: sub problem_edit_header {
  171:     return '<input type="hidden" name="submitted" value="edit" />
  172:        <input type="hidden" name="problemmode" value="Edit" />
  173:        <input type="submit" name="problemmode" value="Discard Edits and View" />
  174:        <input type="submit" name="problemmode" value="EditXML" />
  175:        <input type="submit" name="Undo" value="undo" /> <hr />
  176:        <input type="submit" name="submit" value="Submit Changes and Edit" />
  177:        <input type="submit" name="submit" value="Submit Changes and View" /><br /><p>&nbsp;</p><table border="0"><tr><td bgcolor="#DDDDDD">
  178:       ';
  179: }
  180: 
  181: sub problem_edit_footer {
  182:     return '</td></tr></table><br /><input type="submit" name="submit" value="Submit Changes and Edit" />
  183:     <input type="submit" name="submit" value="Submit Changes and View" />';
  184: }
  185: 
  186: sub problem_web_to_edit_header {
  187:     my ($rndseed)=@_;
  188:     my $result.='<input type="hidden" name="problemmode" value="View" />
  189:              <input type="submit" name="problemmode" value="Edit" />
  190:              <input type="submit" name="problemmode" value="EditXML" />
  191:              <input type="submit" name="newrandomization" value="New Randomization" />
  192:              <input type="submit" name="resetdata" value="Reset Submissions" />
  193:              <nobr><input type="submit" name="changerandseed" value="Change Random Seed To:" />
  194:               <input type="text" name="rndseed" width="10" value="'.
  195: 	       $rndseed.'"
  196:            onChange="javascript:document.lonhomework.changerandseed.click()" /></nobr>
  197:              <input type="checkbox" name="showallfoils" ';
  198:     if (defined($ENV{'form.showallfoils'})) { $result.='checked="on"'; }
  199:     $result.= ' />&nbsp;Show&nbsp;All&nbsp;Foils
  200:              <hr />';
  201:     my $numtoanalyze=$ENV{'form.numtoanalyze'};
  202:     if (!$numtoanalyze) { $numtoanalyze=20; }
  203:     $result.= '<input type="submit" name="problemmode" value="Calculate answers" /> for
  204:              <input type="text" name="numtoanalyze" value="'.
  205: 		 $numtoanalyze.'" size="5" /> versions of this problem.'.
  206: 		     &Apache::loncommon::help_open_topic("Analyze_Problem",
  207: 						     '',undef,undef,300).
  208: 		     '<hr />';
  209:     return $result;
  210: }
  211: 
  212: sub initialize_storage {
  213:     %Apache::lonhomework::results=();
  214:     %Apache::lonhomework::history=();
  215:     my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
  216:     if ($ENV{'request.state'} eq 'construct' || $symb eq '') {
  217: 	%Apache::lonhomework::history=
  218: 	    &Apache::lonnet::tmprestore($ENV{'request.uri'},'',$domain,$name);
  219: 	my ($temp)=keys %Apache::lonhomework::history ;
  220: 	&Apache::lonxml::debug("Return message of $temp");
  221:     } else {
  222: 	%Apache::lonhomework::history=
  223: 	    &Apache::lonnet::restore($symb,$courseid,$domain,$name);
  224:     }
  225:     #ignore error conditions
  226:     my ($temp)=keys %Apache::lonhomework::history ;
  227:     if ($temp =~ m/^error:.*/) { %Apache::lonhomework::history=(); }
  228: }
  229: 
  230: # -------------------------------------------------------------finalize_storage
  231: # Stores away the result has to a student's environment
  232: # checks form.grade_ for specific values, other wises stores
  233: # to the running users environment
  234: sub finalize_storage {
  235:     my $result;
  236:     my ($temp) = keys %Apache::lonhomework::results;
  237:     if ( $temp ne '' ) {
  238: 	my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
  239: 	if ($ENV{'request.state'} eq 'construct' || $symb eq '') {
  240: 	    $Apache::lonhomework::results{'rndseed'}=$ENV{'form.rndseed'};
  241: 	    $result=&Apache::lonnet::tmpstore(\%Apache::lonhomework::results,
  242: 					$ENV{'request.uri'},'',$domain,$name);
  243: 	    &Apache::lonxml::debug('Construct Store return message:'.$result);
  244: 	} else {
  245: 	    $result=&Apache::lonnet::cstore(\%Apache::lonhomework::results,
  246: 					    $symb,$courseid,$domain,$name);
  247: 	    &Apache::lonxml::debug('Store return message:'.$result);
  248: 	}
  249:     }
  250:     return $result;
  251: }
  252: 
  253: sub checkout_msg {
  254:     return (<<ENDCHECKOUT);
  255: <h2>The resource needs to be checked out</h2>
  256: As a resource gets checked out, a unique timestamped ID is given to it, and a
  257: permanent record is left in the system.<p />
  258: <font color=red>
  259: Checking out resources is subject to course policies, and may exclude future
  260: credit even if done erroneously.<p />
  261: </font>
  262: <form name="checkout" method="POST" action="$ENV{'request.uri'}">
  263: <input type="hidden" name="doescheckout" value="yes" />
  264: <input type="button" name="checkoutbutton" value="Check out Exam for Viewing" onClick="javascript:if (confirm('Check out Exam?')) { document.checkout.submit(); }" />
  265: </form>
  266: ENDCHECKOUT
  267: }
  268: 
  269: sub start_problem {
  270:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  271: 
  272:     if ( $Apache::inputtags::part ne '' ||
  273: 	 $Apache::lonhomework::parsing_a_problem) {
  274: 	&Apache::lonxml::error('Only one &lt;problem&gt; allowed in a .problem file');
  275: 	#my $bodytext=&Apache::lonxml::get_all_text("/problem",$parser);
  276: 	return '';
  277:     }
  278: 
  279:     $Apache::lonhomework::parsing_a_problem=1;
  280: #initialize globals
  281:     $Apache::inputtags::part='0';
  282:     @Apache::inputtags::partlist=('0');
  283:     @Apache::inputtags::responselist = ();
  284:     @Apache::inputtags::importlist = ();
  285:     @Apache::inputtags::previous=();
  286:     @Apache::inputtags::previous_version=();
  287:     $Apache::structuretags::printanswer='No';
  288:     @Apache::structuretags::whileconds=();
  289:     @Apache::structuretags::whilebody=();
  290:     @Apache::structuretags::whileline=();
  291:     $Apache::lonhomework::scantronmode=0;
  292:     $Apache::lonhomework::problemstatus=
  293: 	&Apache::lonnet::EXT('resource.0.problemstatus');
  294: 
  295:     if (defined($ENV{'scantron.maxquest'})) {
  296: 	$Apache::lonhomework::scantronmode=1;
  297:     }
  298: 
  299:     if ($target ne 'analyze') {
  300: 	&initialize_storage();
  301: 	if ($target eq 'web') {
  302: 	    &Apache::lonhomework::showhash(%Apache::lonhomework::history);
  303: 	}
  304: 	$Apache::lonhomework::type=&Apache::lonnet::EXT('resource.0.type');
  305: 	&Apache::lonxml::debug("Found this to be of type :$Apache::lonhomework::type:");
  306:     }
  307:     if ($Apache::lonhomework::type eq '' ) {
  308: 	my $uri=$ENV{'request.uri'};
  309: 	if ($uri=~/\.(\w+)$/) {
  310: 	    $Apache::lonhomework::type=$1;
  311: 	    &Apache::lonxml::debug("Using type of $1");
  312: 	} else {
  313: 	    $Apache::lonhomework::type='problem';
  314: 	    &Apache::lonxml::debug("Using default type, problem, :$uri:");
  315: 	}
  316:     }
  317: 
  318:     #added vars to the scripting enviroment
  319:     my $expression='$external::part='.$Apache::inputtags::part.';';
  320:     &Apache::run::run($expression,$safeeval);
  321:     my $status;
  322:     my $accessmsg;
  323: 
  324:     #should get back a <html> or the neccesary stuff to start XML/MathML
  325:     my ($result,$head_tag_start,$body_tag_start,$form_tag_start)=
  326: 	&page_start($target,$token,$tagstack,$parstack,$parser,$safeeval);
  327:     if ($target eq 'tex' and $ENV{'request.symb'} =~ m/\.page_/) {$result='';}
  328: 
  329:     if ($target eq 'analyze') { my $rndseed=&setup_rndseed($safeeval); }
  330:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  331: 	$target eq 'tex') {
  332: 	#handle exam checkout
  333: 	if ($Apache::lonhomework::type eq 'exam') {
  334: 	    my $token=
  335: 		$Apache::lonhomework::history{"resource.0.outtoken"};
  336: 	    if (($ENV{'form.doescheckout'}) && (!$token)) {
  337: 		$token=&Apache::lonxml::maketoken();
  338: 		$Apache::lonhomework::history{"resource.0.outtoken"}=
  339: 		    $token;
  340: 	    }
  341: 	    $body_tag_start.=&Apache::lonxml::printtokenheader($target,$token);
  342: 	}
  343: 
  344: 	#handle rand seed in construction space
  345: 	my $rndseed=&setup_rndseed($safeeval);
  346: 	my ($symb)=&Apache::lonxml::whichuser();
  347: 	if ($ENV{'request.state'} ne "construct" && $symb eq '') {
  348: 	    $form_tag_start.='<input type="hidden" name="rndseed" value="'.
  349: 		$rndseed.'" />'.
  350: 		    '<input type="submit" name="resetdata"
  351:                              value="New Problem Variation" />'.
  352: 		    '<input type="hidden" name="username"
  353:                              value="'.$ENV{'form.username'}.'" /> <br />';
  354: 	}
  355: 	($status,$accessmsg) = &Apache::lonhomework::check_access('0');
  356: 	push (@Apache::inputtags::status,$status);
  357: 	my $expression='$external::datestatus="'.$status.'";';
  358: 	$expression.='$external::gradestatus="'.$Apache::lonhomework::history{"resource.0.solved"}.'";';
  359: 	&Apache::run::run($expression,$safeeval);
  360: 	&Apache::lonxml::debug("Got $status");
  361: 	if (( $status eq 'CLOSED' ) ||
  362: 	    ( $status eq 'UNCHECKEDOUT') ||
  363: 	    ( $status eq 'BANNED') ||
  364: 	    ( $status eq 'UNAVAILABLE')) {
  365: 	    my $bodytext=&Apache::lonxml::get_all_text("/problem",$parser);
  366: 	    if ( $target eq "web" ) {
  367: 		$result.= $head_tag_start.'</head>';
  368: 		my $msg=$body_tag_start;
  369: 		if ($status eq 'UNAVAILABLE') {
  370: 		    $result.='<h1>Unable to determine if this resource is open due to network problems. Please try again later.</h1>';
  371: 		} else {
  372: 		    $result.='<h1>Not open to be viewed</h1>';
  373: 		}
  374: 		if ($status eq 'CLOSED') {
  375: 		    $msg.='The problem '.$accessmsg;
  376: 		} elsif ($status eq 'UNCHECKEDOUT') {
  377: 		    $msg.=&checkout_msg;
  378: 		}
  379: 		$result.=$msg.'<br />';
  380: 	    } elsif ($target eq 'tex') {
  381: 		$result.='\begin{document}\noindent \vskip 1 mm  \begin{minipage}{\textwidth}\vskip 0 mm';
  382: 		if ($status eq 'UNAVAILABLE') {
  383: 		    $result.='Unable to determine if this resource is open due to network problems. Please try again later.\vskip 0 mm ';
  384: 		} else {
  385: 		    $result.="Problem is not open to be viewed. It $accessmsg \\vskip 0 mm ";
  386: 		}
  387: 	    }
  388: 	} elsif ($target eq 'web') {
  389: 	    my $name= &get_resource_name($parstack,$safeeval);
  390: 	    if ($status eq 'CAN_ANSWER') {
  391: 		# create a page header and exit
  392: 		$result.="$head_tag_start<title>$name</title></head>
  393:               $body_tag_start \n $form_tag_start".	
  394: 		  '<input type="hidden" name="submitted" value="yes" />';
  395: 		if ($ENV{'request.state'} eq "construct") {
  396: 		    $result.= &problem_web_to_edit_header($ENV{'form.rndseed'});
  397: 		}
  398: 		# if we are viewing someone else preserve that info
  399: 		if (defined $ENV{'form.grade_symb'}) {
  400: 		    foreach my $field ('symb','courseid','domain','username') {
  401: 			$result .= '<input type="hidden" name="grade_'.$field.
  402: 			    '" value="'.$ENV{"form.grade_$field"}.'" />'."\n";
  403: 		    }
  404: 		}
  405: 	    } elsif ($status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER'
  406: 		     || $status eq 'CLOSED' || $status eq 'UNAVALAILABLE') {
  407: 		$result.=$head_tag_start.
  408: 		    "<title>$name</title></head>\n$body_tag_start\n";
  409: 	    }
  410: 	} elsif ($target eq 'tex') {
  411: 	    my $startminipage = '';
  412: 	    if ($ENV{'form.problem_split'} ne 'yes') {
  413: 		$startminipage = '\begin{minipage}{\textwidth}';
  414: 	    }
  415: 	    my $name= &Apache::lonxml::get_param('name',$parstack,$safeeval);
  416: 	    if ($name eq '') {
  417: 		$name=&Apache::lonnet::EXT('resource.title');
  418: 		if ($name eq 'con_lost') { $name = ''; }
  419: 	    }
  420: 	    $Apache::lonhomework::name=$name;
  421: 	    my $id = $Apache::inputtags::part;
  422: 	    my $weight = &Apache::lonnet::EXT("resource.$id.weight");
  423: 	    my $allkeys=&Apache::lonnet::metadata($ENV{'request.uri'},'keys');
  424: 	    my @allkeys = split /,/,$allkeys;
  425: 	    my $allow_print_points = 0;
  426: 	    foreach my $partial_key (@allkeys) {
  427: 		if ($partial_key=~m/weight/) {
  428: 		    $allow_print_points++;
  429: 		}
  430: 	    }
  431: 	    my $duedate = &Apache::lonnet::EXT("resource.$id.duedate"); 
  432: 	    $duedate = POSIX::strftime("%c",localtime($duedate));
  433: 	    my $temp_file;
  434: 	    my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout.due";
  435: 	    if (-e $filename) {
  436: 		$temp_file = Apache::File->new($filename);
  437: 	    } else {
  438: 		$temp_file = Apache::File->new('>>'.$filename);
  439: 	    }
  440: 	    my @due_file_content = <$temp_file>;
  441: 	    my $due_file_content = $due_file_content[$#due_file_content];
  442: 	    chomp $due_file_content;
  443: 	    my $name_of_resourse= &get_resource_name($parstack,$safeeval);
  444: 	    if ($due_file_content ne $duedate) {
  445: 		$temp_file = Apache::File->new('>'.$filename);
  446: 		print $temp_file "$duedate\n";
  447: 		if (not $ENV{'request.symb'} =~ m/\.page_/) {
  448: 		    if(not $duedate=~m/1969/ and $Apache::lonhomework::type ne 'exam') {
  449: 			$result .= '\begin{document} \typeout{STAMPOFPASSEDRESOURCESTART Resource <h2>"'.$name_of_resourse.'"</h2> located in <br /><small><b>'.$ENV{'request.uri'}.'</b></small><br /> STAMPOFPASSEDRESOURCEEND} \noindent\textit{Due date: '.$duedate.'} \vskip 1 mm\noindent '.$startminipage;	
  450: 		    } else {
  451: 			$result .= '\begin{document} \typeout{STAMPOFPASSEDRESOURCESTART Resource <h2>"'.$name_of_resourse.'"</h2> located in <br /><small><b>'.$ENV{'request.uri'}.'</b></small><br /> STAMPOFPASSEDRESOURCEEND} \noindent \vskip 1 mm \noindent'.$startminipage;
  452: 			if ($Apache::lonhomework::type eq 'exam' and $allow_print_points==1) { $result .= '\fbox{\textit{'.$weight.' pt}}';}
  453: 		    }
  454: 		} else {
  455: 		    $result .= '\vskip 1mm\textit{Due date: '.$duedate.'} \\\\\\\\';
  456: 		}
  457: 	    } else {
  458: 		if (not $ENV{'request.symb'} =~ m/\.page_/) {
  459: 		    $result .= '\begin{document} \typeout{STAMPOFPASSEDRESOURCESTART Resource <h2>"'.$name_of_resourse.'"</h2> located in <br /><small><b>'.$ENV{'request.uri'}.'</b></small><br /> STAMPOFPASSEDRESOURCEEND} \noindent \vskip 1 mm\noindent'.$startminipage;	
  460: 		    if (($Apache::lonhomework::type eq 'exam') and ($allow_print_points==1)) { $result .= '\fbox{\textit{'.$weight.' pt}}';}
  461: 		} else {
  462: 		    $result .= '\vskip 1mm \\\\\\\\';
  463: 		}
  464: 	    }
  465: 	}
  466:     } elsif ($target eq 'edit') {
  467: 	$result.=$head_tag_start."</head>".$body_tag_start.$form_tag_start.
  468: 	    &problem_edit_header();
  469: 	my $temp=&Apache::edit::insertlist($target,$token);
  470: 	$result.=$temp;
  471:     } elsif ($target eq 'modified') {
  472: 	$result=$token->[4];
  473: 	$result.=&Apache::edit::handle_insert();
  474:     } else {
  475: 	# page_start returned a starting result, delete it if we don't need it
  476: 	$result = '';
  477:     }
  478:     return $result;
  479: }
  480: 
  481: sub end_problem {
  482:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  483:     my $result='';
  484:     my $status=$Apache::inputtags::status['-1'];
  485:     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
  486: 	$target eq 'tex') {
  487: 	if ( $target eq 'grade' && $Apache::inputtags::part eq '0' &&
  488: 	     $status eq 'CAN_ANSWER' ) {
  489: 	    # if part is zero, no <part>s existed, so we need to the grading
  490: 	    &Apache::inputtags::grade;
  491: 	} elsif ( ($target eq 'web' || $target eq 'tex') &&
  492: 		  $Apache::inputtags::part eq '0' &&
  493: 		  $status ne 'UNCHECKEDOUT') {
  494: 	    # if part is zero, no <part>s existed, so we need show the current
  495: 	    # grading status
  496: 	    my $gradestatus = &Apache::inputtags::gradestatus($Apache::inputtags::part,$target);
  497: 	    $result.= $gradestatus;
  498: 	}
  499: 	if (
  500: 	    (($target eq 'web') && ($ENV{'request.state'} ne 'construct')) ||
  501: 	    ($target eq 'answer') || ($target eq 'tex')
  502: 	   ) {
  503: 	    if ($status eq 'CAN_ANSWER') {
  504: 		if ($target ne 'tex' &&
  505: 		    $ENV{'form.answer_output_mode'} ne 'tex') {
  506: 		    $result.="</form></body>\n";
  507: 		}
  508: 	    } elsif ($status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER' ||
  509: 		     $status eq 'UNCHECKEDOUT' ) {
  510: 		if ($target ne 'tex') {
  511: 		    $result.="</body>\n";
  512: 		}
  513: 	    }
  514: 	    if ($target eq 'web') {
  515: 		$result.=&Apache::lonxml::xmlend();
  516: 	    } elsif ($target eq 'tex') {
  517: 		my $endminipage = '';
  518: 		if ($ENV{'form.problem_split'} ne 'yes') {
  519: 		    $endminipage = '\end{minipage}';
  520: 		}
  521: 		$result .= '\keephidden{ENDOFPROBLEM}\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}';
  522: 		if (not $ENV{'request.symb'} =~ m/\.page_/) {
  523: 		    $result .= $endminipage.'\end{document} ';
  524: 		} else {
  525: 		    $result .= '';
  526: 		}
  527: 	    }
  528: 	}
  529: 	if ($target eq 'grade') {
  530: 	    &Apache::lonhomework::showhash(%Apache::lonhomework::results);
  531: 	    &finalize_storage();
  532: 	}
  533: 	if ($target eq 'answer' && ($ENV{'request.state'} eq 'construct')
  534: 	    && $ENV{'form.answer_output_mode'} ne 'tex') {
  535: 	    $result.='</html>'; # normally we get it from xmlend, but in CSTR
  536: 	                        # we always show answer mode too.
  537: 	}
  538:     } elsif ($target eq 'meta') {
  539: 	if ($Apache::inputtags::part eq '0') {
  540: 	    @Apache::inputtags::response=();
  541: 	    $result=&Apache::response::mandatory_part_meta;
  542: 	}
  543:     } elsif ($target eq 'edit') {
  544: 	&Apache::lonxml::debug("in end_problem with $target, edit");
  545: 	$result = &problem_edit_footer();
  546:     }
  547: 
  548:     if ($ENV{'request.state'} eq 'construct' && $target eq 'web') {
  549: 	&Apache::inputtags::check_for_duplicate_ids();
  550:     }
  551:     undef(%Apache::lonhomework::history);
  552:     undef(%Apache::lonhomework::results);
  553:     undef($Apache::inputtags::part);
  554:     undef($Apache::lonhomework::parsing_a_problem);
  555: 
  556:     return $result;
  557: }
  558: 
  559: 
  560: sub start_library {
  561:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  562:     my ($result,$head_tag_start,$body_tag_start,$form_tag_start);
  563: 
  564:     if ($target eq 'edit') {
  565: 	($result,$head_tag_start,$body_tag_start,$form_tag_start)=
  566: 	    &page_start($target,$token,$tagstack,$parstack,$parser,$safeeval);
  567: 	$result.=$head_tag_start."</head>".$body_tag_start.$form_tag_start.
  568: 	    &problem_edit_header();
  569: 	my $temp=&Apache::edit::insertlist($target,$token);
  570: 	$result.=$temp;
  571:     } elsif ($target eq 'modified') {
  572: 	$result=$token->[4];
  573: 	$result.=&Apache::edit::handle_insert();
  574:     } elsif ($target eq 'web' && $$tagstack[0] ne 'problem' &&
  575: 	     $ENV{'request.state'} eq "construct" ) {
  576: 	($result,$head_tag_start,$body_tag_start,$form_tag_start)=
  577: 	    &page_start($target,$token,$tagstack,$parstack,$parser,$safeeval);
  578: 	my $name=&get_resource_name($parstack,$safeeval);
  579: 	my $rndseed=&setup_rndseed($safeeval);
  580: 	$result.="$head_tag_start<title>$name</title></head>
  581:               $body_tag_start \n $form_tag_start".	
  582: 		  '<input type="hidden" name="submitted" value="yes" />';
  583: 	$result.=&problem_web_to_edit_header($rndseed);
  584:     }
  585:     return $result;
  586: }
  587: 
  588: sub end_library {
  589:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  590:     my $result='';
  591:     if ($target eq 'edit') {
  592: 	$result=&problem_edit_footer();
  593:     } elsif ($target eq 'web' && $$tagstack[0] ne 'problem' &&
  594: 	     $ENV{'request.state'} eq "construct") {
  595: 	$result.='</form></body>'.&Apache::lonxml::xmlend();
  596:     }
  597:     return $result;
  598: }
  599: 
  600: sub start_block {
  601:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  602: 
  603:     my $result;
  604: 
  605:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  606: 	$target eq 'tex' || $target eq 'analyze') {
  607: 	my $code = $token->[2]->{'condition'};
  608: 	if ($code) {
  609: 	    if (!$Apache::lonxml::default_homework_loaded) {
  610: 		&Apache::lonxml::default_homework_load($safeeval);
  611: 	    }
  612: 	    $result = &Apache::run::run($code,$safeeval);
  613: 	    &Apache::lonxml::debug("block :$code: returned :$result:");
  614: 	} else {
  615: 	    $result='1';
  616: 	}
  617: 	if ( ! $result ) {
  618: 	    my $skip=&Apache::lonxml::get_all_text("/block",$parser);
  619: 	    &Apache::lonxml::debug("skipping ahead :$skip: $$parser[-1]");
  620: 	}
  621: 	$result='';
  622:     } elsif ($target eq 'edit') {
  623: 	$result .=&Apache::edit::tag_start($target,$token);
  624: 	$result .=&Apache::edit::text_arg('Test Condition:','condition',
  625: 					  $token,40);
  626: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  627:     } elsif ($target eq 'modified') {
  628: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  629: 						     $safeeval,'condition');
  630: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  631:     }
  632:     return $result;
  633: }
  634: 
  635: sub end_block {
  636:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  637:     my $result;
  638:     if ($target eq "edit") {
  639: 	$result.= &Apache::edit::tag_end($target,$token,'');
  640:     }
  641:     return $result;
  642: }
  643: 
  644: sub start_languageblock {
  645:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  646: 
  647:     my $result;
  648: 
  649:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  650: 	$target eq 'tex' || $target eq 'analyze') {
  651: 	&Apache::lonxml::startredirection();
  652:     } elsif ($target eq 'edit') {
  653: 	$result .=&Apache::edit::tag_start($target,$token);
  654: 	$result .=&Apache::edit::text_arg('Include Language:','include',
  655: 					  $token,40);
  656: 	$result .=&Apache::edit::text_arg('Exclude Language:','exclude',
  657: 					  $token,40);
  658: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  659:     } elsif ($target eq 'modified') {
  660: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  661: 						     $safeeval,'include',
  662: 						     'exclude');
  663: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  664:     }
  665:     return $result;
  666: }
  667: 
  668: sub end_languageblock {
  669:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  670:     my $result;
  671: 
  672:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  673: 	$target eq 'tex' || $target eq 'analyze') {
  674: 	my $text=&Apache::lonxml::endredirection();
  675: 	my $include= &Apache::lonxml::get_param('include',$parstack,$safeeval);
  676: 	my $exclude= &Apache::lonxml::get_param('exclude',$parstack,$safeeval);
  677: 	my %languages=&Apache::loncommon::display_languages();
  678: 	$result='1';
  679: 	if ($include) {
  680: 	    $result='';
  681: 	    foreach (split(/\,/,$include)) {
  682: 		if ($languages{$_}) { $result='1'; }
  683: 	    }
  684: 	}
  685: 	if ($exclude) {
  686: 	    foreach (split(/\,/,$exclude)) {
  687: 		if ($languages{$_}) { $result='0'; }
  688: 	    }
  689: 	}
  690: 	if ( ! $result ) {
  691: 	    $result='';
  692: 	} else {
  693: 	    $result=$text;
  694: 	}
  695:     } elsif ($target eq "edit") {
  696: 	$result.= &Apache::edit::tag_end($target,$token,'');
  697:     }
  698:     return $result;
  699: }
  700: 
  701: sub start_instructorcomment {
  702:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  703: 
  704:     my $result;
  705: 
  706:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  707: 	$target eq 'tex' || $target eq 'analyze') {
  708:         $result=($ENV{'request.role'}=~/^(in|cc|au|ca|li)/);
  709: 	if ( ! $result ) {
  710: 	    my $skip=&Apache::lonxml::get_all_text("/instructorcomment",$parser);
  711: 	    &Apache::lonxml::debug("skipping ahead :$skip: $$parser[-1]");
  712: 	}
  713: 	$result='';
  714:     } elsif ($target eq 'edit') {
  715: 	$result .=&Apache::edit::tag_start($target,$token);
  716: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  717:     }
  718:     return $result;
  719: }
  720: 
  721: sub end_instructorcomment {
  722:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  723:     my $result;
  724:     if ($target eq "edit") {
  725: 	$result.= &Apache::edit::tag_end($target,$token,'');
  726:     }
  727:     return $result;
  728: }
  729: 
  730: sub start_while {
  731:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  732: 
  733:     my $result;
  734:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  735: 	$target eq 'tex' || $target eq 'analyze') {
  736: 	my $code = $token->[2]->{'condition'};
  737: 
  738: 	push( @Apache::structuretags::whileconds, $code);
  739: 	if (!$Apache::lonxml::default_homework_loaded) {
  740: 	    &Apache::lonxml::default_homework_load($safeeval);
  741: 	}
  742: 	my $result = &Apache::run::run($code,$safeeval);
  743: 	my $bodytext=&Apache::lonxml::get_all_text("/while",$parser);
  744: 	push( @Apache::structuretags::whilebody, $bodytext);
  745: 	push( @Apache::structuretags::whileline, $token->[5]);
  746: 	&Apache::lonxml::debug("s code $code got -$result-");
  747: 	if ( $result ) {
  748: 	    &Apache::lonxml::newparser($parser,\$bodytext);
  749: 	}
  750:     } elsif ($target eq 'edit') {
  751: 	$result .=&Apache::edit::tag_start($target,$token);
  752: 	$result .=&Apache::edit::text_arg('Test Condition:','condition',
  753: 					  $token,40);
  754: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  755:     } elsif ($target eq 'modified') {
  756: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  757: 						     $safeeval,'condition');
  758: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  759:     }
  760:     return $result;
  761: }
  762: 
  763: sub end_while {
  764:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  765:     my $result;
  766: 
  767:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  768: 	$target eq 'tex' || $target eq 'analyze') {
  769: 	my $code = pop(@Apache::structuretags::whileconds);
  770: 	my $bodytext = pop(@Apache::structuretags::whilebody);
  771: 	my $line = pop(@Apache::structuretags::whileline);
  772: 	my $return = &Apache::run::run($code,$safeeval);
  773: 	my $starttime=time;
  774: 	my $error=0;
  775: 	while ($return) {
  776: 	    if (time-$starttime >
  777: 		$Apache::lonnet::perlvar{'lonScriptTimeout'}) {
  778: 		$return = 0; $error=1; next;
  779: 	    }
  780: 	    $result.=&Apache::scripttag::xmlparse($bodytext);
  781: 	    $return = &Apache::run::run($code,$safeeval);
  782: 	}
  783: 	if ($error) {
  784: 	    &Apache::lonxml::error('<pre>Code ran too long. It ran for more than '.$Apache::lonnet::perlvar{'lonScriptTimeout'}.' seconds occured while running &lt;while$gt; on line '.$line.'</pre>');
  785: 	}
  786:     } elsif ($target eq "edit") {
  787: 	$result.= &Apache::edit::tag_end($target,$token,'');
  788:     }
  789:     return $result;
  790: }
  791: 
  792: # <randomlist show="1">
  793: #  <tag1>..</tag1>
  794: #  <tag2>..</tag2>
  795: #  <tag3>..</tag3>
  796: #  ...
  797: # </randomlist>
  798: sub start_randomlist {
  799:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  800:     my $result;
  801:     if ($target eq 'answer' || $target eq 'grade' || $target eq 'web' ||
  802: 	$target eq 'tex' || $target eq 'analyze') {
  803: 	my $body= &Apache::lonxml::get_all_text("/randomlist",$parser);
  804: 	my $b_parser= HTML::TokeParser->new(\$body);
  805: 	my $b_tok;
  806: 	my @randomlist;
  807: 	my $list_item;
  808: 	while($b_tok = $b_parser->get_token() ) {
  809: 	    if($b_tok->[0] eq 'S') { # start tag
  810: 		# get content of the tag until matching end tag
  811: 		# get all text upto the matching tag
  812: 		# and push the content into @randomlist
  813: 		$list_item = &Apache::lonxml::get_all_text('/'.$b_tok->[1],
  814: 							   $b_parser);
  815: 		$list_item = "$b_tok->[4]"."$list_item"."</$b_tok->[1]>";
  816: 		push(@randomlist,$list_item);
  817: 		#  print "<br /><b>START-TAG $b_tok->[1], $b_tok->[4],
  818:                 #         $list_item</b>";
  819: 	    }
  820: 	    if($b_tok->[0] eq 'T') { # text
  821: 		# what to do with text in between tags?
  822: 		#  print "<b>TEXT $b_tok->[1]</b><br />";
  823: 	    }
  824: 	    # if($b_tok->[0] eq 'E') { # end tag, should not happen
  825: 	    #  print "<b>END-TAG $b_tok->[1]</b><br />";
  826: 	    # }
  827: 	}
  828: 	my @idx_arr = (0 .. $#randomlist);
  829: 	&Apache::structuretags::shuffle(\@idx_arr);
  830: 	my $bodytext = '';
  831: 	my $show=$#randomlist;
  832: 	my $showarg=&Apache::lonxml::get_param('show',$parstack,$safeeval);
  833: 	$showarg--;
  834: 	if ( ($showarg >= 0) && ($showarg < $show) ) { $show = $showarg; }
  835: 	for(0 .. $show) {
  836: 	    $bodytext .= "$randomlist[ $idx_arr[$_] ]";
  837: 	}
  838: 	&Apache::lonxml::newparser($parser,\$bodytext);
  839:     } elsif ($target eq 'edit' ) {
  840: 	$result .=&Apache::edit::tag_start($target,$token);
  841: 	$result .=&Apache::edit::text_arg('Maximum Tags to Show:','show',
  842: 					   $token,5);
  843: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  844:     } elsif ($target eq 'modified' ) {
  845: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  846: 						     $safeeval,'show');
  847: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  848:     }
  849:     return $result;
  850: }
  851: 
  852: sub shuffle {
  853:     my $a=shift;
  854:     my $i;
  855:     if (defined(@$a)) {
  856: 	&Apache::response::setrandomnumber();
  857: 	for($i=@$a;--$i;) {
  858: 	    my $j=int(&Math::Random::random_uniform() * ($i+1));
  859: 	    next if $i == $j;
  860: 	    @$a[$i,$j] = @$a[$j,$i];
  861: 	}
  862:     }
  863: }
  864: 
  865: sub end_randomlist {
  866:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  867:     my $result;
  868:     if ($target eq 'edit' ) {
  869: 	$result=&Apache::edit::tag_end($target,$token,
  870: 				       'End Randomly Parsed Block');
  871:     }
  872:     return $result;
  873: }
  874: 
  875: sub start_part {
  876:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  877:     my $result='';
  878:     my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
  879:     if ($id eq '') { $id = $Apache::lonxml::curdepth; }
  880:     $Apache::inputtags::part=$id;
  881:     push(@Apache::inputtags::partlist,$id);
  882:     @Apache::inputtags::response=();
  883:     @Apache::inputtags::previous=();
  884:     @Apache::inputtags::previous_version=();
  885:     $Apache::lonhomework::problemstatus=
  886: 	&Apache::lonnet::EXT("resource.$id.problemstatus");
  887:     my $hidden=&Apache::loncommon::check_if_partid_hidden($Apache::inputtags::part);
  888: 
  889:     if ($target eq 'meta') {
  890: 	return &Apache::response::mandatory_part_meta;
  891:     } elsif ($target eq 'web' || $target eq 'grade' ||
  892: 	     $target eq 'answer' || $target eq 'tex') {
  893: 	if ($hidden) {
  894: 	    my $bodytext=&Apache::lonxml::get_all_text("/part",$parser);
  895: 	} else {
  896: 	    my ($status,$accessmsg) = &Apache::lonhomework::check_access($id);
  897: 	    push (@Apache::inputtags::status,$status);
  898: 	    my $expression='$external::datestatus="'.$status.'";';
  899: 	    $expression.='$external::gradestatus="'.$Apache::lonhomework::history{"resource.$id.solved"}.'";';
  900: 	    &Apache::run::run($expression,$safeeval);
  901: 	    if ( $status eq 'CLOSED' ) {
  902: 		my $bodytext=&Apache::lonxml::get_all_text("/part",$parser);
  903: 		if ( $target eq "web" ) {
  904: 		    $result="<br />Part is not open to be viewed. It $accessmsg<br />";
  905: 		} elsif ( $target eq 'tex' ) {
  906: 		    $result="\\end{minipage}\\vskip 0 mm Part is not open to be viewed. It $accessmsg \\\\\\begin{minipage}{\\textwidth}";
  907: 		}
  908: 	    } else {
  909: 		if ($target eq 'tex') {
  910: 		    $result.='\noindent \end{minipage}\vskip 0 mm \noindent \begin{minipage}{\textwidth}\noindent';
  911: 		    my $weight = &Apache::lonnet::EXT("resource.$id.weight");
  912: 		    if ($Apache::lonhomework::type eq 'exam') { $result .= '\fbox{\textit{'.$weight.' pt}}';}
  913: 		}
  914: 	    }
  915: 	}
  916:     } elsif ($target eq 'edit') {
  917: 	$result.=&Apache::edit::tag_start($target,$token);
  918: 	$result.=&Apache::edit::text_arg('Part ID:','id',$token).
  919: 	    &Apache::loncommon::help_open_topic("Part_Tag_Edit_Help").
  920: 		&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  921:     } elsif ($target eq 'modified') {
  922: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
  923: 						     $safeeval,'id');
  924: 	if ($constructtag) {
  925: 	    $result = &Apache::edit::rebuild_tag($token);
  926: 	    $result.=&Apache::edit::handle_insert();
  927: 	}
  928:     }
  929:     return $result;
  930: }
  931: 
  932: sub end_part {
  933:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  934:     &Apache::lonxml::debug("in end_part $target ");
  935:     my $status=$Apache::inputtags::status['-1'];
  936:     my $hidden=&Apache::loncommon::check_if_partid_hidden($Apache::inputtags::part);
  937:     my $result='';
  938:     if ( $target eq 'meta' ) {
  939: 	$result='';
  940:     } elsif ( $target eq 'grade' && $status eq 'CAN_ANSWER' && !$hidden) {
  941: 	$result=&Apache::inputtags::grade;
  942:     } elsif (($target eq 'web' || $target eq 'tex') && !$hidden ) {
  943: 	my $gradestatus=&Apache::inputtags::gradestatus($Apache::inputtags::part,
  944: 							$target);
  945: 	if ($Apache::lonhomework::type eq 'exam') {$gradestatus='';}
  946: 	$result=$gradestatus;
  947:     } elsif ($target eq 'edit') {
  948: 	$result=&Apache::edit::end_table();
  949:     }
  950:     pop @Apache::inputtags::status;
  951:     $Apache::inputtags::part='';
  952:     return $result;
  953: }
  954: 
  955: sub start_preduedate {
  956:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  957:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
  958: 	if ($Apache::inputtags::status['-1'] ne 'CAN_ANSWER' &&
  959: 	    $Apache::inputtags::status['-1'] ne 'CANNOT_ANSWER' &&
  960: 	    $Apache::inputtags::status['-1'] ne 'SHOW_ANSWER') {
  961: 	    &Apache::lonxml::get_all_text("/preduedate",$parser);
  962: 	}
  963:     }
  964:     return '';
  965: }
  966: 
  967: sub end_preduedate {
  968:     return '';
  969: }
  970: 
  971: sub start_postanswerdate {
  972:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  973:     if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
  974: 	if ($Apache::inputtags::status['-1'] ne 'SHOW_ANSWER') {
  975: 	    &Apache::lonxml::get_all_text("/postanswerdate",$parser);
  976: 	}
  977:     } elsif ($target eq 'tex') {
  978: 	return '\vskip 0 mm \noindent';
  979:     }
  980:     return '';
  981: }
  982: 
  983: sub end_postanswerdate {
  984:     return '';
  985: }
  986: 
  987: sub start_notsolved {
  988:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  989:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  990: 	$target eq 'tex') {
  991: 	my $gradestatus=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
  992: 	&Apache::lonxml::debug("not solved has :$gradestatus:");
  993: 	if ($gradestatus =~ /^correct/) {
  994: 	    &Apache::lonxml::debug("skipping");
  995: 	    &Apache::lonxml::get_all_text("/notsolved",$parser);
  996: 	}
  997:     }
  998:     return '';
  999: }
 1000: 
 1001: sub end_notsolved {
 1002:     return '';
 1003: }
 1004: 
 1005: sub start_solved {
 1006:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1007:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
 1008: 	$target eq 'tex') {
 1009: 	my $gradestatus=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
 1010: 	if ($gradestatus !~ /^correct/) {
 1011: 	    &Apache::lonxml::get_all_text("/solved",$parser);
 1012: 	}
 1013:     }
 1014:     return '';
 1015: }
 1016: 
 1017: sub end_solved {
 1018:     return '';
 1019: }
 1020: 
 1021: sub start_startouttext {
 1022:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1023:     my @result=(''.'');
 1024:     if ($target eq 'edit' || $target eq 'modified' ) { @result=('','no'); }
 1025:     return (@result);
 1026: }
 1027: 
 1028: sub end_startouttext {
 1029:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1030:     my $result='';
 1031:     my $text='';
 1032: 
 1033:     if ($target eq 'edit') {
 1034: 	$text=&Apache::lonxml::get_all_text("endouttext",$parser);
 1035: 	$result.=&Apache::edit::start_table($token)."<tr><td>Text Block</td>
 1036: <td>Delete:".
 1037:                  &Apache::edit::deletelist($target,$token)
 1038: 		 ."</td>
 1039: <td>".
 1040:                  &Apache::edit::insertlist($target,$token).
 1041: 		 &Apache::edit::end_row().
 1042:                  &Apache::edit::start_spanning_row()."\n"
 1043: 		 .'<table><tr><td>'.
 1044: 		 &Apache::loncommon::help_open_topic("Greek_Symbols",
 1045: 						     'Greek Symbols',
 1046: 						     undef,undef,600)
 1047: 		 .'</td><td>'.
 1048: 		 &Apache::loncommon::help_open_topic("Other_Symbols",
 1049: 						     'Other Symbols',
 1050: 						     undef,undef,600)
 1051: 		 .'</td></tr></table>'.
 1052: 		 &Apache::edit::editfield($token->[1],$text,"",80,4);
 1053:     }
 1054:     if ($target eq 'modified') {
 1055: 	$text=&Apache::lonxml::get_all_text("endouttext",$parser);
 1056: 	$result='<startouttext />'.&Apache::edit::modifiedfield();
 1057:     }
 1058:     if ($target eq 'tex') {
 1059: 	$result .= '\noindent ';
 1060:     }
 1061:     return $result;
 1062: }
 1063: 
 1064: sub start_endouttext {
 1065:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1066:     my $result='';
 1067:     if ($target eq "edit" ) { $result="</td></tr>".&Apache::edit::end_table()."\n"; }
 1068:     if ($target eq "modified") {
 1069: 	$result='<endouttext />'.
 1070: 	    &Apache::edit::handle_insertafter('startouttext'); }
 1071:     return $result;
 1072: }
 1073: 
 1074: sub end_endouttext {
 1075:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1076:     my @result=('','');
 1077:     if ($target eq "edit" || $target eq 'modified') { @result=('','no'); }
 1078:     return (@result);
 1079: }
 1080: 
 1081: sub delete_startouttext {
 1082:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1083:     #  my $text=&Apache::lonxml::get_all_text("endouttext",$parser);
 1084:     my $text=$$parser['-1']->get_text("/endouttext");
 1085:     my $ntoken=$$parser['-1']->get_token();
 1086:     &Apache::lonxml::debug("Deleting :$text: and :$ntoken->[0]:$ntoken->[1]:$ntoken->[2]: for startouttext");
 1087:     &Apache::lonxml::end_tag($tagstack,$parstack,$ntoken);
 1088:     # Deleting 2 parallel tag pairs, but we need the numbers later to look like
 1089:     # they did the last time round
 1090:     &Apache::lonxml::increasedepth($ntoken);
 1091:     &Apache::lonxml::decreasedepth($ntoken);
 1092:     return 1;
 1093: }
 1094: 
 1095: 1;
 1096: __END__

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