--- loncom/homework/structuretags.pm 2010/12/19 21:12:20 1.480 +++ loncom/homework/structuretags.pm 2011/01/18 21:45:32 1.486 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.480 2010/12/19 21:12:20 raeburn Exp $ +# $Id: structuretags.pm,v 1.486 2011/01/18 21:45:32 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -128,6 +128,7 @@ sub homework_js { &setmode_javascript(). <<'JS'; JS } @@ -153,49 +154,55 @@ JS sub setmode_javascript { return <<"ENDSCRIPT"; ENDSCRIPT } sub file_delchk_js { - my $delfilewarn = &mt('You have indicated you wish to delete some files previously included for submission.').'\\n'. - &mt('Deleted files will not be graded.').' '. - &mt('Submit Answer?'); + my $delfilewarn = &mt('You have indicated you wish to remove some files previously included in your submission.').'\\n'. + &mt('Continue submission with these files removed?'); return <<"ENDSCRIPT"; ENDSCRIPT } @@ -798,12 +805,12 @@ sub store_aggregates { $cdomain,$cname); } if (keys(%anoncounter) > 0) { - &Apache::lonnet::cinc('nohist_anonsurveys',\%anoncounter, - $cdomain,$cname); + &Apache::lonnet::cput('nohist_anonsurveys',\%anoncounter, + $cdomain,$cname); } if (keys(%randtrycounter) > 0) { - &Apache::lonnet::cinc('nohist_randomizetry',\%randtrycounter, - $cdomain,$cname); + &Apache::lonnet::cput('nohist_randomizetry',\%randtrycounter, + $cdomain,$cname); } } @@ -2262,11 +2269,12 @@ sub start_simpleeditbutton { # .&mt('Note: it can take up to 10 minutes for changes to take effect for all users.') # .&Apache::loncommon::help_open_topic('Caching') # .'

'; - $result.=&Apache::lonhtmlcommon::start_funclist() + $result.=&Apache::loncommon::head_subbox( + &Apache::lonhtmlcommon::start_funclist() .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Edit').'') - .&Apache::lonhtmlcommon::end_funclist(); + .&Apache::lonhtmlcommon::end_funclist()); } return $result;