mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-05 17:48:44 +00:00
98_help.pm: new module (Forum #33916)
git-svn-id: https://svn.fhem.de/fhem/trunk@8030 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
be4ff3bee6
commit
569bf61195
@ -1,5 +1,6 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- feature: help is now a separate module
|
||||
- feature: pahColor() added to Color.pm to convert temperatures
|
||||
into rgb values. See forum thread #30128
|
||||
- feature: FB_CALLMONITOR: read all available phonebooks directly wia
|
||||
|
@ -95,15 +95,32 @@ sub CommandHelp {
|
||||
=begin html
|
||||
|
||||
<a name="help"></a>
|
||||
<h3>help</h3>
|
||||
<h3>?, help</h3>
|
||||
<ul>
|
||||
<code>? [<moduleName>]</code><br/>
|
||||
<code>help [<moduleName>]</code><br/>
|
||||
<br/>
|
||||
<ul>
|
||||
<li>returns a list of available commands, when called without a moduleName</li>
|
||||
<li>returns a list of available commands, when called without a
|
||||
moduleName</li>
|
||||
<li>returns a module dependent helptext, same as in commandref</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
=end html
|
||||
|
||||
=begin html_DE
|
||||
|
||||
<a name="help"></a>
|
||||
<h3>?, help</h3>
|
||||
<ul>
|
||||
<code>? [<moduleName>]</code><br/>
|
||||
<code>help [<moduleName>]</code><br/>
|
||||
<br>
|
||||
Liefert eine Liste aller Befehle mit einer Kurzbeschreibung zurück.
|
||||
Falls moduleName spezifiziert ist, wird die modul-spezifische Hilfe
|
||||
aus commandref zurückgeliefert.
|
||||
</ul>
|
||||
=end html_DE
|
||||
|
||||
=cut
|
@ -52,6 +52,7 @@ my @filelist2 = (
|
||||
"FHEM/lib/MP3/Tag/.*",
|
||||
"FHEM/lib/UPnP/.*",
|
||||
"www/pgm2/.*",
|
||||
"www/pgm2/images/.*.png",
|
||||
"www/jscolor/.*",
|
||||
"www/codemirror/.*",
|
||||
"www/gplot/.*.gplot",
|
||||
|
33
fhem/fhem.pl
33
fhem/fhem.pl
@ -133,7 +133,6 @@ sub CommandDeleteAttr($$);
|
||||
sub CommandDeleteReading($$);
|
||||
sub CommandDisplayAttr($$);
|
||||
sub CommandGet($$);
|
||||
sub CommandHelp($$);
|
||||
sub CommandIOWrite($$);
|
||||
sub CommandInclude($$);
|
||||
sub CommandInform($$);
|
||||
@ -249,7 +248,7 @@ $modules{Global}{LOADED} = 1;
|
||||
$modules{Global}{AttrList} =
|
||||
"archivecmd apiversion archivedir configfile lastinclude logfile " .
|
||||
"modpath nrarchive pidfilename port statefile title " .
|
||||
"mseclog:1,0 version nofork:1,0 logdir holiday2we " .
|
||||
"mseclog:1,0 version nofork:1,0 language:EN,DE logdir holiday2we " .
|
||||
"autoload_undefined_devices:1,0 dupTimeout latitude longitude altitude " .
|
||||
"backupcmd backupdir backupsymlink backup_before_update " .
|
||||
"exclude_from_update motd restoreDirs uniqueID ".
|
||||
@ -263,8 +262,7 @@ $readingFnAttributes = "event-on-change-reading event-on-update-reading ".
|
||||
|
||||
|
||||
%cmds = (
|
||||
"?" => { Fn=>"CommandHelp",
|
||||
Hlp=>",get this help" },
|
||||
"?" => { ReplacedBy => "help" },
|
||||
"attr" => { Fn=>"CommandAttr",
|
||||
Hlp=>"<devspec> <attrname> [<attrval>],set attribute for <devspec>"},
|
||||
"define" => { Fn=>"CommandDefine",
|
||||
@ -272,15 +270,14 @@ $readingFnAttributes = "event-on-change-reading event-on-update-reading ".
|
||||
"deleteattr" => { Fn=>"CommandDeleteAttr",
|
||||
Hlp=>"<devspec> [<attrname>],delete attribute for <devspec>" },
|
||||
"deletereading" => { Fn=>"CommandDeleteReading",
|
||||
Hlp=>"<devspec> [<attrname>],delete user defined reading for <devspec>" },
|
||||
Hlp=>"<devspec> [<attrname>],delete user defined reading for ".
|
||||
"<devspec>" },
|
||||
"delete" => { Fn=>"CommandDelete",
|
||||
Hlp=>"<devspec>,delete the corresponding definition(s)"},
|
||||
"displayattr"=> { Fn=>"CommandDisplayAttr",
|
||||
Hlp=>"<devspec> [attrname],display attributes" },
|
||||
"get" => { Fn=>"CommandGet",
|
||||
Hlp=>"<devspec> <type dependent>,request data from <devspec>" },
|
||||
"help" => { Fn=>"CommandHelp",
|
||||
Hlp=>",get this help" },
|
||||
"include" => { Fn=>"CommandInclude",
|
||||
Hlp=>"<filename>,read the commands from <filenname>" },
|
||||
"inform" => { Fn=>"CommandInform",
|
||||
@ -340,7 +337,6 @@ if(int(@ARGV) < 1) {
|
||||
print "install as windows service: fhem.pl configfile -i\n";
|
||||
print "uninstall the windows service: fhem.pl -u\n";
|
||||
}
|
||||
CommandHelp(undef, undef);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@ -1068,27 +1064,6 @@ devspec2array($)
|
||||
return @ret;
|
||||
}
|
||||
|
||||
#####################################
|
||||
sub
|
||||
CommandHelp($$)
|
||||
{
|
||||
my ($cl, $param) = @_;
|
||||
|
||||
my $str = "\n" .
|
||||
"Possible commands:\n\n" .
|
||||
"Command Parameter Description\n" .
|
||||
"-----------------------------------------------\n";
|
||||
|
||||
for my $cmd (sort keys %cmds) {
|
||||
next if(!$cmds{$cmd}{Hlp});
|
||||
next if($cl && $cmds{$cmd}{ClientFilter} &&
|
||||
$cl->{TYPE} !~ m/$cmds{$cmd}{ClientFilter}/);
|
||||
my @a = split(",", $cmds{$cmd}{Hlp}, 2);
|
||||
$str .= sprintf("%-9s %-25s %s\n", $cmd, $a[0], $a[1]);
|
||||
}
|
||||
return $str;
|
||||
}
|
||||
|
||||
#####################################
|
||||
sub
|
||||
CommandInclude($$)
|
||||
|
@ -102,3 +102,5 @@ div#svgmarker {
|
||||
color:#278727; background:#FFFFE7;
|
||||
border:2px solid #278727; border-radius:4px;
|
||||
}
|
||||
|
||||
div.detLink { display:inline-block; margin-right:0.5em; }
|
||||
|
@ -4,3 +4,5 @@
|
||||
div.ui-dialog { border:3px solid white; padding: 0.2em; }
|
||||
div.ui-dialog div.ui-dialog-titlebar { display:none; }
|
||||
div.ui-widget-content { background:#444444; color:#CCCCCC; }
|
||||
|
||||
div.detLink { display:inline-block; margin-right:0.5em; }
|
||||
|
@ -86,3 +86,5 @@ div#svgmarker {
|
||||
color:#278727; background:#FFFFE7;
|
||||
border:2px solid #278727; border-radius:4px;
|
||||
}
|
||||
|
||||
div.detLink { display:inline-block; margin-right:0.5em; }
|
||||
|
@ -140,6 +140,23 @@ FW_jqueryReadyFn()
|
||||
return true;
|
||||
});
|
||||
});
|
||||
|
||||
$("div.devSpecHelp a").each(function(){ // Help on detail window
|
||||
var dev = $(this).attr("href").split("#").pop();
|
||||
$(this).attr("href", "#");
|
||||
$(this).click(function(evt){
|
||||
if($("#devSpecHelp").length) {
|
||||
$("#devSpecHelp").remove();
|
||||
return;
|
||||
}
|
||||
$("#content").append('<div id="devSpecHelp"></div>');
|
||||
FW_cmd(FW_root+"?cmd=help "+dev+"&XHR=1", function(data) {
|
||||
$("#devSpecHelp").html(data);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user