--- loncom/homework/structuretags.pm 2002/11/07 16:10:47 1.133 +++ loncom/homework/structuretags.pm 2002/11/13 23:37:56 1.137 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.133 2002/11/07 16:10:47 sakharuk Exp $ +# $Id: structuretags.pm,v 1.137 2002/11/13 23:37:56 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -101,6 +101,14 @@ sub page_start { } } $body_tag_start.='>'; + if ($target eq 'web' && $ENV{'request.state'} ne 'construct') { + my ($symb)=&Apache::lonxml::whichuser(); + if ($symb eq '') { + my $help = &Apache::loncommon::help_open_topic("Ambiguous_Reference"); + $help="Browsing or ambiguous reference, submissions ignored $help
"; + $body_tag_start.=$help; + } + } } my $form_tag_start; if (!defined($found{'form'})) { @@ -130,6 +138,7 @@ sub setup_rndseed { $rndseed=time; $ENV{'form.rndseed'}=$rndseed; } + &Apache::lonxml::debug("Setting rndseed to $rndseed"); &Apache::run::run('$external::randomseed='.$rndseed.';',$safeeval); } return $rndseed; @@ -141,13 +150,13 @@ sub problem_edit_header {
- -

 

+ +

 

'; } sub problem_edit_footer { - return '
+ return '

'; } @@ -166,10 +175,9 @@ sub problem_web_to_edit_header {
'; my $numtoanalyze=$ENV{'form.numtoanalyze'}; if (!$numtoanalyze) { $numtoanalyze=100; } - #DISABLED for now. - #$result.= ' -#
'; + $result.= ' +
'; return $result; } @@ -273,6 +281,7 @@ sub start_problem { &page_start($target,$token,$tagstack,$parstack,$parser,$safeeval); if ($target eq 'tex' and $ENV{'request.symb'} =~ m/\.page_/) { $result = '';} + if ($target eq 'analyze') { my $rndseed=&setup_rndseed($safeeval); } if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') { #handle exam checkout if ($Apache::lonhomework::type eq 'exam') { @@ -493,6 +502,9 @@ sub start_block { if ($code) { $code =~ s/\"//g; $code .=';return $condition;'; + if (!$Apache::lonxml::default_homework_loaded) { + &Apache::lonxml::default_homework_load($safeeval); + } $result = &Apache::run::run($code,$safeeval); &Apache::lonxml::debug("block :$code: returned :$result:"); } else { @@ -528,6 +540,9 @@ sub start_while { $code .=';return $condition;'; push( @Apache::structuretags::whileconds, $code); + if (!$Apache::lonxml::default_homework_loaded) { + &Apache::lonxml::default_homework_load($safeeval); + } my $result = &Apache::run::run($code,$safeeval); my $bodytext=$$parser[$#$parser]->get_text("/while"); push( @Apache::structuretags::whilebody, $bodytext); @@ -657,6 +672,19 @@ sub start_part { } } } + } elsif ($target eq 'edit') { + $result.=&Apache::edit::tag_start($target,$token); + $result.=&Apache::edit::text_arg('Part ID:','id',$token). + &Apache::loncommon::help_open_topic("Part_Tag_Edit_Help"). + &Apache::edit::end_row().&Apache::edit::start_spanning_row(); + + } elsif ($target eq 'modified') { + my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval, + 'id'); + if ($constructtag) { + $result = &Apache::edit::rebuild_tag($token); + $result.=&Apache::edit::handle_insert(); + } } return $result; }