mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
git-svn-id: https://svn.fhem.de/fhem/trunk@9866 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
99bfeab037
commit
c439f0e78b
@ -1120,7 +1120,7 @@ The following local attributes are used by a wider range of devices:
|
|||||||
<ul>
|
<ul>
|
||||||
<li>[device:reading] with the corresponding reading of device, if both device
|
<li>[device:reading] with the corresponding reading of device, if both device
|
||||||
and reading exists.</li>
|
and reading exists.</li>
|
||||||
<li>{perlExpression} with the result of perlExpression, if the expression
|
<li>{(perlExpression)} with the result of perlExpression, if the expression
|
||||||
does not generates an error.</li>
|
does not generates an error.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
@ -1183,7 +1183,7 @@ Die folgenden lokalen Attribute werden von mehreren Geräten verwendet:
|
|||||||
<ul>
|
<ul>
|
||||||
<li>[device:reading] mit dem Wert des Readings für device, falls sowohl
|
<li>[device:reading] mit dem Wert des Readings für device, falls sowohl
|
||||||
device, als auch Reading existiert, und nicht leer ist.</li>
|
device, als auch Reading existiert, und nicht leer ist.</li>
|
||||||
<li>{perlExpression} mit dem Ergebnis der perlExpression, falls der Ausdruck
|
<li>{(perlExpression)} mit dem Ergebnis der perlExpression, falls der Ausdruck
|
||||||
keinen Fehler generiert.</li>
|
keinen Fehler generiert.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
@ -1511,10 +1511,10 @@ ReplaceSetMagic(@) # Forum #38276
|
|||||||
my $x = ReadingsVal($1,$2,""); $x eq "" ? "[$1:$2]" : $x
|
my $x = ReadingsVal($1,$2,""); $x eq "" ? "[$1:$2]" : $x
|
||||||
}/egi;
|
}/egi;
|
||||||
|
|
||||||
$a =~ s/({[^}]+})/{
|
$a =~ s/{\((.*)\)}/{
|
||||||
my $x = eval $1;
|
my $x = eval $1;
|
||||||
Log 1, "ReplaceSetMagic: $1 -> $@" if($@);
|
Log 1, "ReplaceSetMagic: $1 -> $@" if($@);
|
||||||
($@ || ref($x) eq "HASH") ? $1 : $x
|
$@ ? $1 : $x
|
||||||
}/eg;
|
}/eg;
|
||||||
|
|
||||||
return split(" ", $a);
|
return split(" ", $a);
|
||||||
|
Loading…
Reference in New Issue
Block a user