/usr/share/perl5/PilotMgr/SyncTime.pm is in pilot-manager 1.107.0pre108-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | package SyncTime;
use Tk;
use TkUtils;
use strict;
use vars qw($PREFS $RCFILE $gConfigDlg $VERSION $EMAIL);
$VERSION = '1.02';
$EMAIL = 'Alan.Harder@Sun.COM';
sub conduitInit
{
$RCFILE = "SyncTime/SyncTime.prefs";
&loadPrefs;
$PREFS->{'lastTime'} = 0
unless (defined $PREFS->{'lastTime'});
$PREFS->{'howOften'} = 'Every Sync'
unless (defined $PREFS->{'howOften'});
}
sub conduitQuit
{
&savePrefs;
}
sub conduitInfo
{
return { 'version' => $VERSION,
'author' => 'Alan Harder',
'email' => $EMAIL };
}
sub conduitConfigure
{
my ($this, $wm) = @_;
&createConfigDlg($wm) unless (defined $gConfigDlg);
$gConfigDlg->Popup(-popanchor => 'c', -overanchor => 'c',
-popover => $wm);
}
sub createConfigDlg
{
my ($wm) = @_;
my ($frame);
$gConfigDlg = $wm->Toplevel(-title => 'Configuring SyncTime');
$gConfigDlg->transient($wm);
$gConfigDlg->Label(-text =>
"SyncTime v$VERSION $EMAIL")->pack;
$frame = $gConfigDlg->Frame(-relief => 'ridge', -bd => 3);
$frame->Label(-text => "Set Pilot Time:")->pack;
TkUtils::Radiobuttons($frame, \$PREFS->{'howOften'},
'Every Sync', 'Daily', 'Weekly', 'Monthly');
$frame->pack;
$gConfigDlg->Label(-text =>
"SyncTime copies your desktop time to the pilot,\n" .
"so keep your desktop time accurate.\n" .
"Thanks to Chris Ice for the idea!")->pack;
$gConfigDlg->Button(-text => 'Dismiss', -command =>
['withdraw', $gConfigDlg])->pack;
PilotMgr::setColors($gConfigDlg);
}
sub conduitSync
{
my ($this, $dlp, $info) = @_;
if (&timeToUpdate)
{
$PREFS->{'lastTime'} = time;
PilotMgr::msg('Setting time on pilot..');
# skip error messages from pilot-link.. it's ok to ignore them
# (trust me!)
#
open(SAVEERR, ">&STDERR");
open(STDERR, ">/dev/null");
$dlp->setTime(time);
close(STDERR);
open(STDERR, ">&SAVEERR");
}
}
sub loadPrefs
{
$PREFS = {}, return unless (-r "$RCFILE");
do "$RCFILE";
}
sub savePrefs
{
$Data::Dumper::Purity = 1;
$Data::Dumper::Deepcopy = 1;
$Data::Dumper::Indent = 0;
if (open(FD, ">$RCFILE"))
{
print FD Data::Dumper->Dumpxs([$PREFS], ['PREFS']);
print FD "1;\n";
close(FD);
}
else
{
PilotMgr::msg("Unable to save preferences to $RCFILE!");
}
}
sub timeToUpdate
{
my (@lst, @now, $dif);
@lst = localtime($PREFS->{'lastTime'});
@now = localtime(time);
$dif = time - $PREFS->{'lastTime'};
if ($PREFS->{'howOften'} eq 'Every Sync' or
$PREFS->{'howOften'} eq 'Daily' &&
($lst[3] != $now[3] or $dif >= 86400) or
$PREFS->{'howOften'} eq 'Weekly' &&
($lst[6] > $now[6] or $dif >= 604800 or
($lst[6] == $now[6] and $dif > 86400)) or
$PREFS->{'howOften'} eq 'Monthly' &&
($lst[4] != $now[4] or $dif >= 18748800)
)
{
return 1;
}
return 0;
}
1;
|