diff options
author | Romain d'Alverny <rdalverny@mandriva.org> | 2005-08-05 05:04:05 +0000 |
---|---|---|
committer | Romain d'Alverny <rdalverny@mandriva.org> | 2005-08-05 05:04:05 +0000 |
commit | 33ab80dae41d9b2d7b1419fb976d5807fbd1e404 (patch) | |
tree | 6f0714274608859f9d7aa2bba33b9f49b0ba8e41 | |
parent | f89016ce4e4b5c4e91ccfd5cd16718bcb29f01fa (diff) | |
download | mgaonline-33ab80dae41d9b2d7b1419fb976d5807fbd1e404.tar mgaonline-33ab80dae41d9b2d7b1419fb976d5807fbd1e404.tar.gz mgaonline-33ab80dae41d9b2d7b1419fb976d5807fbd1e404.tar.bz2 mgaonline-33ab80dae41d9b2d7b1419fb976d5807fbd1e404.tar.xz mgaonline-33ab80dae41d9b2d7b1419fb976d5807fbd1e404.zip |
Fixed wrong URLs.
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | mdkapplet | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -2,6 +2,8 @@ $Id$ Things to do on mdkonline ------------------------------------------------------------------------------- + * handle additional sources for update alerts (only) (like plf, etc.) + * input form fields should be limited in data size (host name should not exceed what db server can handle) @@ -40,7 +40,7 @@ my $in = interactive->vnew(''); ugtk2::add_icon_path("/usr/share/mdkonline/pixmaps/"); my $arch = arch(); -my $online_site = "http://www.mandrivaonline.net/"; +my $online_site = "https://www.mandrivaonline.com/"; my ($menu, $timeout, $refreshtm, $networktm, $eventbox, $img, $av_pkgs, $update_label, $lastch, $mLog, $buffer, $textview, $wlog, $textvw, $state_global); my ($need_update, $raisedwindow, $isAvailable, $debug) = (0, 0, 0, 0); @@ -65,7 +65,7 @@ my %state = ( colour => [ 'noconf' ], changes => [ 'okay', 'busy', 'critical', 'disconnected' ], menu => [ 'configureApplet', 'check', 'weblink' ], - tt => [ N_("Service configuration problem. Please check logs and send mail to support\@mandrivaonline.net") ] + tt => [ N_("Service configuration problem. Please check logs and send mail to support\@mandrivaonline.com") ] }, busy => { colour => [ 'busy' ], @@ -339,7 +339,7 @@ sub isNetwork { # my $h = mdkonline::get_distro_type(); my $network; if ($r <= 10.0) { - $network = gethostbyname("mandrivaonline.net") ? 1 : 0; + $network = gethostbyname("mandrivaonline.com") ? 1 : 0; } elsif ($r <= 10.2) { require network::netconnect; require network::tools; |