# The LearningOnline Network with CAPA
#
# $Id: longradinganalysis.pm,v 1.1 2006/02/14 16:05:46 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
# This file is part of the LearningOnline Network with CAPA (LON-CAPA).
#
# LON-CAPA is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# LON-CAPA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with LON-CAPA; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# /home/httpd/html/adm/gpl.txt
#
# http://www.lon-capa.org/
#
package Apache::longradinganalysis;
use strict;
use Apache::lonnet;
use Apache::loncommon();
use Apache::lonhtmlcommon();
use Apache::loncoursedata();
use Apache::lonstatistics;
use Apache::lonlocal;
use Apache::lonstathelpers();
use Apache::lonstudentsubmissions();
use HTML::Entities();
use Time::Local();
use Data::Dumper;
my @submit_buttons = ({ name => 'PrevProblemAnalysis',
text => 'Previous Problem' },
{ name => 'ProblemAnalysis',
text => 'Analyze Problem Again' },
{ name => 'NextProblemAnalysis',
text => 'Next Problem' },
{ name => 'break'},
{ name => 'SelectAnother',
text => 'Choose a different Problem' });
sub build_grading_analysis_page {
my ($r,$c)=@_;
#
my %saveable_parameters = ('Status' => 'scalar',
'Section' => 'array',
);
&Apache::loncommon::store_course_settings('grading_analysis',
\%saveable_parameters);
&Apache::loncommon::restore_course_settings('grading_analysis',
\%saveable_parameters);
#
&Apache::lonstatistics::PrepareClasslist();
#
$r->print(&create_interface());
#
my @students = @Apache::lonstatistics::Students;
#
if (@students < 1 && exists($env{'form.firstrun'})) {
$r->print('<h2>There are no students in the sections selected</h2>');
}
#
#my @cache_button_HTML =
# &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status');
$r->rflush();
#
if (exists($env{'form.problemchoice'}) &&
! exists($env{'form.SelectAnother'})) {
foreach my $button (@submit_buttons) {
if ($button->{'name'} eq 'break') {
$r->print("<br />\n");
} else {
$r->print('<input type="submit" name="'.$button->{'name'}.'" '.
'value="'.&mt($button->{'text'}).'" />');
$r->print(' 'x5);
}
}
# foreach my $html (@cache_button_HTML) {
# $r->print($html.(' 'x5));
# }
#
#$r->print(&Apache::lonstathelpers::submission_report_form('grading_analysis'));
#
$r->print('<hr />');
$r->rflush();
#
# Determine which problem we are to analyze
my $current_problem = &Apache::lonstathelpers::get_target_from_id
($env{'form.problemchoice'});
#
my ($navmap,$prev,$curr,$next) =
&Apache::lonstathelpers::get_prev_curr_next($current_problem,
undef,
'part_task',
);
if (exists($env{'form.PrevProblemAnalysis'}) && defined($prev)) {
$current_problem = $prev;
} elsif (exists($env{'form.NextProblemAnalysis'}) && defined($next)) {
$current_problem = $next;
} else {
$current_problem = $curr;
}
#
# Store the current problem choice and send it out in the form
$env{'form.problemchoice'} =
&Apache::lonstathelpers::make_target_id($current_problem);
$r->print('<input type="hidden" name="problemchoice" value="'.
$env{'form.problemchoice'}.'" />');
#
if (! defined($current_problem->{'resource'})) {
$r->print('resource is undefined');
} else {
my $resource = $current_problem->{'resource'};
$r->print('<h1>'.$resource->compTitle.'</h1>');
$r->print('<h3>'.$resource->src.'</h3>');
$r->print('<h4>'.&Apache::lonstatistics::section_and_enrollment_description().'</h4>');
$r->rflush();
if ($resource->is_task()) {
&task_analysis($r,$resource,\@students);
} else {
$r->print('<h2>Analysis of '.$resource->src().' is not supported</h2>');
}
}
$r->print('<hr />');
} else {
my $submit_button = '<input type="submit" '.
'name="ProblemAnalysis" value="'.
&mt('Analyze Problem').'" />';
$r->print($submit_button);
$r->print(' 'x5);
$r->print('<h3>'.&mt('Please select a problem to analyze').'</h3>');
#FIXME need a task only selector.
$r->print(&Apache::lonstathelpers::problem_selector('.',
$submit_button));
}
}
sub task_analysis {
my ($r,$problem,$students) = @_;
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin
($r,'Student Answer Compilation Status',
'Student Answer Compilation Progress', scalar(@$students),
'inline',undef,'Statistics','stats_status');
my %graders;
foreach my $student (@$students) {
my $sname = $student->{'username'};
my $sdom = $student->{'domain'};
my %data = &Apache::lonnet::restore($problem->symb(),
$env{'request.course.id'},
$sdom,$sname);
foreach my $ver (0..$data{'version'}) {
if (exists($data{"$ver:resource.0.regrader"})
&& $data{"$ver:resource.0.regrader"} =~ /\S/) {
$graders{$data{"$ver:resource.0.regrader"}}++;
}
}
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
&mt('last student'));
}
if ($env{'form.output'} eq 'csv') {
} elsif ($env{'form.output'} eq 'excel') {
} else {
$r->print('<table class="thinborder">');
foreach my $grader (sort(keys(%graders))) {
my ($gname,$gdom) = split('@',$grader,2);
my $name = &Apache::loncommon::plainname($gname,$gdom);
my $link = &Apache::loncommon::aboutmewrapper($name,$gname,$gdom);
$r->print("<tr><td>$link (<tt>$grader</tt>)</td><td>$graders{$grader}</td></tr>");
}
$r->print('</table>');
}
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
}
#########################################################
#########################################################
##
## Generic Interface Routines
##
#########################################################
#########################################################
sub create_interface {
##
## Build the menu
my $output_selector = $/.'<select name="output">'.$/;
foreach ('HTML','Excel','CSV') {
$output_selector .= ' <option value="'.lc($_).'"';
if ($env{'form.output'} eq lc($_)) {
$output_selector .= ' selected ';
}
$output_selector .='>'.&mt($_).'</option>'.$/;
}
$output_selector .= '</select>'.$/;
my $str = '';
$str .= &Apache::lonhtmlcommon::breadcrumbs
(undef,'Detailed Grading Statistics');
$str .= '<table cellspacing="5">'."\n";
$str .= '<tr>';
$str .= '<td align="center"><b>'.&mt('Sections').'</b></td>';
$str .= '<td align="center"><b>'.&mt('Enrollment Status').'</b></td>';
$str .= '<td>'.&mt('<b>Output as</b> [_1]',$output_selector).'</td>';
$str .= '</tr>'."\n";
##
##
$str .= '<tr><td align="center">'."\n";
$str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);
$str .= '</td>';
#
$str .= '<td align="center">';
$str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5);
$str .= '</td>';
#
$str .= '<td>';
##
$str .= '<nobr><label>'.&mt('Status: [_1]',
'<input type="text" '.
'name="stats_status" size="60" value="" />'
).
'</label></nobr>';
$str .= '</td>';
##
##
$str .= '</tr>'."\n";
$str .= '</table>'."\n";
return $str;
}
1;
__END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>