--- loncom/interface/lontrackstudent.pm 2007/02/13 01:44:02 1.23
+++ loncom/interface/lontrackstudent.pm 2012/10/04 13:41:10 1.34
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lontrackstudent.pm,v 1.23 2007/02/13 01:44:02 albertel Exp $
+# $Id: lontrackstudent.pm,v 1.34 2012/10/04 13:41:10 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -48,6 +48,7 @@ use Apache::lonmysql;
use Apache::lonnet;
use Apache::lonlocal;
use Time::HiRes;
+use DateTime();
use lib '/home/httpd/lib/perl/';
use LONCAPA;
@@ -118,13 +119,16 @@ sub get_data {
$text = 'View more activity by this student';
$inc = $num_records;
$r->print(&Apache::loncommon::track_student_link($text,$sname,$sdom,undef,
- ($env{'form.start'}+$inc)
+ ($env{'form.start'}+$inc),
+ $env{'form.only_body'}
));
$r->print('
');
}
+ $r->print('
'.&mt('So far, no data has been returned for your request').'
'); return -1; } if (! open(ACTIVITYDATA,$results_file)) { - $r->print(''.&mt('Unable to read results file.').'
'. ''. &mt('This is a serious error and has been logged. '. 'You should contact your system administrator '. @@ -265,6 +269,7 @@ sub output_results { if ($mode eq 'full_class') { $tableheader = '
'. ' | '.&mt('Resource').' | '. ''.&mt('Time').' | '. ''.&mt('Student').' | '. @@ -275,6 +280,7 @@ sub output_results { } elsif ($mode =~ /^student:(.*):(.*)$/) { $tableheader = '
---|
'. ' | '.&mt('Resource').' | '. ''.&mt('Time').' | '. ''.&mt('Action').' | '. @@ -286,6 +292,17 @@ sub output_results { $r->rflush(); ## ## + + my $cid = $env{'request.course.id'}; + my $cnum = $env{'course.'.$cid.'.num'}; + my $cdom = $env{'course.'.$cid.'.domain'}; + my $server_timezone = &Apache::lonnet::get_server_timezone($cnum,$cdom); + if ($server_timezone ne '') { + if (&Apache::lonlocal::gettimezone($server_timezone) eq 'local') { + $server_timezone = ''; + } + } + while (my $line =|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
}.($count+1).qq{ | }; if ($src =~ m|^/adm/|) { $tablerow .= - ''.$title.' | '; } else { $tablerow .= - ''.
''.$title.''.
- ' | ';
+ ' | ';
+ }
+ if ($server_timezone ne '') {
+ $timestamp = &convert_timezone($server_timezone,$timestamp);
}
- $tablerow .= ''.$timestamp.' | '; if ($mode eq 'full_class') { $tablerow.=''.$student.' | '; } @@ -383,20 +403,55 @@ sub output_results { return $count; } +sub convert_timezone { + my ($server_timezone,$timestamp) = @_; + if ($server_timezone && $timestamp) { + my ($date,$time) = split(/\s+/,$timestamp); + my ($year,$month,$day) = split(/\-/,$date); + my ($hour,$minute,$sec) = split(/:/,$time); + foreach ($month,$day,$hour,$minute,$sec) { + return $timestamp if $_ eq ''; + $_ =~ s/^0//; + } + my $dt = DateTime->new(year => $year, + month => $month, + day => $day, + hour => $hour, + minute => $minute, + second => $sec, + time_zone => $server_timezone, + ); + my $unixtime = $dt->epoch; + $timestamp = &Apache::lonlocal::locallocaltime($unixtime); + } + return $timestamp; +} + ################################################################### ################################################################### sub display_values { my ($action,$values)=@_; my $result='
'. - &unescape($key). + $unesc_key. ' | = | '. &unescape($values{$key}).' |