diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-21 02:04:00 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-21 03:26:41 +0100 |
commit | 1455583f43808bc43fb0ade94aa770e84f62276f (patch) | |
tree | 3ec92a0a443e0b6543bd729e84a15f17fdffd293 /mgaapplet | |
parent | f2900d02fe5a5176db7649ad8920f4cecc4eea5a (diff) | |
download | mgaonline-1455583f43808bc43fb0ade94aa770e84f62276f.tar mgaonline-1455583f43808bc43fb0ade94aa770e84f62276f.tar.gz mgaonline-1455583f43808bc43fb0ade94aa770e84f62276f.tar.bz2 mgaonline-1455583f43808bc43fb0ade94aa770e84f62276f.tar.xz mgaonline-1455583f43808bc43fb0ade94aa770e84f62276f.zip |
split mgaapplet module
(needed for next commit)
Diffstat (limited to 'mgaapplet')
-rwxr-xr-x | mgaapplet | 38 |
1 files changed, 1 insertions, 37 deletions
@@ -35,6 +35,7 @@ use mygtk3 qw(gtknew); #- do not import gtkadd which conflicts with ugtk3 versio use ugtk3 qw(:all); use lib qw(/usr/lib/libDrakX/drakfirsttime); use mgaonline; +use mgaapplet; use mgaapplet_gui; use Gtk3::Notify '-init', 'mgaapplet'; use Net::DBus qw(:typing); @@ -158,43 +159,6 @@ Then, restart \"%s\".", N("Enabled"), 'mgaapplet') ], }, ); -my %comm_codes = ( - locked => { - code => 2, - status => 'locked', - log => "urpmi database locked, skipping updating urpmi database", - }, - error_updating => { - code => 3, - status => 'critical', - log => N_("Error updating media"), - }, - no_update_medium => { - code => 4, - status => 'no_update_medium', - log => "no update media configured", - }, - no_enabled_medium => { - code => 5, - status => 'no_enabled_medium', - log => "all update media are disabled", - }, - updates => { - code => 6, - status => 'updates', - log => "Checking... Updates are available\n\n", - }, - uptodate => { - code => 7, - status => 'okay', - log => "Packages are up to date\n", - }, - db_not_open => { - code => 8, - status => 'critical', - log => "Failed to open urpmi database\n", - }, -); my %actions = ( 'update' => { name => N("Install updates"), launch => \&installUpdates }, |