diff options
author | Daouda Lo <daouda@mandriva.com> | 2004-08-11 06:43:21 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2004-08-11 06:43:21 +0000 |
commit | 0775ad6ba1c141bd0bfee8361d1e5fcd0a35e85e (patch) | |
tree | 394975855575c719424a5a3168e28ad1775b987d /perl-install/standalone | |
parent | a510a01b688f3a7af5f3abf41748f2f9a096ca44 (diff) | |
download | drakx-backup-do-not-use-0775ad6ba1c141bd0bfee8361d1e5fcd0a35e85e.tar drakx-backup-do-not-use-0775ad6ba1c141bd0bfee8361d1e5fcd0a35e85e.tar.gz drakx-backup-do-not-use-0775ad6ba1c141bd0bfee8361d1e5fcd0a35e85e.tar.bz2 drakx-backup-do-not-use-0775ad6ba1c141bd0bfee8361d1e5fcd0a35e85e.tar.xz drakx-backup-do-not-use-0775ad6ba1c141bd0bfee8361d1e5fcd0a35e85e.zip |
- use webclient-kde instead of konqueror
- add epiphany browser
Diffstat (limited to 'perl-install/standalone')
-rw-r--r-- | perl-install/standalone/drakhelp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index b6040a291..496aad561 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -36,9 +36,9 @@ my ($lg, $instpath, $ancpath, $package) = ctxhelp::path2help($opt, $idlabel); my $wm = any::running_window_manager(); my %launchhelp = ( - 'kwin' => sub { system("konqueror " . $ancpath . "&") }, + 'kwin' => sub { system("webclient-kde " . $ancpath . "&") }, 'gnome-session' => sub { system("yelp ghelp://" . $ancpath . "&") }, - 'other' => sub { my $browser = $ENV{BROWSER} || find { -x "/usr/bin/$_" } qw(mozilla konqueror galeon) or $in->ask_warn('drakhelp', N("No browser is installed on your system, Please install one if you want to browse the help system")); + 'other' => sub { my $browser = $ENV{BROWSER} || find { -x "/usr/bin/$_" } qw(mozilla konqueror epiphany galeon) or $in->ask_warn('drakhelp', N("No browser is installed on your system, Please install one if you want to browse the help system")); log::explanations("Loading help system : $ancpath"); system("$browser " . $ancpath . "&") } |