Annotation of loncom/homework/structuretags.pm, revision 1.178

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

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