mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
commandref_join.pl: bugfix, commandref_frame.html: remove some fixed categorizations (Forum #47155)
git-svn-id: https://svn.fhem.de/fhem/trunk@10547 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
66717398fc
commit
689d54a36c
@ -33,7 +33,10 @@ if(!$verify) {
|
||||
$modIdx{$l} = "device";
|
||||
open(MOD, "$modDir/$of") || die("Cant open $modDir/$l");
|
||||
while(my $cl = <MOD>) {
|
||||
$modIdx{$l} = $1 if($cl =~ m/^=item\s*(helper|command|device)/);
|
||||
if($cl =~ m/^=item\s+(helper|command|device)/) {
|
||||
$modIdx{$l} = $1;
|
||||
last;
|
||||
}
|
||||
}
|
||||
close(MOD);
|
||||
}
|
||||
@ -124,7 +127,7 @@ sub generateModuleCommandref($$;$)
|
||||
$dosMode = 1 if($l =~ m/^=begin html$suffix.*\r/);
|
||||
if($l =~ m/^=begin html$suffix$/) {
|
||||
$l = <MOD>; # skip one line, to be able to repeat join+split
|
||||
print "$lang $mod: nonempty line after =begin html ignored\n"
|
||||
print "*** $lang $mod: nonempty line after =begin html ignored\n"
|
||||
if($l =~ m/^...*$/);
|
||||
$skip = 0; $line++;
|
||||
|
||||
@ -159,11 +162,11 @@ sub generateModuleCommandref($$;$)
|
||||
EOF
|
||||
}
|
||||
}
|
||||
print "$lang $mods{$mod}: No a-tag with name=\"$mod\" \n"
|
||||
print "*** $lang $mods{$mod}: No a-tag with name=\"$mod\" \n"
|
||||
if(!$suffix && $docCount && !$hasLink && !$noWarnings);
|
||||
|
||||
foreach $tag (TAGS) {
|
||||
print("$lang $mods{$mod}: Unbalanced $tag ".
|
||||
print("*** $lang $mods{$mod}: Unbalanced $tag ".
|
||||
"($tagcount{$tag}, last line ok: $llwct{$tag})\n")
|
||||
if($tagcount{$tag} && !$noWarnings);
|
||||
}
|
||||
|
@ -39,9 +39,7 @@
|
||||
<a href="#attr">attr</a>
|
||||
<a href="#cancel">cancel</a>
|
||||
<a href="#cmdalias">cmdalias</a>
|
||||
<a href="#configdb">configdb</a>
|
||||
<a href="#copy">copy</a>
|
||||
<a href="#count">count</a>
|
||||
<a href="#createlog">createlog</a>
|
||||
<a href="#define">define</a>
|
||||
<a href="#defmod">defmod</a>
|
||||
@ -52,7 +50,6 @@
|
||||
<a href="#fheminfo">fheminfo</a>
|
||||
<a href="#get">get</a>
|
||||
<a href="#getstate">getstate</a>
|
||||
<a href="#help">?,help</a>
|
||||
<a href="#IF">IF</a>
|
||||
<a href="#include">include</a>
|
||||
<a href="#inform">inform</a>
|
||||
@ -76,7 +73,6 @@
|
||||
<a href="#trigger">trigger</a>
|
||||
<a href="#update">update</a>
|
||||
<a href="#usb">usb</a>
|
||||
<a href="#version">version</a>
|
||||
<a href="#XmlList">xmllist</a>
|
||||
|
||||
</ul>
|
||||
@ -94,14 +90,11 @@
|
||||
<ul>
|
||||
<!-- header:helper -->
|
||||
<a href="#Calendar">Calendar</a>
|
||||
<a href="#configDB">configDB</a>
|
||||
<a href="#CustomReadings">CustomReadings</a>
|
||||
<a href="#DOIF">DOIF</a>
|
||||
<a href="#Dashboard">Dashboard</a>
|
||||
<a href="#DbLog">DbLog</a>
|
||||
<a href="#dewpoint">dewpoint</a>
|
||||
<a href="#FB_CALLMONITOR">FB_CALLMONITOR</a>
|
||||
<a href="#FB_CALLLIST">FB_CALLLIST</a>
|
||||
<a href="#FLOORPLAN">FLOORPLAN</a>
|
||||
<a href="#GEOFANCY">GEOFANCY</a>
|
||||
<a href="#GUEST">GUEST</a>
|
||||
@ -111,26 +104,16 @@
|
||||
<a href="#HMinfo">HMinfo</a>
|
||||
<a href="#HourCounter">HourCounter</a>
|
||||
<a href="#InfoPanel">InfoPanel</a>
|
||||
<a href="#LightScene">LightScene</a>
|
||||
<a href="#logProxy">logProxy</a>
|
||||
<a href="#mailcheck">mailcheck</a>
|
||||
<a href="#MaxScanner">MaxScanner</a>
|
||||
<a href="#msgConfig">msgConfig</a>
|
||||
<a href="#PRESENCE">PRESENCE</a>
|
||||
<a href="#PachLog">PachLog</a>
|
||||
<a href="#RSS">RSS</a>
|
||||
<a href="#RandomTimer">RandomTimer</a>
|
||||
<a href="#rain">rain</a>
|
||||
<a href="#readingsGroup">readingsGroup</a>
|
||||
<a href="#readingsHistory">readingsHistory</a>
|
||||
<a href="#readingsProxy">readingsProxy</a>
|
||||
<a href="#remotecontrol">remotecontrol</a>
|
||||
<a href="#rssFeed">rssFeed</a>
|
||||
<a href="#RESIDENTS">RESIDENTS</a>
|
||||
<a href="#ROOMMATE">ROOMMATE</a>
|
||||
<a href="#SUNRISE_EL">SUNRISE_EL</a>
|
||||
<a href="#SYSSTAT">SYSSTAT</a>
|
||||
<a href="#speedtest">speedtest</a>
|
||||
<a href="#statistics">statistics</a>
|
||||
<a href="#Twilight">Twilight</a>
|
||||
<a href="#THRESHOLD">THRESHOLD</a>
|
||||
|
Loading…
Reference in New Issue
Block a user