version 1.137, 2009/04/21 13:28:23
|
version 1.142.2.2, 2012/12/17 03:52:30
|
Line 73 sub BuildProblemAnalysisPage {
|
Line 73 sub BuildProblemAnalysisPage {
|
# |
# |
&Apache::lonstatistics::PrepareClasslist(); |
&Apache::lonstatistics::PrepareClasslist(); |
# |
# |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Detailed Problem Analysis')); |
|
|
$r->print(&CreateInterface()); |
$r->print(&CreateInterface()); |
# |
# |
my @Students = @Apache::lonstatistics::Students; |
my @Students = @Apache::lonstatistics::Students; |
Line 142 sub BuildProblemAnalysisPage {
|
Line 144 sub BuildProblemAnalysisPage {
|
my $resource = $current_problem->{'resource'}; |
my $resource = $current_problem->{'resource'}; |
$r->print('<h1>'.$resource->compTitle.'</h1>'); |
$r->print('<h1>'.$resource->compTitle.'</h1>'); |
$r->print('<h3>'.$resource->src.'</h3>'); |
$r->print('<h3>'.$resource->src.'</h3>'); |
$r->print('<h4>'.&Apache::lonstatistics::section_and_enrollment_description().'</h4>'); |
$r->print('<p>'.&Apache::lonstatistics::section_and_enrollment_description().'</p>'); |
if ($env{'form.show_prob'} eq 'true') { |
if ($env{'form.show_prob'} eq 'true') { |
$r->print('<hr />' |
$r->print('<hr />' |
.&Apache::lonstathelpers::render_resource($resource) |
.&Apache::lonstathelpers::render_resource($resource) |
Line 626 sub numerical_determine_answers {
|
Line 628 sub numerical_determine_answers {
|
my ($r,$resource,$partid,$respid,$students)=@_; |
my ($r,$resource,$partid,$respid,$students)=@_; |
my $c = $r->connection(); |
my $c = $r->connection(); |
# |
# |
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin |
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,scalar(@$students)); |
($r,'Student Answer Compilation Status', |
|
'Student Answer Compilation Progress', scalar(@$students), |
|
'inline',undef,'Statistics','stats_status'); |
|
# |
# |
# Read in the cache (if it exists) before we start timing things. |
# Read in the cache (if it exists) before we start timing things. |
&Apache::lonstathelpers::ensure_proper_cache($resource->{'symb'}); |
&Apache::lonstathelpers::ensure_proper_cache($resource->{'symb'}); |
Line 663 sub numerical_determine_answers {
|
Line 662 sub numerical_determine_answers {
|
} |
} |
$answers{$correct->{$sname.':'.$sdom}{'answer'}}++; |
$answers{$correct->{$sname.':'.$sdom}{'answer'}}++; |
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
&mt('last student')); |
'last student'); |
} |
} |
&Apache::lonstathelpers::write_analysis_cache(); |
&Apache::lonstathelpers::write_analysis_cache(); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
Line 1477 sub OR_time_analysis {
|
Line 1476 sub OR_time_analysis {
|
# |
# |
if ($num_concepts < 2) { |
if ($num_concepts < 2) { |
$table = '<h3>'. |
$table = '<h3>'. |
&mt('Not enough data for concept analysis. '. |
&mt('Not enough data for concept analysis.').' '. |
'Performing Foil Analysis'). |
&mt('Performing Foil Analysis'). |
'</h3>'.$table; |
'</h3>'.$table; |
} |
} |
# |
# |
my $num_plots = $env{'form.NumPlots'}; |
my $num_plots = $env{'form.NumPlots'}; |
Line 1875 sub CreateInterface {
|
Line 1874 sub CreateInterface {
|
## |
## |
## Build the menu |
## Build the menu |
my $Str = ''; |
my $Str = ''; |
$Str .= &Apache::lonhtmlcommon::breadcrumbs('Detailed Problem Analysis'); |
|
$Str .= '<p>'; |
$Str .= '<p>'; |
$Str .= &Apache::loncommon::start_data_table(); |
$Str .= &Apache::loncommon::start_data_table(); |
$Str .= &Apache::loncommon::start_data_table_header_row(); |
$Str .= &Apache::loncommon::start_data_table_header_row(); |
Line 1901 sub CreateInterface {
|
Line 1899 sub CreateInterface {
|
# |
# |
## |
## |
## |
## |
$Str .= '<td align="right" valign="top">'; |
$Str .= '<td valign="top">'; |
## |
## |
my $showprob_checkbox = |
my $showprob_checkbox = |
'<input type="checkbox" name="show_prob" value="true" '; |
'<input type="checkbox" name="show_prob" value="true"'; |
if ($env{'form.show_prob'} eq 'true') { |
if ($env{'form.show_prob'} eq 'true') { |
$showprob_checkbox .= 'checked="checked" '; |
$showprob_checkbox .= ' checked="checked"'; |
} |
} |
$showprob_checkbox.= ' />'; |
$showprob_checkbox.= ' />'; |
$Str.= '<span class="LC_nobreak"><label>'. |
$Str.= '<span class="LC_nobreak"><label>'. |
&mt('Show problem').' '.$showprob_checkbox. |
$showprob_checkbox.' '.&mt('Show problem'). |
'</label></span><br />'; |
'</label></span><br />'; |
## |
## |
my $analyze_selector = '<select name="AnalyzeOver" >'; |
my $analyze_selector = '<select name="AnalyzeOver" >'; |