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

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

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