2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

98_FReplacer.pm: attributes will be added to userattr to allow clicking on them in Fhemweb

git-svn-id: https://svn.fhem.de/fhem/trunk@7131 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
ststrobel 2014-12-05 19:22:55 +00:00
parent b8aef185d9
commit 6df5668813

View File

@ -13,6 +13,7 @@
# 2014-11-04 renamed some attributes and added PostCommand to make the module more flexible
# 2014-11-08 added the attributes Reading.*, MaxAge.*, MinValue.*, MaxValue.* and Format.*
# 2014-11-15 fixed bugs related to RepReading and InternalTimer
# 2014-12-05 definierte Attribute werden der userattr list der Instanz hinzugefügt
package main;
@ -48,9 +49,8 @@ sub FReplacer_Initialize($)
"Rep[0-9]+Format " . # optional Format string for Replacement
"Rep[0-9]+Expr " . # optional Expression to be evaluated before using the replacement
"ReplacementEncode " . # Ergebnis einer Ersetzung z.B. in UTF-8 Encoden
"PostCommand"; # Systembefehl, der nach der Ersetzung ausgeführt wird,
# z.B. um SVG in PNG zu konvertieren
"PostCommand " . # Systembefehl, der nach der Ersetzung ausgeführt wird
$readingFnAttributes;
}
@ -136,6 +136,7 @@ FReplacer_Attr(@)
return "Invalid Format $aVal";
}
}
addToDevAttrList($name, $aName)
}
return undef;
}