blob: 19dc4ef04f7302689c8d777139657570bb1edafe (
plain)
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
|
#!/usr/bin/perl
use strict;
use diagnostics;
use lib qw(/usr/lib/libDrakX);
use standalone; #- warning, standalone must be loaded very first, for 'explanations'
use interactive;
use common;
use any;
use ctxhelp;
use log;
sub usage() {
print STDERR N(" drakhelp 0.1
Copyright (C) 2003-2005 Mandriva.
This is free software and may be redistributed under the terms of the GNU GPL.
Usage:
") . N(" --help - display this help
") . N(" --id <id_label> - load the html help page which refers to id_label
") . N(" --doc <link> - link to another web page ( for WM welcome frontend)
");
exit(0)
}
my ($opt, $idlabel) = @ARGV;
@ARGV == 2 && ($opt eq '--id' || $opt eq '--doc' || $opt eq '--help') or usage();
$ugtk2::wm_icon = "help";
my $in = interactive->vnew;
my ($instpath, $ancpath, $package) = ctxhelp::path2help($opt, $idlabel);
-e $instpath or system("/usr/sbin/drakhelp_inst $package");
-e $instpath or $in->ask_warn(N("Mandriva Linux Help Center"), N("%s cannot be displayed \n. No Help entry of this type\n", $instpath));
system("/usr/bin/www-browser $ancpath &") if -e $instpath;
|