version 1.109, 2012/11/29 23:31:13
|
version 1.112, 2013/03/05 23:23:11
|
Line 532 sub display_actions_box {
|
Line 532 sub display_actions_box {
|
$headings{'crslogin'} = &mt('Last login for users in last 24 hours'); |
$headings{'crslogin'} = &mt('Last login for users in last 24 hours'); |
} |
} |
|
|
my $now = time; |
my ($now,$starttime,$activatedstart,$expiredstart,$crsloginstart); |
|
$now = time; |
|
|
if ($timediff{'versions'} == -1) { |
if ($timediff{'versions'} == -1) { |
$timediff{'versions'} = time; |
$starttime = 0; |
|
} else { |
|
$starttime = $now - $timediff{'versions'}; |
} |
} |
my $starttime = $now - $timediff{'versions'}; |
|
|
|
if ($timediff{'newroles'} == -1) { |
if ($timediff{'newroles'} == -1) { |
$timediff{'newroles'} = time; |
$activatedstart = 0; |
|
} else { |
|
$activatedstart = $now - $timediff{'newroles'}; |
} |
} |
my $activatedstart = $now - $timediff{'newroles'}; |
|
|
|
if ($timediff{'oldroles'} == -1) { |
if ($timediff{'oldroles'} == -1) { |
$timediff{'oldroles'} = time; |
$expiredstart = 0; |
|
} else { |
|
$expiredstart = $now - $timediff{'oldroles'}; |
} |
} |
my $expiredstart = $now - $timediff{'oldroles'}; |
|
|
|
if ($timediff{'crslogin'} == -1) { |
if ($timediff{'crslogin'} == -1) { |
$timediff{'crslogin'} = time; |
$crsloginstart = 0; |
|
} else { |
|
$crsloginstart = $now - $timediff{'crslogin'}; |
} |
} |
|
|
my $crsloginstart = $now - $timediff{'crslogin'}; |
|
|
|
my $countunread = $display_settings{$cid.':countunread'}; |
my $countunread = $display_settings{$cid.':countunread'}; |
unless (defined($countunread)) { |
unless (defined($countunread)) { |
$countunread = 'on'; |
$countunread = 'on'; |
Line 1340 sub getactivated {
|
Line 1345 sub getactivated {
|
my (%stucounted,%advcounted); |
my (%stucounted,%advcounted); |
my $activatedcount = 0; |
my $activatedcount = 0; |
if (keys(%changes) > 0) { |
if (keys(%changes) > 0) { |
foreach my $chg (sort { $b <=> $a } (keys(%changes))) { |
foreach my $chg (keys(%changes)) { |
if (ref($changes{$chg}) eq 'HASH') { |
if (ref($changes{$chg}) eq 'HASH') { |
my $timestamp = $changes{$chg}{'exe_time'}; |
next if ($changes{$chg}{'delflag'}); |
if ($timestamp) { |
if ($rolechgtime > 0) { |
if ($rolechgtime > 0) { |
next if ($changes{$chg}{'exe_time'} < $rolechgtime); |
if ($timestamp < $rolechgtime) { |
} |
last; |
if ($changes{$chg}{'exe_time'}) { |
} |
my $timestamp = $changes{$chg}{'exe_time'}; |
} |
|
if (ref($changes{$chg}{'logentry'}) eq 'HASH') { |
if (ref($changes{$chg}{'logentry'}) eq 'HASH') { |
next if ($changes{$chg}{'delflag'}); |
|
my $start = $changes{$chg}{'logentry'}{'start'}; |
|
my $end = $changes{$chg}{'logentry'}{'end'}; |
my $end = $changes{$chg}{'logentry'}{'end'}; |
my $section = $changes{$chg}{'logentry'}{'section'}; |
|
my $role = $changes{$chg}{'logentry'}{'role'}; |
|
my $uname = $changes{$chg}{'uname'}; |
|
my $udom = $changes{$chg}{'udom'}; |
|
next if ($end && $end <= $now); |
next if ($end && $end <= $now); |
|
my $start = $changes{$chg}{'logentry'}{'start'}; |
|
next if ($start >= $timestamp); |
|
my $section = $changes{$chg}{'logentry'}{'section'}; |
if (($viewablesec ne '') && ($section ne '')) { |
if (($viewablesec ne '') && ($section ne '')) { |
next if ($viewablesec ne $section); |
next if ($viewablesec ne $section); |
} |
} |
next if ($start >= $timestamp); |
my $role = $changes{$chg}{'logentry'}{'role'}; |
|
my $uname = $changes{$chg}{'uname'}; |
|
my $udom = $changes{$chg}{'udom'}; |
if ($role eq 'st') { |
if ($role eq 'st') { |
$stucounted{$uname.':'.$udom.':'.$section} = $start.':'.$end; |
$stucounted{$uname.':'.$udom.':'.$section} = $start.':'.$end; |
} else { |
} else { |
Line 1615 sub display_handgrade {
|
Line 1618 sub display_handgrade {
|
} else { |
} else { |
$linkurl.='?symb='.&escape($res); |
$linkurl.='?symb='.&escape($res); |
} |
} |
$linkurl.='&command=ungraded'; |
$linkurl.='&command=ungraded'; |
$r->print('<tr'.$css_class.'><td><a href="'.$linkurl.'">'.$$ungraded{$res}{title}.'</a></td><td class="LC_right_item">'.$$ungraded{$res}{count}.'</td></tr>'); |
$r->print('<tr'.$css_class.'><td><a href="'.$linkurl.'">'.$$ungraded{$res}{title}.'</a></td><td class="LC_right_item">'.$$ungraded{$res}{count}.'</td></tr>'); |
} |
} |
} elsif ($itemserror) { |
} elsif ($itemserror) { |
Line 1668 sub display_abovethreshold {
|
Line 1671 sub display_abovethreshold {
|
); |
); |
if (@{$warnings} > 0) { |
if (@{$warnings} > 0) { |
@{$warnings} = sort { &cmp_title($a,$b,$res_title) } @{$warnings}; |
@{$warnings} = sort { &cmp_title($a,$b,$res_title) } @{$warnings}; |
$r->print('<input type="hidden" name="command" value="" />'."\n"); |
|
$r->print('<tr class="LC_info_row">'. |
$r->print('<tr class="LC_info_row">'. |
'<td class="LC_left_item">'.$lt{'reso'}.'</td>'. |
'<td class="LC_left_item">'.$lt{'reso'}. |
|
'<input type="hidden" name="command" value="" /></td>'. |
'<td>'.$lt{'part'}.'</td><td>'.$lt{'nust'}.'</td>'. |
'<td>'.$lt{'part'}.'</td><td>'.$lt{'nust'}.'</td>'. |
'<td>'.$lt{'avat'}.'</td><td>'.$lt{'dedi'}.'</td>'. |
'<td>'.$lt{'avat'}.'</td><td>'.$lt{'dedi'}.'</td>'. |
'<td>'.$lt{'lare'}.'</td><td class="LC_right_item">'. |
'<td>'.$lt{'lare'}.'</td><td class="LC_right_item">'. |
Line 1706 sub display_abovethreshold {
|
Line 1709 sub display_abovethreshold {
|
} |
} |
} |
} |
} |
} |
$r->print('<tr class="LC_info_row"><td colspan="7" class="LC_right_item"><br /><input type="button" name="counters" value="'.$lt{'rese'}.'" onclick="javascript:thresholdreset();" /></td></tr></form>'); |
$r->print('<tr class="LC_info_row"><td colspan="7" class="LC_right_item"><br /><input type="button" name="counters" value="'.$lt{'rese'}.'" onclick="javascript:thresholdreset();" /></td></tr>'); |
} elsif ($itemserror) { |
} elsif ($itemserror) { |
$r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>'); |
$r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>'); |
} else { |
} else { |