From e511fba43c12410804d4228959f3e5a714bbfe3c Mon Sep 17 00:00:00 2001 From: betateilchen <> Date: Sat, 8 Mar 2014 14:33:08 +0000 Subject: [PATCH] renamed 98_configDB to 98_configDBwrap git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@5164 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- CHANGED | 1 + FHEM/{98_configDB.pm => 98_configDBwrap.pm} | 14 +++++++------- MAINTAINER.txt | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) rename FHEM/{98_configDB.pm => 98_configDBwrap.pm} (84%) diff --git a/CHANGED b/CHANGED index 3ff29476c..15ee43c00 100644 --- a/CHANGED +++ b/CHANGED @@ -1,6 +1,7 @@ # 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. - SVN + - change: renamed 98_configDB to 98_configDBwrap - feature: DbLog: Added new function : ReadingsVal/ReadingsTimestamp - feature: Text2Speech: added new attribute TTS_VolumeAdjust - feature: added wrapper module 98_configDB (betateilchen) diff --git a/FHEM/98_configDB.pm b/FHEM/98_configDBwrap.pm similarity index 84% rename from FHEM/98_configDB.pm rename to FHEM/98_configDBwrap.pm index b464c3d37..43f096f18 100644 --- a/FHEM/98_configDB.pm +++ b/FHEM/98_configDBwrap.pm @@ -6,15 +6,15 @@ use strict; use warnings; use feature qw/say switch/; -sub configDB_Initialize($) { +sub configDBwrap_Initialize($) { my ($hash) = @_; - $hash->{DefFn} = "configDB_Define"; - $hash->{SetFn} = "configDB_Set"; - $hash->{GetFn} = "configDB_Get"; + $hash->{DefFn} = "configDBwrap_Define"; + $hash->{SetFn} = "configDBwrap_Set"; + $hash->{GetFn} = "configDBwrap_Get"; $hash->{AttrList} = "private:1,0 "; } -sub configDB_Define($$) { +sub configDBwrap_Define($$) { return "configDB not enabled!" unless $attr{global}{configfile} eq 'configDB'; my ($hash, $def) = @_; my @a = split("[ \t][ \t]*", $def); @@ -24,7 +24,7 @@ sub configDB_Define($$) { return undef; } -sub configDB_Set($@) { +sub configDBwrap_Set($@) { my ($hash, @a) = @_; my $name = $hash->{NAME}; my $usage = "Unknown argument, choose one of reorg recover"; @@ -51,7 +51,7 @@ sub configDB_Set($@) { } -sub configDB_Get($@) { +sub configDBwrap_Get($@) { my ($hash, @a) = @_; my $name = $hash->{NAME}; diff --git a/MAINTAINER.txt b/MAINTAINER.txt index f8ce39a4e..939c9283d 100644 --- a/MAINTAINER.txt +++ b/MAINTAINER.txt @@ -207,7 +207,7 @@ FHEM/98_autocreate.pm rudolfkoenig http://forum.fhem.de Automatis FHEM/98_average.pm rudolfkoenig http://forum.fhem.de Automatisierung FHEM/98_backup.pm mfr69bs http://forum.fhem.de Sonstiges FHEM/98_cmdalias.pm rudolfkoenig http://forum.fhem.de Automatisierung -FHEM/98_configDB.pm betateilchen http://forum.fhem.de Sonstiges +FHEM/98_configDBwrap.pm betateilchen http://forum.fhem.de Sonstiges FHEM/98_dewpoint.pm wherzig http://forum.fhem.de Automatisierung FHEM/98_dummy.pm rudolfkoenig http://forum.fhem.de Automatisierung FHEM/98_fheminfo.pm mfr69bs http://forum.fhem.de Sonstiges