From e91699b32391e3942b3c95e6e495f4c60cde0c2c Mon Sep 17 00:00:00 2001 From: Daouda Lo Date: Thu, 16 Jan 2003 14:08:04 +0000 Subject: - syntax : drakhelp relative_link example: drakhelp Quick_Startup.html/drakx.html - drakhelp will check the running wm and will launch kdehelpcenter with the correct URL after localizing the link. Otherwise, it launch a default browser: mozilla konqueror or galeon. --- perl-install/standalone/drakhelp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 perl-install/standalone/drakhelp (limited to 'perl-install/standalone/drakhelp') diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp new file mode 100644 index 000000000..265ecc83e --- /dev/null +++ b/perl-install/standalone/drakhelp @@ -0,0 +1,28 @@ +#!/usr/bin/perl + +use lib qw(/usr/lib/libDrakX); + +use standalone; #- warning, standalone must be loaded very first, for 'explanations' + +use interactive; +use common; +use lang; +use any; + +my $lang = lang::lang2LANG(lang::read('',$>)) || 'en'; +if (!member($lang, qw(de en es fr it ru))) { $lang = 'en' }; +my $path_to_help = "/usr/share/doc/mandrake/" . $lang . "/"; + +if ((my $wm = any::running_window_manager()) eq 'kwin') { + system("mdklaunchhelp " . $path_to_help . $ARGV[0] . "&"); +} else { + on_request_help($path_to_help . $ARGV[0]) +} + +sub on_request_help { + my ($link) = @_; + my $browser = $ENV{BROWSER} || find { -x "/usr/bin/$_" } qw(mozilla konqueror galeon) or return; + standalone::explanations("Connection to help system at $link"); + system("$browser $link &"); +} + -- cgit v1.2.1