View | Details | Raw Unified | Return to bug 229333
Collapse All | Expand All

(-)domoticz/Makefile (-14 / +26 lines)
Lines 1-8 Link Here
1
# $FreeBSD: head/www/domoticz/Makefile 472699 2018-06-18 14:40:31Z linimon $
1
# $FreeBSD: head/www/domoticz/Makefile 472699 2018-06-18 14:40:31Z linimon $
2
2
3
PORTNAME=	domoticz
3
PORTNAME=	domoticz
4
PORTVERSION=	3.${DOMOTICZ_REL}
4
PORTVERSION=	4.${DOMOTICZ_REL}
5
PORTREVISION=	4
6
CATEGORIES=	www
5
CATEGORIES=	www
7
6
8
MAINTAINER=	kiwi@oav.net
7
MAINTAINER=	kiwi@oav.net
Lines 11-44 Link Here
11
LICENSE=	GPLv3
10
LICENSE=	GPLv3
12
LICENSE_FILE=	${WRKSRC}/License.txt
11
LICENSE_FILE=	${WRKSRC}/License.txt
13
12
14
BROKEN_powerpc64=	fails to compile: libboost_thread.so: undefined reference to std::__cxx11::basic_string
15
16
LIB_DEPENDS=	libcurl.so:ftp/curl \
13
LIB_DEPENDS=	libcurl.so:ftp/curl \
17
		libexpat.so:textproc/expat2
14
		libexpat.so:textproc/expat2
18
15
19
CONFLICTS_INSTALL?=	domoticz-[23]* domoticz-devel-*
16
CONFLICTS_INSTALL?=	domoticz-[23]* domoticz-devel-*
20
17
21
OPTIONS_SUB=	YES
18
OPTIONS_SUB=	YES
22
OPTIONS_DEFINE=	SBOOST SLUA SMQTT SSQLITE PYTHON TELLDUS
19
OPTIONS_DEFINE=	SSSL SBOOST SLUA SMQTT SSQLITE SMINIZIP PYTHON TELLDUS
23
SBOOST_DESC=	Use static Boost instead of dynamic linking
20
SBOOST_DESC=	Use static Boost instead of dynamic linking
21
SSSL_DESC=	Use static OpenSSL library instead of dynamic linking
24
SLUA_DESC=	Use domoticz provided LUA instead of ports one
22
SLUA_DESC=	Use domoticz provided LUA instead of ports one
25
SMQTT_DESC=	Use domoticz mosquitto instead of ports one
23
SMQTT_DESC=	Use domoticz mosquitto instead of ports one
26
SSQLITE_DESC=	Use domoticz SQLLite instead of ports one
24
SSQLITE_DESC=	Use domoticz SQLLite instead of ports one
25
SMINIZIP_DESC=	Use domoticz minizip instead of ports one
27
PYTHON_DESC=	Enable support for Python Plugins
26
PYTHON_DESC=	Enable support for Python Plugins
28
TELLDUS_DESC=	Enable support for Telldus
27
TELLDUS_DESC=	Enable support for Telldus
29
28
30
.include <bsd.port.options.mk>
29
.include <bsd.port.options.mk>
31
30
31
USES=		cmake iconv pkgconfig ssl
32
32
# This hack is to get rid of dependency of git while building
33
# This hack is to get rid of dependency of git while building
33
# the package.
34
# the package.
34
DOMOTICZ_REL=	8153
35
DOMOTICZ_REL=	9700
35
DOMOTICZ_TS=	1501416191
36
DOMOTICZ_TS=	1529904511
36
USE_GITHUB=	yes
37
USE_GITHUB=	yes
37
GH_ACCOUNT=	domoticz
38
GH_ACCOUNT=	domoticz
38
GH_PROJECT=	domoticz
39
GH_PROJECT=	domoticz
39
40
40
USES=		cmake iconv pkgconfig ssl
41
42
USE_RC_SUBR=	domoticz
41
USE_RC_SUBR=	domoticz
43
42
44
USERS=		domoticz
43
USERS=		domoticz
Lines 48-53 Link Here
48
		-DUSE_BUILTIN_ZLIB="NO" \
47
		-DUSE_BUILTIN_ZLIB="NO" \
49
		-DUSE_STATIC_OPENZWAVE="NO"
48
		-DUSE_STATIC_OPENZWAVE="NO"
50
49
50
.if ${PORT_OPTIONS:MSSSL}
51
CMAKE_ARGS+=	-DUSE_OPENSSL_STATIC="YES"
52
.else
53
CMAKE_ARGS+=	-DUSE_OPENSSL_STATIC="NO"
54
.endif
55
51
.if ${PORT_OPTIONS:MSBOOST}
56
.if ${PORT_OPTIONS:MSBOOST}
52
CMAKE_ARGS+=	-DUSE_STATIC_BOOST="YES"
57
CMAKE_ARGS+=	-DUSE_STATIC_BOOST="YES"
53
BUILD_DEPENDS+=	boost-libs>=0:devel/boost-libs
58
BUILD_DEPENDS+=	boost-libs>=0:devel/boost-libs
Lines 71-82 Link Here
71
.endif
76
.endif
72
77
73
.if ${PORT_OPTIONS:MSSQLITE}
78
.if ${PORT_OPTIONS:MSSQLITE}
74
CMAKE_ARGS+=	-DUSE_BUILTIN_SQLITE="YES"
79
CMAKE_ARGS+= 	-DUSE_BUILTIN_SQLITE="YES"
75
.else
80
.else
76
CMAKE_ARGS+=	-DUSE_BUILTIN_SQLITE="NO"
81
CMAKE_ARGS+= 	-DUSE_BUILTIN_SQLITE="NO"
77
USES+=		sqlite
82
USES+=		sqlite
78
.endif
83
.endif
79
84
85
.if ${PORT_OPTIONS:MSMINIZIP}
86
CMAKE_ARGS+= 	-DUSE_BUILTIN_MINIZIP="YES"
87
.else
88
CMAKE_ARGS+= 	-DUSE_BUILTIN_MINIZIP="NO"
89
LIB_DEPENDS+=	libminizip.so:archivers/minizip
90
.endif
91
80
.if ${PORT_OPTIONS:MPYTHON}
92
.if ${PORT_OPTIONS:MPYTHON}
81
CMAKE_ARGS+=	-DUSE_PYTHON="YES"
93
CMAKE_ARGS+=	-DUSE_PYTHON="YES"
82
USES+=		python:3.4
94
USES+=		python:3.4
Lines 91-100 Link Here
91
post-patch:
103
post-patch:
92
	@${REINPLACE_CMD} -e "s,\/opt,${PREFIX},g" ${WRKSRC}/CMakeLists.txt
104
	@${REINPLACE_CMD} -e "s,\/opt,${PREFIX},g" ${WRKSRC}/CMakeLists.txt
93
	@${REINPLACE_CMD} -e "s,XXXPREFIXXXX,${PREFIX}/domoticz,g" ${WRKSRC}/CMakeLists.txt
105
	@${REINPLACE_CMD} -e "s,XXXPREFIXXXX,${PREFIX}/domoticz,g" ${WRKSRC}/CMakeLists.txt
94
	@${REINPLACE_CMD} -e "s,XXXDOMOTICZXXX,${DOMOTICZ_REL},g" ${WRKSRC}/appversion.default
95
	@${REINPLACE_CMD} -e "s,XXXHASHXXX,${GH_TAGNAME},g" ${WRKSRC}/appversion.default
96
	@${REINPLACE_CMD} -e "s,XXXTIMEXXX,${DOMOTICZ_TS},g" ${WRKSRC}/appversion.default
97
	@${REINPLACE_CMD} -e "/^ADD_PRECOMPILED_HEADER/ d" ${WRKSRC}/CMakeLists.txt
106
	@${REINPLACE_CMD} -e "/^ADD_PRECOMPILED_HEADER/ d" ${WRKSRC}/CMakeLists.txt
107
	@${REINPLACE_CMD} -e "s/\(#define APPVERSION\)\(.*\)/\1 ${DOMOTICZ_REL}/" ${WRKSRC}/appversion.default
108
	@${REINPLACE_CMD} -e "s/\(#define APPHASH\)\(.*\)/\1 \"27772d9f\"/" ${WRKSRC}/appversion.default
109
	@${REINPLACE_CMD} -e "s/\(#define APPDATE\)\(.*\)/\1 ${DOMOTICZ_TS}/" ${WRKSRC}/appversion.default
98
110
99
post-install:
111
post-install:
100
	@${MKDIR} ${STAGEDIR}/var/db/domoticz ${STAGEDIR}/var/run/domoticz
112
	@${MKDIR} ${STAGEDIR}/var/db/domoticz ${STAGEDIR}/var/run/domoticz
(-)domoticz/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1501437831
1
TIMESTAMP = 1529917548
2
SHA256 (domoticz-domoticz-3.8153_GH0.tar.gz) = 5ea8f37f2ef900e9bd17b1b5375e75bfdec4f09001e3e2e0b647a260989d014c
2
SHA256 (domoticz-domoticz-4.9700_GH0.tar.gz) = c31f185a1ffac01b86a77bf33e059a4403d814e826c9d6639c63c2e9afa55a46
3
SIZE (domoticz-domoticz-3.8153_GH0.tar.gz) = 39659793
3
SIZE (domoticz-domoticz-4.9700_GH0.tar.gz) = 37443519
(-)domoticz/files/patch-CMakeLists.txt (-17 / +16 lines)
Lines 1-6 Link Here
1
--- CMakeLists.txt.orig	2017-07-30 10:19:41 UTC
1
--- CMakeLists.txt.orig	2018-04-13 07:02:16.000000000 +0200
2
+++ CMakeLists.txt
2
+++ CMakeLists.txt	2018-04-13 09:37:12.450701000 +0200
3
@@ -241,7 +241,7 @@ MACRO(ADD_PRECOMPILED_HEADER _targetName _input)
3
@@ -248,7 +248,7 @@
4
   ENDIF(CMAKE_COMPILER_IS_GNUCXX)
4
   ENDIF(CMAKE_COMPILER_IS_GNUCXX)
5
 ENDMACRO()
5
 ENDMACRO()
6
 
6
 
Lines 9-15 Link Here
9
   DOC "git command line client")
9
   DOC "git command line client")
10
 
10
 
11
 
11
 
12
@@ -680,7 +680,7 @@ SET(CPACK_PACKAGE_INSTALL_DIRECTORY "domoticz")
12
@@ -728,7 +728,7 @@
13
 
13
 
14
 SET(CPACK_SOURCE_PACKAGE_FILE_NAME "${domoticz}-dev")
14
 SET(CPACK_SOURCE_PACKAGE_FILE_NAME "${domoticz}-dev")
15
 SET(CPACK_PACKAGING_INSTALL_PREFIX "/")
15
 SET(CPACK_PACKAGING_INSTALL_PREFIX "/")
Lines 18-29 Link Here
18
 SET(CPACK_PACKAGE_EXECUTABLES "domoticz;Home Automation System (Domotica).")
18
 SET(CPACK_PACKAGE_EXECUTABLES "domoticz;Home Automation System (Domotica).")
19
 
19
 
20
 #set(CPACK_DEB_COMPONENT_INSTALL TRUE)
20
 #set(CPACK_DEB_COMPONENT_INSTALL TRUE)
21
@@ -689,18 +689,17 @@ SET(CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR
21
@@ -737,16 +737,15 @@
22
 INCLUDE(CPack)
22
 INCLUDE(CPack)
23
 
23
 
24
 IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
24
 IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
25
-  set(CMAKE_INSTALL_PREFIX "/opt/${CPACK_PACKAGE_NAME}" CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
25
-  set(CMAKE_INSTALL_PREFIX "/opt/${CPACK_PACKAGE_NAME}" CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
26
+  set(CMAKE_INSTALL_PREFIX "/usr/local/${CPACK_PACKAGE_NAME}" CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
26
+	set(CMAKE_INSTALL_PREFIX "XXXPREFIXXXX/${CPACK_PACKAGE_NAME}" CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
27
 ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
27
 ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
28
 
28
 
29
-install(TARGETS domoticz DESTINATION ${CMAKE_INSTALL_PREFIX})
29
-install(TARGETS domoticz DESTINATION ${CMAKE_INSTALL_PREFIX})
Lines 34-48 Link Here
34
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/scripts DESTINATION ${CMAKE_INSTALL_PREFIX} USE_SOURCE_PERMISSIONS)
34
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/scripts DESTINATION ${CMAKE_INSTALL_PREFIX} USE_SOURCE_PERMISSIONS)
35
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/plugins DESTINATION ${CMAKE_INSTALL_PREFIX})
35
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/plugins DESTINATION ${CMAKE_INSTALL_PREFIX})
36
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Config DESTINATION ${CMAKE_INSTALL_PREFIX})
36
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Config DESTINATION ${CMAKE_INSTALL_PREFIX})
37
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dzVents DESTINATION ${CMAKE_INSTALL_PREFIX})
37
-install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/updatedomo DESTINATION ${CMAKE_INSTALL_PREFIX} PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ)
38
-install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/updatedomo DESTINATION ${CMAKE_INSTALL_PREFIX} PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ)
38
+install(TARGETS domoticz DESTINATION "/usr/local/domoticz")
39
+install(TARGETS domoticz DESTINATION "XXXPREFIXXXX")
39
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/www DESTINATION "/usr/local/domoticz")
40
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/www DESTINATION "XXXPREFIXXXX")
40
+install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/License.txt DESTINATION "/usr/local/domoticz")
41
+install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/License.txt DESTINATION "XXXPREFIXXXX")
41
+install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/History.txt DESTINATION "/usr/local/domoticz")
42
+install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/History.txt DESTINATION "XXXPREFIXXXX")
42
+install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/server_cert.pem DESTINATION "/usr/local/domoticz")
43
+install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/server_cert.pem DESTINATION "XXXPREFIXXXX")
43
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/scripts DESTINATION "/usr/local/domoticz" USE_SOURCE_PERMISSIONS)
44
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/scripts DESTINATION "XXXPREFIXXXX" USE_SOURCE_PERMISSIONS)
44
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/plugins DESTINATION "/usr/local/domoticz")
45
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/plugins DESTINATION "XXXPREFIXXXX")
45
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Config DESTINATION "/usr/local/domoticz")
46
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Config DESTINATION "XXXPREFIXXXX")
46
 
47
+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dzVents DESTINATION "XXXPREFIXXXX")
47
 INCLUDE(TestBigEndian)
48
 
(-)domoticz/files/patch-DelayedLinker.h (+15 lines)
Line 0 Link Here
1
--- hardware/plugins/DelayedLink.h.orig	2017-09-13 08:54:08.000000000 +0200
2
+++ hardware/plugins/DelayedLink.h	2017-09-13 17:46:10.983769000 +0200
3
@@ -136,6 +131,12 @@
4
 				if (!shared_lib_) FindLibrary("python3.6", true);
5
 				if (!shared_lib_) FindLibrary("python3.5", true);
6
 				if (!shared_lib_) FindLibrary("python3.4", true);
7
+#ifdef __FreeBSD__
8
+				if (!shared_lib_) FindLibrary("python3.7m", true);
9
+				if (!shared_lib_) FindLibrary("python3.6m", true);
10
+				if (!shared_lib_) FindLibrary("python3.5m", true);
11
+				if (!shared_lib_) FindLibrary("python3.4m", true);
12
+#endif /* FreeBSD */
13
 #endif
14
 				if (shared_lib_)
15
 				{
(-)domoticz/files/patch-appversion.default (-9 lines)
Lines 1-9 Link Here
1
--- appversion.default.orig	2017-07-30 10:19:41 UTC
2
+++ appversion.default
3
@@ -1,3 +1,3 @@
4
-#define APPVERSION 5876
5
-#define APPHASH "b97777b"
6
-#define APPDATE 1478691222
7
+#define APPVERSION XXXDOMOTICZXXX
8
+#define APPHASH "XXXHASHXXX"
9
+#define APPDATE XXXTIMEXXX
(-)domoticz/files/patch-getgit.cmake (-2 / +2 lines)
Lines 1-5 Link Here
1
--- getgit.cmake.orig	2017-07-30 10:19:41 UTC
1
--- getgit.cmake.orig	2016-04-01 15:27:18.517929000 +0200
2
+++ getgit.cmake
2
+++ getgit.cmake	2016-04-01 15:27:52.572836000 +0200
3
@@ -1,66 +1,7 @@
3
@@ -1,66 +1,7 @@
4
 # this macro gets called as a custom build step by running make
4
 # this macro gets called as a custom build step by running make
5
 # please take into account, that the variable 'SOURCE_DIR' has been defined by the caller
5
 # please take into account, that the variable 'SOURCE_DIR' has been defined by the caller
(-)domoticz/files/patch-webserver_proxyclient.cpp (-13 lines)
Lines 1-13 Link Here
1
https://github.com/domoticz/domoticz/commit/388c7b51716c
2
3
--- webserver/proxyclient.cpp.orig	2017-07-30 10:19:41 UTC
4
+++ webserver/proxyclient.cpp
5
@@ -639,7 +639,7 @@ namespace http {
6
 		void CProxyManager::StartThread()
7
 		{
8
 			try {
9
-				boost::asio::ssl::context ctx(io_service, boost::asio::ssl::context::sslv23);
10
+				boost::asio::ssl::context ctx(boost::asio::ssl::context::sslv23);
11
 				ctx.set_verify_mode(boost::asio::ssl::verify_none);
12
 
13
 				proxyclient.reset(new CProxyClient(io_service, ctx, m_pWebEm));
(-)domoticz/files/patch-webserver_server.cpp (-22 lines)
Lines 1-22 Link Here
1
https://github.com/domoticz/domoticz/commit/388c7b51716c
2
3
--- webserver/server.cpp.orig	2017-07-30 10:19:41 UTC
4
+++ webserver/server.cpp
5
@@ -148,7 +148,7 @@ void server::handle_accept(const boost::system::error_
6
 ssl_server::ssl_server(const ssl_server_settings & ssl_settings, request_handler & user_request_handler) :
7
 		server_base(ssl_settings, user_request_handler),
8
 		settings_(ssl_settings),
9
-		context_(io_service_, ssl_settings.get_ssl_method())
10
+		context_(ssl_settings.get_ssl_method())
11
 {
12
 #ifdef DEBUG_WWW
13
 	_log.Log(LOG_STATUS, "[web:%s] create ssl_server using ssl_server_settings : %s", ssl_settings.listening_port.c_str(), ssl_settings.to_string().c_str());
14
@@ -161,7 +161,7 @@ ssl_server::ssl_server(const ssl_server_settings & ssl
15
 ssl_server::ssl_server(const server_settings & settings, request_handler & user_request_handler) :
16
 		server_base(settings, user_request_handler),
17
 		settings_(dynamic_cast<ssl_server_settings const &>(settings)),
18
-		context_(io_service_, dynamic_cast<ssl_server_settings const &>(settings).get_ssl_method()) {
19
+		context_(dynamic_cast<ssl_server_settings const &>(settings).get_ssl_method()) {
20
 #ifdef DEBUG_WWW
21
 	_log.Log(LOG_STATUS, "[web:%s] create ssl_server using server_settings : %s", settings.listening_port.c_str(), settings.to_string().c_str());
22
 #endif
(-)domoticz/pkg-plist (-141 / +315 lines)
Lines 1-7 Link Here
1
domoticz/Config/2gig/ct100.xml
1
domoticz/Config/2gig/ct100.xml
2
domoticz/Config/2gig/ct101.xml
2
domoticz/Config/2gig/ct101.xml
3
domoticz/Config/2gig/ct30.xml
3
domoticz/Config/2gig/ct30.xml
4
domoticz/Config/2gig/ct32.xml
4
domoticz/Config/2gig/ct50e.xml
5
domoticz/Config/2gig/ct50e.xml
6
domoticz/Config/2gig/ct80.xml
5
domoticz/Config/BeNext/1poleswitch.xml
7
domoticz/Config/BeNext/1poleswitch.xml
6
domoticz/Config/BeNext/2poleswitch.xml
8
domoticz/Config/BeNext/2poleswitch.xml
7
domoticz/Config/BeNext/AlarmSound.xml
9
domoticz/Config/BeNext/AlarmSound.xml
Lines 75-91 Link Here
75
domoticz/Config/aeotec/zw132.xml
77
domoticz/Config/aeotec/zw132.xml
76
domoticz/Config/aeotec/zw139.xml
78
domoticz/Config/aeotec/zw139.xml
77
domoticz/Config/aeotec/zw140.xml
79
domoticz/Config/aeotec/zw140.xml
80
domoticz/Config/aeotec/zwa001.xml
81
domoticz/Config/aeotec/zwa002.xml
82
domoticz/Config/aeotec/zwa003.xml
83
domoticz/Config/aeotec/zwa004.xml
84
domoticz/Config/aeotec/zwa005.xml
85
domoticz/Config/assa_abloy/ConexisL1.xml
86
domoticz/Config/assa_abloy/KeyfreeConnected-plus.xml
78
domoticz/Config/assa_abloy/KeyfreeConnected.xml
87
domoticz/Config/assa_abloy/KeyfreeConnected.xml
79
domoticz/Config/assa_abloy/PushButtonDeadbolt.xml
88
domoticz/Config/assa_abloy/PushButtonDeadbolt.xml
80
domoticz/Config/assa_abloy/PushButtonLever.xml
89
domoticz/Config/assa_abloy/PushButtonLever.xml
81
domoticz/Config/assa_abloy/TouchDeadbolt.xml
90
domoticz/Config/assa_abloy/TouchDeadbolt.xml
82
domoticz/Config/assa_abloy/TouchLever.xml
91
domoticz/Config/assa_abloy/TouchLever.xml
83
domoticz/Config/assa_abloy/nexTouch.xml
92
domoticz/Config/assa_abloy/nexTouch.xml
93
domoticz/Config/august/asl-03.xml
84
domoticz/Config/cooper/RF9501.xml
94
domoticz/Config/cooper/RF9501.xml
85
domoticz/Config/cooper/RF9505-T.xml
95
domoticz/Config/cooper/RF9505-T.xml
86
domoticz/Config/cooper/RF9517.xml
96
domoticz/Config/cooper/RF9517.xml
87
domoticz/Config/cooper/RF9540-N.xml
97
domoticz/Config/cooper/RF9540-N.xml
88
domoticz/Config/cooper/RF9542-Z.xml
98
domoticz/Config/cooper/RF9542-Z.xml
99
domoticz/Config/cooper/RFWC5.xml
89
domoticz/Config/danfoss/living.xml
100
domoticz/Config/danfoss/living.xml
90
domoticz/Config/danfoss/rsroom.xml
101
domoticz/Config/danfoss/rsroom.xml
91
domoticz/Config/danfoss/z.xml
102
domoticz/Config/danfoss/z.xml
Lines 99-104 Link Here
99
domoticz/Config/devolo/mt02792.xml
110
domoticz/Config/devolo/mt02792.xml
100
domoticz/Config/devolo/mt2646.xml
111
domoticz/Config/devolo/mt2646.xml
101
domoticz/Config/devolo/mt2647.xml
112
domoticz/Config/devolo/mt2647.xml
113
domoticz/Config/devolo/mt2651.xml
102
domoticz/Config/devolo/mt2652.xml
114
domoticz/Config/devolo/mt2652.xml
103
domoticz/Config/devolo/mt2653.xml
115
domoticz/Config/devolo/mt2653.xml
104
domoticz/Config/devolo/mt2756.xml
116
domoticz/Config/devolo/mt2756.xml
Lines 106-111 Link Here
106
domoticz/Config/dlink/dch-z110.xml
118
domoticz/Config/dlink/dch-z110.xml
107
domoticz/Config/dlink/dch-z120.xml
119
domoticz/Config/dlink/dch-z120.xml
108
domoticz/Config/dlink/dch-z510.xml
120
domoticz/Config/dlink/dch-z510.xml
121
domoticz/Config/dome/0002.xml
122
domoticz/Config/dome/0083.xml
123
domoticz/Config/dome/0085.xml
124
domoticz/Config/dome/0086.xml
125
domoticz/Config/dome/0087.xml
126
domoticz/Config/dome/0088.xml
127
domoticz/Config/dome/0101.xml
128
domoticz/Config/dome/0201.xml
109
domoticz/Config/domitech/zb22uk.xml
129
domoticz/Config/domitech/zb22uk.xml
110
domoticz/Config/domitech/ze27eu.xml
130
domoticz/Config/domitech/ze27eu.xml
111
domoticz/Config/domux/DX1CA-Z.xml
131
domoticz/Config/domux/DX1CA-Z.xml
Lines 134-139 Link Here
134
domoticz/Config/enerwave/zwn-bpc.xml
154
domoticz/Config/enerwave/zwn-bpc.xml
135
domoticz/Config/enerwave/zwn-sc7.xml
155
domoticz/Config/enerwave/zwn-sc7.xml
136
domoticz/Config/enerwave/zwnrsm1plus.xml
156
domoticz/Config/enerwave/zwnrsm1plus.xml
157
domoticz/Config/enerwave/zwnrsm2plus.xml
137
domoticz/Config/eurotronic/eur_cometz.xml
158
domoticz/Config/eurotronic/eur_cometz.xml
138
domoticz/Config/eurotronic/eur_stellaz.xml
159
domoticz/Config/eurotronic/eur_stellaz.xml
139
domoticz/Config/everspring/ad146.xml
160
domoticz/Config/everspring/ad146.xml
Lines 150-155 Link Here
150
domoticz/Config/everspring/sm103.xml
171
domoticz/Config/everspring/sm103.xml
151
domoticz/Config/everspring/sp103.xml
172
domoticz/Config/everspring/sp103.xml
152
domoticz/Config/everspring/sp814.xml
173
domoticz/Config/everspring/sp814.xml
174
domoticz/Config/everspring/sp816.xml
153
domoticz/Config/everspring/st812.xml
175
domoticz/Config/everspring/st812.xml
154
domoticz/Config/everspring/st814.xml
176
domoticz/Config/everspring/st814.xml
155
domoticz/Config/everspring/st815.xml
177
domoticz/Config/everspring/st815.xml
Lines 187-205 Link Here
187
domoticz/Config/fibaro/fgs223.xml
209
domoticz/Config/fibaro/fgs223.xml
188
domoticz/Config/fibaro/fgsd002.xml
210
domoticz/Config/fibaro/fgsd002.xml
189
domoticz/Config/fibaro/fgss101.xml
211
domoticz/Config/fibaro/fgss101.xml
212
domoticz/Config/fibaro/fgt001.xml
190
domoticz/Config/fibaro/fgwpe.xml
213
domoticz/Config/fibaro/fgwpe.xml
191
domoticz/Config/fibaro/fgwpfzw5.xml
214
domoticz/Config/fibaro/fgwpfzw5.xml
192
domoticz/Config/firstalert/zcombo.xml
215
domoticz/Config/firstalert/zcombo.xml
216
domoticz/Config/forest/fs2z5232000002.xml
217
domoticz/Config/fortrezz/fmi.xml
218
domoticz/Config/fortrezz/mimo2plus.xml
193
domoticz/Config/fortrezz/mimolite.xml
219
domoticz/Config/fortrezz/mimolite.xml
194
domoticz/Config/fortrezz/ssa2.xml
220
domoticz/Config/fortrezz/ssa2.xml
195
domoticz/Config/fortrezz/ssa3.xml
221
domoticz/Config/fortrezz/ssa3.xml
196
domoticz/Config/fortrezz/wv01.xml
222
domoticz/Config/fortrezz/wv01.xml
197
domoticz/Config/fortrezz/wwa02.xml
223
domoticz/Config/fortrezz/wwa02.xml
198
domoticz/Config/frostdale/fdn2nxx.xml
224
domoticz/Config/frostdale/fdn2nxx.xml
225
domoticz/Config/ge/12719-plugin-switch.xml
199
domoticz/Config/ge/12724-dimmer.xml
226
domoticz/Config/ge/12724-dimmer.xml
200
domoticz/Config/ge/14282-plugin-switch.xml
227
domoticz/Config/ge/14282-plugin-switch.xml
228
domoticz/Config/ge/14288-outlet.xml
201
domoticz/Config/ge/14291-switch.xml
229
domoticz/Config/ge/14291-switch.xml
230
domoticz/Config/ge/14292-toggle-switch.xml
202
domoticz/Config/ge/14294-dimmer.xml
231
domoticz/Config/ge/14294-dimmer.xml
232
domoticz/Config/ge/14295-dimmer-toggle.xml
203
domoticz/Config/ge/26931-motion-switch.xml
233
domoticz/Config/ge/26931-motion-switch.xml
204
domoticz/Config/ge/26933-motion-dimmer.xml
234
domoticz/Config/ge/26933-motion-dimmer.xml
205
domoticz/Config/ge/dimmer.xml
235
domoticz/Config/ge/dimmer.xml
Lines 207-220 Link Here
207
domoticz/Config/ge/hinge-pin.xml
237
domoticz/Config/ge/hinge-pin.xml
208
domoticz/Config/ge/receptacle.xml
238
domoticz/Config/ge/receptacle.xml
209
domoticz/Config/ge/relay.xml
239
domoticz/Config/ge/relay.xml
240
domoticz/Config/ge/ze26i.xml
241
domoticz/Config/ge/zw4001-switch.xml
242
domoticz/Config/ge/zw6302.xml
210
domoticz/Config/gocontrol/GC-TBZ48L.xml
243
domoticz/Config/gocontrol/GC-TBZ48L.xml
211
domoticz/Config/gr/gr105.xml
244
domoticz/Config/gr/gr105.xml
212
domoticz/Config/gr/gr105n.xml
245
domoticz/Config/gr/gr105n.xml
246
domoticz/Config/graber/brz1.xml
247
domoticz/Config/graber/vcz1.xml
213
domoticz/Config/greenwave/powernode1.xml
248
domoticz/Config/greenwave/powernode1.xml
214
domoticz/Config/greenwave/powernode6.xml
249
domoticz/Config/greenwave/powernode6.xml
215
domoticz/Config/hank/hkzw-dws01.xml
250
domoticz/Config/hank/hkzw-dws01.xml
251
domoticz/Config/hank/hkzw-fld01.xml
216
domoticz/Config/hank/hkzw-ms01.xml
252
domoticz/Config/hank/hkzw-ms01.xml
253
domoticz/Config/hank/hkzw-rgb01.xml
217
domoticz/Config/hank/hkzw-so01-smartplug.xml
254
domoticz/Config/hank/hkzw-so01-smartplug.xml
255
domoticz/Config/hank/hkzw-so03.xml
218
domoticz/Config/hank/hkzw-so05-smartplug.xml
256
domoticz/Config/hank/hkzw-so05-smartplug.xml
219
domoticz/Config/hank/scenecontroller1.xml
257
domoticz/Config/hank/scenecontroller1.xml
220
domoticz/Config/hank/scenecontroller4.xml
258
domoticz/Config/hank/scenecontroller4.xml
Lines 227-237 Link Here
227
domoticz/Config/heiman/HS1WL-Z.xml
265
domoticz/Config/heiman/HS1WL-Z.xml
228
domoticz/Config/heiman/HS2SK-Z.xml
266
domoticz/Config/heiman/HS2SK-Z.xml
229
domoticz/Config/homeseer/ezmotionplus.xml
267
domoticz/Config/homeseer/ezmotionplus.xml
268
domoticz/Config/homeseer/hs-ms100plus.xml
230
domoticz/Config/homeseer/hs-wd100plus.xml
269
domoticz/Config/homeseer/hs-wd100plus.xml
270
domoticz/Config/homeseer/hs-wd200plus.xml
231
domoticz/Config/homeseer/hs-ws100plus.xml
271
domoticz/Config/homeseer/hs-ws100plus.xml
272
domoticz/Config/homeseer/hs-ws200plus.xml
232
domoticz/Config/homeseer/hsm100.xml
273
domoticz/Config/homeseer/hsm100.xml
233
domoticz/Config/homeseer/hsm200.xml
274
domoticz/Config/homeseer/hsm200.xml
234
domoticz/Config/homeseer/ztroller.xml
275
domoticz/Config/homeseer/ztroller.xml
276
domoticz/Config/honeywell/lynx-touch-l5100.xml
235
domoticz/Config/honeywell/th8320zw1000.xml
277
domoticz/Config/honeywell/th8320zw1000.xml
236
domoticz/Config/horstmann/asrzw.xml
278
domoticz/Config/horstmann/asrzw.xml
237
domoticz/Config/horstmann/hrt4zw.xml
279
domoticz/Config/horstmann/hrt4zw.xml
Lines 239-251 Link Here
239
domoticz/Config/horstmann/ses302.xml
281
domoticz/Config/horstmann/ses302.xml
240
domoticz/Config/horstmann/ses303.xml
282
domoticz/Config/horstmann/ses303.xml
241
domoticz/Config/horstmann/sir321.xml
283
domoticz/Config/horstmann/sir321.xml
284
domoticz/Config/horstmann/srt321.xml
242
domoticz/Config/horstmann/srt323.xml
285
domoticz/Config/horstmann/srt323.xml
243
domoticz/Config/horstmann/ssr302.xml
286
domoticz/Config/horstmann/ssr302.xml
244
domoticz/Config/idlock/idlock101.xml
287
domoticz/Config/idlock/idlock101.xml
245
domoticz/Config/ingersoll/dwzwave1.xml
288
domoticz/Config/ingersoll/dwzwave1.xml
289
domoticz/Config/inovelli/nzw30.xml
290
domoticz/Config/inovelli/nzw31.xml
291
domoticz/Config/inovelli/nzw97.xml
292
domoticz/Config/inovelli/simple_module.xml
246
domoticz/Config/intermatic/ca8900.xml
293
domoticz/Config/intermatic/ca8900.xml
247
domoticz/Config/iris/rangeextender.xml
294
domoticz/Config/iris/rangeextender.xml
248
domoticz/Config/kaipule/im20.xml
295
domoticz/Config/kaipule/im20.xml
296
domoticz/Config/kaipule/ix32.xml
249
domoticz/Config/kwikset/smartcode.xml
297
domoticz/Config/kwikset/smartcode.xml
250
domoticz/Config/leviton/dz15s.xml
298
domoticz/Config/leviton/dz15s.xml
251
domoticz/Config/leviton/dz6hd.xml
299
domoticz/Config/leviton/dz6hd.xml
Lines 263-270 Link Here
263
domoticz/Config/linear/WADWAZ-1.xml
311
domoticz/Config/linear/WADWAZ-1.xml
264
domoticz/Config/linear/WAPIRZ-1.xml
312
domoticz/Config/linear/WAPIRZ-1.xml
265
domoticz/Config/linear/WD500Z-1.xml
313
domoticz/Config/linear/WD500Z-1.xml
314
domoticz/Config/linear/WD500Z5-1.xml
266
domoticz/Config/linear/WS15Z-1.xml
315
domoticz/Config/linear/WS15Z-1.xml
267
domoticz/Config/linear/WT00Z-1.xml
316
domoticz/Config/linear/WT00Z-1.xml
317
domoticz/Config/logicsoft/ZHC5002.xml
268
domoticz/Config/logicsoft/ZHC5010.xml
318
domoticz/Config/logicsoft/ZHC5010.xml
269
domoticz/Config/manufacturer_specific.xml
319
domoticz/Config/manufacturer_specific.xml
270
domoticz/Config/manufacturer_specific.xsd
320
domoticz/Config/manufacturer_specific.xsd
Lines 288-297 Link Here
288
domoticz/Config/northq/nq9021.xml
338
domoticz/Config/northq/nq9021.xml
289
domoticz/Config/northq/nq9121.xml
339
domoticz/Config/northq/nq9121.xml
290
domoticz/Config/northq/nq92021.xml
340
domoticz/Config/northq/nq92021.xml
341
domoticz/Config/oomi/ft100.xml
342
domoticz/Config/oomi/ft111.xml
291
domoticz/Config/options.xml
343
domoticz/Config/options.xml
292
domoticz/Config/options.xsd
344
domoticz/Config/options.xsd
293
domoticz/Config/philio/pan03.xml
345
domoticz/Config/philio/pan03.xml
294
domoticz/Config/philio/pan04.xml
346
domoticz/Config/philio/pan04.xml
347
domoticz/Config/philio/pan06.xml
295
domoticz/Config/philio/pan07.xml
348
domoticz/Config/philio/pan07.xml
296
domoticz/Config/philio/pan08.xml
349
domoticz/Config/philio/pan08.xml
297
domoticz/Config/philio/pan11.xml
350
domoticz/Config/philio/pan11.xml
Lines 307-312 Link Here
307
domoticz/Config/philio/pst02-b.xml
360
domoticz/Config/philio/pst02-b.xml
308
domoticz/Config/philio/pst02.xml
361
domoticz/Config/philio/pst02.xml
309
domoticz/Config/polycontrol/doorlock.xml
362
domoticz/Config/polycontrol/doorlock.xml
363
domoticz/Config/polycontrol/doorlockv3.xml
310
domoticz/Config/polycontrol/keypad.xml
364
domoticz/Config/polycontrol/keypad.xml
311
domoticz/Config/polycontrol/polylock.xml
365
domoticz/Config/polycontrol/polylock.xml
312
domoticz/Config/popp/004407.xml
366
domoticz/Config/popp/004407.xml
Lines 356-361 Link Here
356
domoticz/Config/remotec/zfm-80.xml
410
domoticz/Config/remotec/zfm-80.xml
357
domoticz/Config/remotec/zrc-90.xml
411
domoticz/Config/remotec/zrc-90.xml
358
domoticz/Config/remotec/zts-110.xml
412
domoticz/Config/remotec/zts-110.xml
413
domoticz/Config/remotec/zts-500.xml
359
domoticz/Config/remotec/zurc.xml
414
domoticz/Config/remotec/zurc.xml
360
domoticz/Config/remotec/zxt-120.xml
415
domoticz/Config/remotec/zxt-120.xml
361
domoticz/Config/schlage/BE468.xml
416
domoticz/Config/schlage/BE468.xml
Lines 363-387 Link Here
363
domoticz/Config/schlagelink/itemp.xml
418
domoticz/Config/schlagelink/itemp.xml
364
domoticz/Config/schlagelink/minikeypad.xml
419
domoticz/Config/schlagelink/minikeypad.xml
365
domoticz/Config/sensative/strips.xml
420
domoticz/Config/sensative/strips.xml
421
domoticz/Config/sensative/stripscomfort.xml
422
domoticz/Config/shenzen_neo/ls01ch.xml
423
domoticz/Config/shenzen_neo/ls02ch.xml
366
domoticz/Config/shenzen_neo/nas-ab01z.xml
424
domoticz/Config/shenzen_neo/nas-ab01z.xml
367
domoticz/Config/shenzen_neo/nas-ds01z.xml
425
domoticz/Config/shenzen_neo/nas-ds01z.xml
368
domoticz/Config/shenzen_neo/nas-pd01z.xml
426
domoticz/Config/shenzen_neo/nas-pd01z.xml
427
domoticz/Config/shenzen_neo/nas-rc01z.xml
369
domoticz/Config/shenzen_neo/nas-wr01z.xml
428
domoticz/Config/shenzen_neo/nas-wr01z.xml
370
domoticz/Config/shenzen_neo/nas-ws02z.xml
429
domoticz/Config/shenzen_neo/nas-ws02z.xml
430
domoticz/Config/steinel/is140-2.xml
431
domoticz/Config/steinel/rs-led-d2.xml
371
domoticz/Config/stelpro/stzw402.xml
432
domoticz/Config/stelpro/stzw402.xml
372
domoticz/Config/swiid/swiidinter.xml
433
domoticz/Config/swiid/swiidinter.xml
373
domoticz/Config/swiid/swiidplug.xml
434
domoticz/Config/swiid/swiidplug.xml
435
domoticz/Config/telldus/TZWP102.xml
374
domoticz/Config/telldus/tzdw100.xml
436
domoticz/Config/telldus/tzdw100.xml
375
domoticz/Config/telldus/tzwp100.xml
437
domoticz/Config/telldus/tzwp100.xml
376
domoticz/Config/thermofloor/heatit021.xml
438
domoticz/Config/thermofloor/heatit021.xml
439
domoticz/Config/thermofloor/heatitztrm2.xml
377
domoticz/Config/trane/TZEMT400AB32MAA.xml
440
domoticz/Config/trane/TZEMT400AB32MAA.xml
378
domoticz/Config/trane/TZEMT400BB32MAA.xml
441
domoticz/Config/trane/TZEMT400BB32MAA.xml
379
domoticz/Config/trane/TZEMT524AA21MA.xml
442
domoticz/Config/trane/TZEMT524AA21MA.xml
443
domoticz/Config/tronika/zsc01d.xml
380
domoticz/Config/vision/zd2102.xml
444
domoticz/Config/vision/zd2102.xml
445
domoticz/Config/vision/zd2105us5.xml
381
domoticz/Config/vision/zd2201.xml
446
domoticz/Config/vision/zd2201.xml
382
domoticz/Config/vision/zd2301.xml
447
domoticz/Config/vision/zd2301.xml
383
domoticz/Config/vision/zf5201.xml
448
domoticz/Config/vision/zf5201.xml
384
domoticz/Config/vision/zg8101.xml
449
domoticz/Config/vision/zg8101.xml
450
domoticz/Config/vision/zl7261.xml
451
domoticz/Config/vision/zl7431.xml
385
domoticz/Config/vision/zm1601eu.xml
452
domoticz/Config/vision/zm1601eu.xml
386
domoticz/Config/vision/zm1601eu5.xml
453
domoticz/Config/vision/zm1601eu5.xml
387
domoticz/Config/vision/zm1602eu.xml
454
domoticz/Config/vision/zm1602eu.xml
Lines 400-405 Link Here
400
domoticz/Config/wenzhou/tz67.xml
467
domoticz/Config/wenzhou/tz67.xml
401
domoticz/Config/wenzhou/tz68.xml
468
domoticz/Config/wenzhou/tz68.xml
402
domoticz/Config/wenzhou/tz69.xml
469
domoticz/Config/wenzhou/tz69.xml
470
domoticz/Config/wenzhou/tz74.xml
471
domoticz/Config/wenzhou/tz79.xml
403
domoticz/Config/wenzhou/tz88.xml
472
domoticz/Config/wenzhou/tz88.xml
404
domoticz/Config/widom/UBS104.xml
473
domoticz/Config/widom/UBS104.xml
405
domoticz/Config/widom/UME304C_S.xml
474
domoticz/Config/widom/UME304C_S.xml
Lines 407-420 Link Here
407
domoticz/Config/zipato/MiniKeypad.xml
476
domoticz/Config/zipato/MiniKeypad.xml
408
domoticz/Config/zipato/RGBBulb.xml
477
domoticz/Config/zipato/RGBBulb.xml
409
domoticz/Config/zipato/RGBBulb2.xml
478
domoticz/Config/zipato/RGBBulb2.xml
479
domoticz/Config/zipato/pan04.xml
410
domoticz/Config/zipato/vszd2102.xml
480
domoticz/Config/zipato/vszd2102.xml
411
domoticz/Config/zipato/zp3102.xml
481
domoticz/Config/zipato/zp3102.xml
482
domoticz/Config/zooz/zen06.xml
412
domoticz/Config/zooz/zen07.xml
483
domoticz/Config/zooz/zen07.xml
484
domoticz/Config/zooz/zen15.xml
413
domoticz/Config/zooz/zen20.xml
485
domoticz/Config/zooz/zen20.xml
486
domoticz/Config/zooz/zen21.xml
487
domoticz/Config/zooz/zen22.xml
488
domoticz/Config/zooz/zen22v2.xml
414
domoticz/Config/zooz/zen23.xml
489
domoticz/Config/zooz/zen23.xml
415
domoticz/Config/zooz/zen24.xml
490
domoticz/Config/zooz/zen24.xml
416
domoticz/Config/zooz/zse08.xml
491
domoticz/Config/zooz/zse08.xml
417
domoticz/Config/zooz/zse09.xml
492
domoticz/Config/zooz/zse09.xml
493
domoticz/Config/zooz/zse30.xml
418
domoticz/Config/zooz/zse33.xml
494
domoticz/Config/zooz/zse33.xml
419
domoticz/Config/zooz/zse40.xml
495
domoticz/Config/zooz/zse40.xml
420
domoticz/Config/zwave.me/ZME_05431.xml
496
domoticz/Config/zwave.me/ZME_05431.xml
Lines 433-462 Link Here
433
domoticz/Config/zwave.me/popp_kfob-c.xml
509
domoticz/Config/zwave.me/popp_kfob-c.xml
434
domoticz/Config/zwave.me/zweather.xml
510
domoticz/Config/zwave.me/zweather.xml
435
domoticz/Config/zwcfg.xsd
511
domoticz/Config/zwcfg.xsd
512
domoticz/Config/zwp/WD-100.xml
436
domoticz/Config/zwscene.xsd
513
domoticz/Config/zwscene.xsd
437
domoticz/History.txt
514
domoticz/History.txt
438
domoticz/License.txt
515
domoticz/License.txt
439
domoticz/domoticz
516
domoticz/domoticz
517
domoticz/dzVents/.gitignore
518
domoticz/dzVents/documentation/README.md
519
domoticz/dzVents/documentation/README.wiki
520
domoticz/dzVents/documentation/dzvents-smoothing.png
521
domoticz/dzVents/documentation/history.md
522
domoticz/dzVents/documentation/pandoc.md
523
domoticz/dzVents/runtime/Device.lua
524
domoticz/dzVents/runtime/Domoticz.lua
525
domoticz/dzVents/runtime/EventHelpers.lua
526
domoticz/dzVents/runtime/HTTPResponse.lua
527
domoticz/dzVents/runtime/HistoricalStorage.lua
528
domoticz/dzVents/runtime/Security.lua
529
domoticz/dzVents/runtime/Time.lua
530
domoticz/dzVents/runtime/TimedCommand.lua
531
domoticz/dzVents/runtime/TimedCommandOptions.lua
532
domoticz/dzVents/runtime/Timer.lua
533
domoticz/dzVents/runtime/Utils.lua
534
domoticz/dzVents/runtime/Variable.lua
535
domoticz/dzVents/runtime/device-adapters/Adapters.lua
536
domoticz/dzVents/runtime/device-adapters/airquality_device.lua
537
domoticz/dzVents/runtime/device-adapters/alert_device.lua
538
domoticz/dzVents/runtime/device-adapters/ampere_1_phase_device.lua
539
domoticz/dzVents/runtime/device-adapters/ampere_3_phase_device.lua
540
domoticz/dzVents/runtime/device-adapters/barometer_device.lua
541
domoticz/dzVents/runtime/device-adapters/counter_device.lua
542
domoticz/dzVents/runtime/device-adapters/custom_sensor_device.lua
543
domoticz/dzVents/runtime/device-adapters/distance_device.lua
544
domoticz/dzVents/runtime/device-adapters/electric_usage_device.lua
545
domoticz/dzVents/runtime/device-adapters/evohome_device.lua
546
domoticz/dzVents/runtime/device-adapters/gas_device.lua
547
domoticz/dzVents/runtime/device-adapters/generic_device.lua
548
domoticz/dzVents/runtime/device-adapters/group_device.lua
549
domoticz/dzVents/runtime/device-adapters/humidity_device.lua
550
domoticz/dzVents/runtime/device-adapters/kodi_device.lua
551
domoticz/dzVents/runtime/device-adapters/kwh_device.lua
552
domoticz/dzVents/runtime/device-adapters/leafwetness_device.lua
553
domoticz/dzVents/runtime/device-adapters/logitech_media_server_device.lua
554
domoticz/dzVents/runtime/device-adapters/lux_device.lua
555
domoticz/dzVents/runtime/device-adapters/onkyo_device.lua
556
domoticz/dzVents/runtime/device-adapters/opentherm_gateway_device.lua
557
domoticz/dzVents/runtime/device-adapters/p1_smartmeter_device.lua
558
domoticz/dzVents/runtime/device-adapters/percentage_device.lua
559
domoticz/dzVents/runtime/device-adapters/pressure_device.lua
560
domoticz/dzVents/runtime/device-adapters/rain_device.lua
561
domoticz/dzVents/runtime/device-adapters/rgbw_device.lua
562
domoticz/dzVents/runtime/device-adapters/scaleweight_device.lua
563
domoticz/dzVents/runtime/device-adapters/scene_device.lua
564
domoticz/dzVents/runtime/device-adapters/security_device.lua
565
domoticz/dzVents/runtime/device-adapters/soilmoisture_device.lua
566
domoticz/dzVents/runtime/device-adapters/solar_radiation_device.lua
567
domoticz/dzVents/runtime/device-adapters/soundlevel_device.lua
568
domoticz/dzVents/runtime/device-adapters/switch_device.lua
569
domoticz/dzVents/runtime/device-adapters/temperature_barometer_device.lua
570
domoticz/dzVents/runtime/device-adapters/temperature_device.lua
571
domoticz/dzVents/runtime/device-adapters/temperature_humidity_barometer_device.lua
572
domoticz/dzVents/runtime/device-adapters/temperature_humidity_device.lua
573
domoticz/dzVents/runtime/device-adapters/text_device.lua
574
domoticz/dzVents/runtime/device-adapters/thermostat_setpoint_device.lua
575
domoticz/dzVents/runtime/device-adapters/uv_device.lua
576
domoticz/dzVents/runtime/device-adapters/visibility_device.lua
577
domoticz/dzVents/runtime/device-adapters/voltage_device.lua
578
domoticz/dzVents/runtime/device-adapters/waterflow_device.lua
579
domoticz/dzVents/runtime/device-adapters/wind_device.lua
580
domoticz/dzVents/runtime/device-adapters/youless_device.lua
581
domoticz/dzVents/runtime/device-adapters/zone_heating_device.lua
582
domoticz/dzVents/runtime/device-adapters/zwave_thermostat_mode_device.lua
583
domoticz/dzVents/runtime/dzVents.lua
584
domoticz/dzVents/runtime/integration-tests/File.lua
585
domoticz/dzVents/runtime/integration-tests/README.md
586
domoticz/dzVents/runtime/integration-tests/domoticzTestTools.lua
587
domoticz/dzVents/runtime/integration-tests/global_data.lua
588
domoticz/dzVents/runtime/integration-tests/httpResponseScript.lua
589
domoticz/dzVents/runtime/integration-tests/package.json
590
domoticz/dzVents/runtime/integration-tests/scCancelledScene.lua
591
domoticz/dzVents/runtime/integration-tests/scScene.lua
592
domoticz/dzVents/runtime/integration-tests/scriptContactDoorLockInvertedSwitch.lua
593
domoticz/dzVents/runtime/integration-tests/scriptDelayedVariableScene.lua
594
domoticz/dzVents/runtime/integration-tests/scriptSelectorSwitch.lua
595
domoticz/dzVents/runtime/integration-tests/scriptTestEventState.lua
596
domoticz/dzVents/runtime/integration-tests/secArmedAway.lua
597
domoticz/dzVents/runtime/integration-tests/server.js
598
domoticz/dzVents/runtime/integration-tests/silent.lua
599
domoticz/dzVents/runtime/integration-tests/some_module.lua
600
domoticz/dzVents/runtime/integration-tests/stage1.lua
601
domoticz/dzVents/runtime/integration-tests/stage2.lua
602
domoticz/dzVents/runtime/integration-tests/testContactDoorLockInvertedSwitch.lua
603
domoticz/dzVents/runtime/integration-tests/testDelayedVariableScene.lua
604
domoticz/dzVents/runtime/integration-tests/testEventState.lua
605
domoticz/dzVents/runtime/integration-tests/testIntegration.lua
606
domoticz/dzVents/runtime/integration-tests/testSelectorSwitch.lua
607
domoticz/dzVents/runtime/integration-tests/varCancelled.lua
608
domoticz/dzVents/runtime/integration-tests/varString.lua
609
domoticz/dzVents/runtime/integration-tests/vdCancelledRepeatSwitch.lua
610
domoticz/dzVents/runtime/integration-tests/vdRepeatSwitch.lua
611
domoticz/dzVents/runtime/integration-tests/vdSwitchDimmer.lua
612
domoticz/dzVents/runtime/lodash.lua
613
domoticz/dzVents/runtime/misc/smoothing.xlsx
614
domoticz/dzVents/runtime/persistence.lua
615
domoticz/dzVents/runtime/tests/.luacov
616
domoticz/dzVents/runtime/tests/README.md
617
domoticz/dzVents/runtime/tests/data/README.md
618
domoticz/dzVents/runtime/tests/devices.lua
619
domoticz/dzVents/runtime/tests/generated_scripts/internal1.lua
620
domoticz/dzVents/runtime/tests/generated_scripts/internal2.lua
621
domoticz/dzVents/runtime/tests/scandir/.f3.lua
622
domoticz/dzVents/runtime/tests/scandir/.f3.lua.swp
623
domoticz/dzVents/runtime/tests/scandir/f1.lua
624
domoticz/dzVents/runtime/tests/scandir/f1lua
625
domoticz/dzVents/runtime/tests/scandir/f2.lua
626
domoticz/dzVents/runtime/tests/scandir/f3.lua
627
domoticz/dzVents/runtime/tests/scandir/lua.lua
628
domoticz/dzVents/runtime/tests/scripts/global_data.lua
629
domoticz/dzVents/runtime/tests/scripts/script1.lua
630
domoticz/dzVents/runtime/tests/scripts/script2.lua
631
domoticz/dzVents/runtime/tests/scripts/script3.lua
632
domoticz/dzVents/runtime/tests/scripts/script4.lua
633
domoticz/dzVents/runtime/tests/scripts/script5.lua
634
domoticz/dzVents/runtime/tests/scripts/script6.lua
635
domoticz/dzVents/runtime/tests/scripts/script7.lua
636
domoticz/dzVents/runtime/tests/scripts/script_combined.lua
637
domoticz/dzVents/runtime/tests/scripts/script_data.lua
638
domoticz/dzVents/runtime/tests/scripts/script_error.lua
639
domoticz/dzVents/runtime/tests/scripts/script_group1.lua
640
domoticz/dzVents/runtime/tests/scripts/script_group2.lua
641
domoticz/dzVents/runtime/tests/scripts/script_inactive.lua
642
domoticz/dzVents/runtime/tests/scripts/script_incomplete_missing_execute.lua
643
domoticz/dzVents/runtime/tests/scripts/script_incomplete_missing_on.lua
644
domoticz/dzVents/runtime/tests/scripts/script_logging.lua
645
domoticz/dzVents/runtime/tests/scripts/script_notable.lua
646
domoticz/dzVents/runtime/tests/scripts/script_response_trigger1.lua
647
domoticz/dzVents/runtime/tests/scripts/script_response_trigger2.lua
648
domoticz/dzVents/runtime/tests/scripts/script_scene1.lua
649
domoticz/dzVents/runtime/tests/scripts/script_scene2.lua
650
domoticz/dzVents/runtime/tests/scripts/script_security.lua
651
domoticz/dzVents/runtime/tests/scripts/script_security_grouped.lua
652
domoticz/dzVents/runtime/tests/scripts/script_timer_classic.lua
653
domoticz/dzVents/runtime/tests/scripts/script_timer_function.lua
654
domoticz/dzVents/runtime/tests/scripts/script_timer_single.lua
655
domoticz/dzVents/runtime/tests/scripts/script_timer_table.lua
656
domoticz/dzVents/runtime/tests/scripts/script_variable1.lua
657
domoticz/dzVents/runtime/tests/scripts/script_variable2.lua
658
domoticz/dzVents/runtime/tests/scripts/script_variable3.lua
659
domoticz/dzVents/runtime/tests/scripts/script_wildcard1.lua
660
domoticz/dzVents/runtime/tests/scripts/script_wildcard2.lua
661
domoticz/dzVents/runtime/tests/scripts/script_with_active_method.lua
662
domoticz/dzVents/runtime/tests/scripts/script_with_time-contrained_device.lua
663
domoticz/dzVents/runtime/tests/testDevice.lua
664
domoticz/dzVents/runtime/tests/testDomoticz.lua
665
domoticz/dzVents/runtime/tests/testEventHelpers.lua
666
domoticz/dzVents/runtime/tests/testEventHelpersStorage.lua
667
domoticz/dzVents/runtime/tests/testHTTPResponse.lua
668
domoticz/dzVents/runtime/tests/testScriptdzVentsDispatching.lua
669
domoticz/dzVents/runtime/tests/testTime.lua
670
domoticz/dzVents/runtime/tests/testTimedCommand.lua
671
domoticz/dzVents/runtime/tests/testUtils.lua
672
domoticz/dzVents/runtime/tests/testVariable.lua
673
domoticz/dzVents/runtime/tests/testfile
674
domoticz/dzVents/runtime/tests/tstData.lua
675
domoticz/dzVents/runtime/todo.md
440
domoticz/plugins/AwoxSMP/%%LUA_LIBDIR%%/__init__.py
676
domoticz/plugins/AwoxSMP/%%LUA_LIBDIR%%/__init__.py
441
domoticz/plugins/AwoxSMP/%%LUA_LIBDIR%%/pySmartPlugSmpB16.py
677
domoticz/plugins/AwoxSMP/%%LUA_LIBDIR%%/pySmartPlugSmpB16.py
442
domoticz/plugins/AwoxSMP/plugin.py
678
domoticz/plugins/AwoxSMP/plugin.py
443
domoticz/plugins/examples/BaseTemplate.py
679
domoticz/plugins/examples/BaseTemplate.py
444
domoticz/plugins/examples/DenonMarantz.py
680
domoticz/plugins/examples/DenonMarantz.py
445
domoticz/plugins/examples/Dlink DSP-W215.py
681
domoticz/plugins/examples/Dlink DSP-W215.py
682
domoticz/plugins/examples/HTTP Listener.py
446
domoticz/plugins/examples/HTTP.py
683
domoticz/plugins/examples/HTTP.py
447
domoticz/plugins/examples/Kodi.py
684
domoticz/plugins/examples/Kodi.py
685
domoticz/plugins/examples/MQTT Publish.py
686
domoticz/plugins/examples/MQTT Subscribe.py
687
domoticz/plugins/examples/Pinger.py
448
domoticz/plugins/examples/RAVEn.py
688
domoticz/plugins/examples/RAVEn.py
689
domoticz/plugins/examples/UDP Discovery.py
449
domoticz/scripts/_domoticz_main
690
domoticz/scripts/_domoticz_main
450
domoticz/scripts/_domoticz_main.bat
691
domoticz/scripts/_domoticz_main.bat
451
domoticz/scripts/buienradar_rain_example.pl
692
domoticz/scripts/buienradar_rain_example.pl
693
domoticz/scripts/domoticz.conf
452
domoticz/scripts/download_update.sh
694
domoticz/scripts/download_update.sh
453
domoticz/scripts/dzVents/.gitignore
454
domoticz/scripts/dzVents/data/README.md
695
domoticz/scripts/dzVents/data/README.md
455
domoticz/scripts/dzVents/documentation/README.md
456
domoticz/scripts/dzVents/documentation/README.wiki
457
domoticz/scripts/dzVents/documentation/dzvents-smoothing.png
458
domoticz/scripts/dzVents/documentation/history.md
459
domoticz/scripts/dzVents/documentation/pandoc.md
460
domoticz/scripts/dzVents/examples/calc temp delta.lua
696
domoticz/scripts/dzVents/examples/calc temp delta.lua
461
domoticz/scripts/dzVents/examples/check battery levels.lua
697
domoticz/scripts/dzVents/examples/check battery levels.lua
462
domoticz/scripts/dzVents/examples/check dead devices by desc.lua
698
domoticz/scripts/dzVents/examples/check dead devices by desc.lua
Lines 469-604 Link Here
469
domoticz/scripts/dzVents/examples/leak_detection.lua
705
domoticz/scripts/dzVents/examples/leak_detection.lua
470
domoticz/scripts/dzVents/examples/notify for dead system-alive check devices.lua
706
domoticz/scripts/dzVents/examples/notify for dead system-alive check devices.lua
471
domoticz/scripts/dzVents/examples/only run script when button pressed.lua
707
domoticz/scripts/dzVents/examples/only run script when button pressed.lua
708
domoticz/scripts/dzVents/examples/plant watering notification.lua
472
domoticz/scripts/dzVents/examples/random night light.lua
709
domoticz/scripts/dzVents/examples/random night light.lua
473
domoticz/scripts/dzVents/examples/respond to switch.lua
710
domoticz/scripts/dzVents/examples/respond to switch.lua
474
domoticz/scripts/dzVents/examples/schedule fish pond pump.lua
711
domoticz/scripts/dzVents/examples/schedule fish pond pump.lua
475
domoticz/scripts/dzVents/examples/simple room heating with hysteresis control.lua
712
domoticz/scripts/dzVents/examples/simple room heating with hysteresis control.lua
713
domoticz/scripts/dzVents/examples/sunscreen.lua
714
domoticz/scripts/dzVents/examples/templates/HTTPRequest.lua
476
domoticz/scripts/dzVents/examples/templates/bare.lua
715
domoticz/scripts/dzVents/examples/templates/bare.lua
477
domoticz/scripts/dzVents/examples/templates/complete.lua
716
domoticz/scripts/dzVents/examples/templates/complete.lua
478
domoticz/scripts/dzVents/examples/templates/device.lua
717
domoticz/scripts/dzVents/examples/templates/device.lua
479
domoticz/scripts/dzVents/examples/templates/global_data.lua
718
domoticz/scripts/dzVents/examples/templates/global_data.lua
719
domoticz/scripts/dzVents/examples/templates/group.lua
720
domoticz/scripts/dzVents/examples/templates/scene.lua
480
domoticz/scripts/dzVents/examples/templates/security.lua
721
domoticz/scripts/dzVents/examples/templates/security.lua
481
domoticz/scripts/dzVents/examples/templates/timer.lua
722
domoticz/scripts/dzVents/examples/templates/timer.lua
482
domoticz/scripts/dzVents/examples/templates/variable.lua
723
domoticz/scripts/dzVents/examples/templates/variable.lua
483
domoticz/scripts/dzVents/generated_scripts/README.md
724
domoticz/scripts/dzVents/generated_scripts/README.md
484
domoticz/scripts/dzVents/runtime/Device.lua
485
domoticz/scripts/dzVents/runtime/Domoticz.lua
486
domoticz/scripts/dzVents/runtime/EventHelpers.lua
487
domoticz/scripts/dzVents/runtime/HistoricalStorage.lua
488
domoticz/scripts/dzVents/runtime/Time.lua
489
domoticz/scripts/dzVents/runtime/TimedCommand.lua
490
domoticz/scripts/dzVents/runtime/Utils.lua
491
domoticz/scripts/dzVents/runtime/Variable.lua
492
domoticz/scripts/dzVents/runtime/device-adapters/Adapters.lua
493
domoticz/scripts/dzVents/runtime/device-adapters/airquality_device.lua
494
domoticz/scripts/dzVents/runtime/device-adapters/alert_device.lua
495
domoticz/scripts/dzVents/runtime/device-adapters/ampere_1_phase_device.lua
496
domoticz/scripts/dzVents/runtime/device-adapters/ampere_3_phase_device.lua
497
domoticz/scripts/dzVents/runtime/device-adapters/barometer_device.lua
498
domoticz/scripts/dzVents/runtime/device-adapters/counter_device.lua
499
domoticz/scripts/dzVents/runtime/device-adapters/custom_sensor_device.lua
500
domoticz/scripts/dzVents/runtime/device-adapters/distance_device.lua
501
domoticz/scripts/dzVents/runtime/device-adapters/electric_usage_device.lua
502
domoticz/scripts/dzVents/runtime/device-adapters/evohome_device.lua
503
domoticz/scripts/dzVents/runtime/device-adapters/gas_device.lua
504
domoticz/scripts/dzVents/runtime/device-adapters/generic_device.lua
505
domoticz/scripts/dzVents/runtime/device-adapters/group_device.lua
506
domoticz/scripts/dzVents/runtime/device-adapters/humidity_device.lua
507
domoticz/scripts/dzVents/runtime/device-adapters/kodi_device.lua
508
domoticz/scripts/dzVents/runtime/device-adapters/kwh_device.lua
509
domoticz/scripts/dzVents/runtime/device-adapters/leafwetness_device.lua
510
domoticz/scripts/dzVents/runtime/device-adapters/lux_device.lua
511
domoticz/scripts/dzVents/runtime/device-adapters/opentherm_gateway_device.lua
512
domoticz/scripts/dzVents/runtime/device-adapters/p1_smartmeter_device.lua
513
domoticz/scripts/dzVents/runtime/device-adapters/percentage_device.lua
514
domoticz/scripts/dzVents/runtime/device-adapters/pressure_device.lua
515
domoticz/scripts/dzVents/runtime/device-adapters/rain_device.lua
516
domoticz/scripts/dzVents/runtime/device-adapters/rgbw_device.lua
517
domoticz/scripts/dzVents/runtime/device-adapters/scaleweight_device.lua
518
domoticz/scripts/dzVents/runtime/device-adapters/scene_device.lua
519
domoticz/scripts/dzVents/runtime/device-adapters/security_device.lua
520
domoticz/scripts/dzVents/runtime/device-adapters/soilmoisture_device.lua
521
domoticz/scripts/dzVents/runtime/device-adapters/solar_radiation_device.lua
522
domoticz/scripts/dzVents/runtime/device-adapters/soundlevel_device.lua
523
domoticz/scripts/dzVents/runtime/device-adapters/switch_device.lua
524
domoticz/scripts/dzVents/runtime/device-adapters/temperature_device.lua
525
domoticz/scripts/dzVents/runtime/device-adapters/temperature_humidity_barometer_device.lua
526
domoticz/scripts/dzVents/runtime/device-adapters/temperature_humidity_device.lua
527
domoticz/scripts/dzVents/runtime/device-adapters/text_device.lua
528
domoticz/scripts/dzVents/runtime/device-adapters/thermostat_setpoint_device.lua
529
domoticz/scripts/dzVents/runtime/device-adapters/uv_device.lua
530
domoticz/scripts/dzVents/runtime/device-adapters/visibility_device.lua
531
domoticz/scripts/dzVents/runtime/device-adapters/voltage_device.lua
532
domoticz/scripts/dzVents/runtime/device-adapters/waterflow_device.lua
533
domoticz/scripts/dzVents/runtime/device-adapters/wind_device.lua
534
domoticz/scripts/dzVents/runtime/device-adapters/zone_heating_device.lua
535
domoticz/scripts/dzVents/runtime/device-adapters/zwave_thermostat_mode_device.lua
536
domoticz/scripts/dzVents/runtime/dzVents.lua
537
domoticz/scripts/dzVents/runtime/integration-tests/File.lua
538
domoticz/scripts/dzVents/runtime/integration-tests/README.md
539
domoticz/scripts/dzVents/runtime/integration-tests/global_data.lua
540
domoticz/scripts/dzVents/runtime/integration-tests/secArmedAway.lua
541
domoticz/scripts/dzVents/runtime/integration-tests/stage1.lua
542
domoticz/scripts/dzVents/runtime/integration-tests/stage2.lua
543
domoticz/scripts/dzVents/runtime/integration-tests/testIntegration.lua
544
domoticz/scripts/dzVents/runtime/integration-tests/varString.lua
545
domoticz/scripts/dzVents/runtime/integration-tests/vdSwitchDimmer.lua
546
domoticz/scripts/dzVents/runtime/misc/smoothing.xlsx
547
domoticz/scripts/dzVents/runtime/persistence.lua
548
domoticz/scripts/dzVents/runtime/tests/.luacov
549
domoticz/scripts/dzVents/runtime/tests/README.md
550
domoticz/scripts/dzVents/runtime/tests/data/README.md
551
domoticz/scripts/dzVents/runtime/tests/devices.lua
552
domoticz/scripts/dzVents/runtime/tests/generated_scripts/internal1.lua
553
domoticz/scripts/dzVents/runtime/tests/generated_scripts/internal2.lua
554
domoticz/scripts/dzVents/runtime/tests/scandir/.f3.lua
555
domoticz/scripts/dzVents/runtime/tests/scandir/.f3.lua.swp
556
domoticz/scripts/dzVents/runtime/tests/scandir/f1.lua
557
domoticz/scripts/dzVents/runtime/tests/scandir/f1lua
558
domoticz/scripts/dzVents/runtime/tests/scandir/f2.lua
559
domoticz/scripts/dzVents/runtime/tests/scandir/f3.lua
560
domoticz/scripts/dzVents/runtime/tests/scandir/lua.lua
561
domoticz/scripts/dzVents/runtime/tests/scripts/global_data.lua
562
domoticz/scripts/dzVents/runtime/tests/scripts/script1.lua
563
domoticz/scripts/dzVents/runtime/tests/scripts/script2.lua
564
domoticz/scripts/dzVents/runtime/tests/scripts/script3.lua
565
domoticz/scripts/dzVents/runtime/tests/scripts/script4.lua
566
domoticz/scripts/dzVents/runtime/tests/scripts/script5.lua
567
domoticz/scripts/dzVents/runtime/tests/scripts/script6.lua
568
domoticz/scripts/dzVents/runtime/tests/scripts/script7.lua
569
domoticz/scripts/dzVents/runtime/tests/scripts/script_combined.lua
570
domoticz/scripts/dzVents/runtime/tests/scripts/script_data.lua
571
domoticz/scripts/dzVents/runtime/tests/scripts/script_error.lua
572
domoticz/scripts/dzVents/runtime/tests/scripts/script_inactive.lua
573
domoticz/scripts/dzVents/runtime/tests/scripts/script_incomplete_missing_execute.lua
574
domoticz/scripts/dzVents/runtime/tests/scripts/script_incomplete_missing_on.lua
575
domoticz/scripts/dzVents/runtime/tests/scripts/script_logging.lua
576
domoticz/scripts/dzVents/runtime/tests/scripts/script_notable.lua
577
domoticz/scripts/dzVents/runtime/tests/scripts/script_security.lua
578
domoticz/scripts/dzVents/runtime/tests/scripts/script_security_grouped.lua
579
domoticz/scripts/dzVents/runtime/tests/scripts/script_timer_classic.lua
580
domoticz/scripts/dzVents/runtime/tests/scripts/script_timer_function.lua
581
domoticz/scripts/dzVents/runtime/tests/scripts/script_timer_single.lua
582
domoticz/scripts/dzVents/runtime/tests/scripts/script_timer_table.lua
583
domoticz/scripts/dzVents/runtime/tests/scripts/script_variable1.lua
584
domoticz/scripts/dzVents/runtime/tests/scripts/script_variable2.lua
585
domoticz/scripts/dzVents/runtime/tests/scripts/script_variable3.lua
586
domoticz/scripts/dzVents/runtime/tests/scripts/script_wildcard1.lua
587
domoticz/scripts/dzVents/runtime/tests/scripts/script_wildcard2.lua
588
domoticz/scripts/dzVents/runtime/tests/scripts/script_with_active_method.lua
589
domoticz/scripts/dzVents/runtime/tests/scripts/script_with_time-contrained_device.lua
590
domoticz/scripts/dzVents/runtime/tests/testDevice.lua
591
domoticz/scripts/dzVents/runtime/tests/testDomoticz.lua
592
domoticz/scripts/dzVents/runtime/tests/testEventHelpers.lua
593
domoticz/scripts/dzVents/runtime/tests/testEventHelpersStorage.lua
594
domoticz/scripts/dzVents/runtime/tests/testScriptdzVentsDispatching.lua
595
domoticz/scripts/dzVents/runtime/tests/testTime.lua
596
domoticz/scripts/dzVents/runtime/tests/testTimedCommand.lua
597
domoticz/scripts/dzVents/runtime/tests/testUtils.lua
598
domoticz/scripts/dzVents/runtime/tests/testVariable.lua
599
domoticz/scripts/dzVents/runtime/tests/testfile
600
domoticz/scripts/dzVents/runtime/tests/tstData.lua
601
domoticz/scripts/dzVents/runtime/todo.md
602
domoticz/scripts/dzVents/scripts/README.md
725
domoticz/scripts/dzVents/scripts/README.md
603
domoticz/scripts/logrotate/domoticz
726
domoticz/scripts/logrotate/domoticz
604
domoticz/scripts/lua/JSON.lua
727
domoticz/scripts/lua/JSON.lua
Lines 621-628 Link Here
621
domoticz/scripts/templates/Bare.dzVents
744
domoticz/scripts/templates/Bare.dzVents
622
domoticz/scripts/templates/Device.Lua
745
domoticz/scripts/templates/Device.Lua
623
domoticz/scripts/templates/Device.dzVents
746
domoticz/scripts/templates/Device.dzVents
747
domoticz/scripts/templates/Group.dzVents
748
domoticz/scripts/templates/HTTPRequest.dzVents
749
domoticz/scripts/templates/Scene.dzVents
624
domoticz/scripts/templates/Security.Lua
750
domoticz/scripts/templates/Security.Lua
625
domoticz/scripts/templates/Seurity.dzVents
751
domoticz/scripts/templates/Security.dzVents
626
domoticz/scripts/templates/Time.Lua
752
domoticz/scripts/templates/Time.Lua
627
domoticz/scripts/templates/Timer.dzvents
753
domoticz/scripts/templates/Timer.dzvents
628
domoticz/scripts/templates/UserVariable.Lua
754
domoticz/scripts/templates/UserVariable.Lua
Lines 638-643 Link Here
638
domoticz/www/app/DPHttpController.js
764
domoticz/www/app/DPHttpController.js
639
domoticz/www/app/DPInfluxController.js
765
domoticz/www/app/DPInfluxController.js
640
domoticz/www/app/DashboardController.js
766
domoticz/www/app/DashboardController.js
767
domoticz/www/app/DeviceLightEdit.js
641
domoticz/www/app/DevicesController.js
768
domoticz/www/app/DevicesController.js
642
domoticz/www/app/DummyController.js
769
domoticz/www/app/DummyController.js
643
domoticz/www/app/EventsController.js
770
domoticz/www/app/EventsController.js
Lines 661-668 Link Here
661
domoticz/www/app/SetupController.js
788
domoticz/www/app/SetupController.js
662
domoticz/www/app/TemperatureController.js
789
domoticz/www/app/TemperatureController.js
663
domoticz/www/app/TemperatureCustomLogController.js
790
domoticz/www/app/TemperatureCustomLogController.js
664
domoticz/www/app/TemperatureLogController.js
665
domoticz/www/app/TemperatureNotificationsController.js
666
domoticz/www/app/TimerplanController.js
791
domoticz/www/app/TimerplanController.js
667
domoticz/www/app/UpdateController.js
792
domoticz/www/app/UpdateController.js
668
domoticz/www/app/UserVariablesController.js
793
domoticz/www/app/UserVariablesController.js
Lines 671-677 Link Here
671
domoticz/www/app/WeatherController.js
796
domoticz/www/app/WeatherController.js
672
domoticz/www/app/ZWaveTopologyController.js
797
domoticz/www/app/ZWaveTopologyController.js
673
domoticz/www/app/app.js
798
domoticz/www/app/app.js
799
domoticz/www/app/log/LightLog.js
800
domoticz/www/app/log/SceneLog.js
801
domoticz/www/app/log/TemperatureLog.js
802
domoticz/www/app/log/TemperatureReport.js
803
domoticz/www/app/log/TextLog.js
804
domoticz/www/app/log/components.js
674
domoticz/www/app/main.js
805
domoticz/www/app/main.js
806
domoticz/www/app/notifications/DeviceNotifications.js
807
domoticz/www/app/notifications/constants.js
808
domoticz/www/app/notifications/factories.js
809
domoticz/www/app/scenes/factories.js
810
domoticz/www/app/timers/DeviceTimersController.js
811
domoticz/www/app/timers/SceneTimersController.js
812
domoticz/www/app/timers/components.js
813
domoticz/www/app/timers/factories.js
675
domoticz/www/css/bootstrap-responsive.css
814
domoticz/www/css/bootstrap-responsive.css
676
domoticz/www/css/bootstrap.css
815
domoticz/www/css/bootstrap.css
677
domoticz/www/css/colpick.css
816
domoticz/www/css/colpick.css
Lines 709-714 Link Here
709
domoticz/www/css/jquery-ui-timepicker-addon.css
848
domoticz/www/css/jquery-ui-timepicker-addon.css
710
domoticz/www/css/jquery.dataTables.min.css
849
domoticz/www/css/jquery.dataTables.min.css
711
domoticz/www/css/jquery.uix.multiselect.css
850
domoticz/www/css/jquery.uix.multiselect.css
851
domoticz/www/css/legacy.css
712
domoticz/www/css/remote.css
852
domoticz/www/css/remote.css
713
domoticz/www/css/style.css
853
domoticz/www/css/style.css
714
domoticz/www/css/ui-darkness/images/animated-overlay.gif
854
domoticz/www/css/ui-darkness/images/animated-overlay.gif
Lines 727-737 Link Here
727
domoticz/www/css/ui-darkness/images/ui-icons_cccccc_256x240.png
867
domoticz/www/css/ui-darkness/images/ui-icons_cccccc_256x240.png
728
domoticz/www/css/ui-darkness/images/ui-icons_ffffff_256x240.png
868
domoticz/www/css/ui-darkness/images/ui-icons_ffffff_256x240.png
729
domoticz/www/css/ui-darkness/jquery-ui.min.css
869
domoticz/www/css/ui-darkness/jquery-ui.min.css
870
domoticz/www/css/wheelcolorpicker.css
730
domoticz/www/eventsframe.html
871
domoticz/www/eventsframe.html
731
domoticz/www/favicon.ico
872
domoticz/www/favicon.ico
732
domoticz/www/html5.appcache
873
domoticz/www/html5.appcache
733
domoticz/www/i18n/domoticz-ar.json.gz
874
domoticz/www/i18n/domoticz-ar.json.gz
734
domoticz/www/i18n/domoticz-bg.json.gz
875
domoticz/www/i18n/domoticz-bg.json.gz
876
domoticz/www/i18n/domoticz-bs.json.gz
735
domoticz/www/i18n/domoticz-ca.json.gz
877
domoticz/www/i18n/domoticz-ca.json.gz
736
domoticz/www/i18n/domoticz-cs.json.gz
878
domoticz/www/i18n/domoticz-cs.json.gz
737
domoticz/www/i18n/domoticz-da.json.gz
879
domoticz/www/i18n/domoticz-da.json.gz
Lines 740-745 Link Here
740
domoticz/www/i18n/domoticz-en.json.gz
882
domoticz/www/i18n/domoticz-en.json.gz
741
domoticz/www/i18n/domoticz-es.json.gz
883
domoticz/www/i18n/domoticz-es.json.gz
742
domoticz/www/i18n/domoticz-et.json.gz
884
domoticz/www/i18n/domoticz-et.json.gz
885
domoticz/www/i18n/domoticz-fa.json.gz
743
domoticz/www/i18n/domoticz-fi.json.gz
886
domoticz/www/i18n/domoticz-fi.json.gz
744
domoticz/www/i18n/domoticz-fr.json.gz
887
domoticz/www/i18n/domoticz-fr.json.gz
745
domoticz/www/i18n/domoticz-he.json.gz
888
domoticz/www/i18n/domoticz-he.json.gz
Lines 757-762 Link Here
757
domoticz/www/i18n/domoticz-ru.json.gz
900
domoticz/www/i18n/domoticz-ru.json.gz
758
domoticz/www/i18n/domoticz-sk.json.gz
901
domoticz/www/i18n/domoticz-sk.json.gz
759
domoticz/www/i18n/domoticz-sl.json.gz
902
domoticz/www/i18n/domoticz-sl.json.gz
903
domoticz/www/i18n/domoticz-sq.json.gz
760
domoticz/www/i18n/domoticz-sr.json.gz
904
domoticz/www/i18n/domoticz-sr.json.gz
761
domoticz/www/i18n/domoticz-sv.json.gz
905
domoticz/www/i18n/domoticz-sv.json.gz
762
domoticz/www/i18n/domoticz-th.json.gz
906
domoticz/www/i18n/domoticz-th.json.gz
Lines 778-783 Link Here
778
domoticz/www/images/ChristmasTree.png
922
domoticz/www/images/ChristmasTree.png
779
domoticz/www/images/ChristmasTree48_Off.png
923
domoticz/www/images/ChristmasTree48_Off.png
780
domoticz/www/images/ChristmasTree48_On.png
924
domoticz/www/images/ChristmasTree48_On.png
925
domoticz/www/images/Coltemp48.png
926
domoticz/www/images/Coltemp48_Sel.png
781
domoticz/www/images/Computer.png
927
domoticz/www/images/Computer.png
782
domoticz/www/images/Computer48_Off.png
928
domoticz/www/images/Computer48_Off.png
783
domoticz/www/images/Computer48_On.png
929
domoticz/www/images/Computer48_On.png
Lines 791-796 Link Here
791
domoticz/www/images/Custom.png
937
domoticz/www/images/Custom.png
792
domoticz/www/images/Custom48_Off.png
938
domoticz/www/images/Custom48_Off.png
793
domoticz/www/images/Custom48_On.png
939
domoticz/www/images/Custom48_On.png
940
domoticz/www/images/Customw48.png
941
domoticz/www/images/Customw48_Sel.png
942
domoticz/www/images/Customww48.png
943
domoticz/www/images/Customww48_Sel.png
794
domoticz/www/images/Dimmer48_Off.png
944
domoticz/www/images/Dimmer48_Off.png
795
domoticz/www/images/Dimmer48_On.png
945
domoticz/www/images/Dimmer48_On.png
796
domoticz/www/images/Down48.png
946
domoticz/www/images/Down48.png
Lines 828-835 Link Here
828
domoticz/www/images/Printer48_Off.png
978
domoticz/www/images/Printer48_Off.png
829
domoticz/www/images/Printer48_On.png
979
domoticz/www/images/Printer48_On.png
830
domoticz/www/images/RGB.png
980
domoticz/www/images/RGB.png
981
domoticz/www/images/RGB48.png
831
domoticz/www/images/RGB48_Off.png
982
domoticz/www/images/RGB48_Off.png
832
domoticz/www/images/RGB48_On.png
983
domoticz/www/images/RGB48_On.png
984
domoticz/www/images/RGB48_Sel.png
833
domoticz/www/images/Speaker.png
985
domoticz/www/images/Speaker.png
834
domoticz/www/images/Speaker48_Off.png
986
domoticz/www/images/Speaker48_Off.png
835
domoticz/www/images/Speaker48_On.png
987
domoticz/www/images/Speaker48_On.png
Lines 845-850 Link Here
845
domoticz/www/images/Water.png
997
domoticz/www/images/Water.png
846
domoticz/www/images/Water48_Off.png
998
domoticz/www/images/Water48_Off.png
847
domoticz/www/images/Water48_On.png
999
domoticz/www/images/Water48_On.png
1000
domoticz/www/images/White48.png
1001
domoticz/www/images/White48_Sel.png
848
domoticz/www/images/Wind0.png
1002
domoticz/www/images/Wind0.png
849
domoticz/www/images/WindE.png
1003
domoticz/www/images/WindE.png
850
domoticz/www/images/WindENE.png
1004
domoticz/www/images/WindENE.png
Lines 949-954 Link Here
949
domoticz/www/images/forward_enabled_hover.png
1103
domoticz/www/images/forward_enabled_hover.png
950
domoticz/www/images/gauge.png
1104
domoticz/www/images/gauge.png
951
domoticz/www/images/gauge48.png
1105
domoticz/www/images/gauge48.png
1106
domoticz/www/images/general.png
952
domoticz/www/images/glyphicons-halflings-white.png
1107
domoticz/www/images/glyphicons-halflings-white.png
953
domoticz/www/images/glyphicons-halflings.png
1108
domoticz/www/images/glyphicons-halflings.png
954
domoticz/www/images/handle.png
1109
domoticz/www/images/handle.png
Lines 1069-1074 Link Here
1069
domoticz/www/images/text48.png
1224
domoticz/www/images/text48.png
1070
domoticz/www/images/unknown.png
1225
domoticz/www/images/unknown.png
1071
domoticz/www/images/up.png
1226
domoticz/www/images/up.png
1227
domoticz/www/images/update.png
1072
domoticz/www/images/users.png
1228
domoticz/www/images/users.png
1073
domoticz/www/images/utility.png
1229
domoticz/www/images/utility.png
1074
domoticz/www/images/uv.png
1230
domoticz/www/images/uv.png
Lines 1157-1176 Link Here
1157
domoticz/www/js/angular-sanitize.min.js.gz
1313
domoticz/www/js/angular-sanitize.min.js.gz
1158
domoticz/www/js/angular-scrollglue.js.gz
1314
domoticz/www/js/angular-scrollglue.js.gz
1159
domoticz/www/js/angular-tree-control.js.gz
1315
domoticz/www/js/angular-tree-control.js.gz
1316
domoticz/www/js/angular-websocket.js.gz
1160
domoticz/www/js/angular.min.js.gz
1317
domoticz/www/js/angular.min.js.gz
1161
domoticz/www/js/angularAMD.min.js.gz
1318
domoticz/www/js/angularAMD.min.js.gz
1319
domoticz/www/js/babel-polyfill-6.26.0.js.gz
1162
domoticz/www/js/blockly_compressed.js.gz
1320
domoticz/www/js/blockly_compressed.js.gz
1163
domoticz/www/js/blocks_compressed.js.gz
1321
domoticz/www/js/blocks_compressed.js.gz
1164
domoticz/www/js/bootbox.min.js.gz
1322
domoticz/www/js/bootbox.min.js.gz
1165
domoticz/www/js/bootstrap.min.js.gz
1323
domoticz/www/js/bootstrap.min.js.gz
1166
domoticz/www/js/colpick.js.gz
1324
domoticz/www/js/colpick.js.gz
1167
domoticz/www/js/d3.min.js.gz
1325
domoticz/www/js/d3.min.js.gz
1326
domoticz/www/js/dataTables.select.min.js.gz
1168
domoticz/www/js/dataTables.tableTools.min.js.gz
1327
domoticz/www/js/dataTables.tableTools.min.js.gz
1169
domoticz/www/js/date.format.js.gz
1328
domoticz/www/js/date.format.js.gz
1170
domoticz/www/js/domoticz.js.gz
1329
domoticz/www/js/domoticz.js
1171
domoticz/www/js/domoticzblocks.js.gz
1330
domoticz/www/js/domoticzblocks.js
1172
domoticz/www/js/domoticzblocks_messages_en.js.gz
1331
domoticz/www/js/domoticzblocks_messages_en.js
1173
domoticz/www/js/domoticzdevices.js.gz
1332
domoticz/www/js/domoticzdevices.js
1174
domoticz/www/js/en_compressed.js.gz
1333
domoticz/www/js/en_compressed.js.gz
1175
domoticz/www/js/export-csv.js.gz
1334
domoticz/www/js/export-csv.js.gz
1176
domoticz/www/js/highcharts-more.js.gz
1335
domoticz/www/js/highcharts-more.js.gz
Lines 1178-1185 Link Here
1178
domoticz/www/js/highcharts.js.gz
1337
domoticz/www/js/highcharts.js.gz
1179
domoticz/www/js/html5shiv.js.gz
1338
domoticz/www/js/html5shiv.js.gz
1180
domoticz/www/js/i18next-1.8.0.min.js.gz
1339
domoticz/www/js/i18next-1.8.0.min.js.gz
1181
domoticz/www/js/jquery-1.12.0.min.js.gz
1340
domoticz/www/js/jquery-3.3.1.min.js.gz
1182
domoticz/www/js/jquery-migrate-1.2.1.min.js.gz
1183
domoticz/www/js/jquery-ui-timepicker-addon.js.gz
1341
domoticz/www/js/jquery-ui-timepicker-addon.js.gz
1184
domoticz/www/js/jquery-ui.min.js.gz
1342
domoticz/www/js/jquery-ui.min.js.gz
1185
domoticz/www/js/jquery.dataTables.min.js.gz
1343
domoticz/www/js/jquery.dataTables.min.js.gz
Lines 1188-1193 Link Here
1188
domoticz/www/js/jquery.jeditable.mini.js.gz
1346
domoticz/www/js/jquery.jeditable.mini.js.gz
1189
domoticz/www/js/jquery.ui.touch-punch.min.js.gz
1347
domoticz/www/js/jquery.ui.touch-punch.min.js.gz
1190
domoticz/www/js/jquery.uix.multiselect.min.js.gz
1348
domoticz/www/js/jquery.uix.multiselect.min.js.gz
1349
domoticz/www/js/jquery.wheelcolorpicker.js.gz
1191
domoticz/www/js/md5.js.gz
1350
domoticz/www/js/md5.js.gz
1192
domoticz/www/js/modules/exporting.js.gz
1351
domoticz/www/js/modules/exporting.js.gz
1193
domoticz/www/js/ng-grid-flexible-height.js.gz
1352
domoticz/www/js/ng-grid-flexible-height.js.gz
Lines 1241-1250 Link Here
1241
domoticz/www/ozwcp/cp.html
1400
domoticz/www/ozwcp/cp.html
1242
domoticz/www/ozwcp/cp.js
1401
domoticz/www/ozwcp/cp.js
1243
domoticz/www/ozwcp/ozwcp.html
1402
domoticz/www/ozwcp/ozwcp.html
1244
domoticz/www/secpanel/bg.jpg
1403
domoticz/www/robots.txt
1245
domoticz/www/secpanel/css/font.less
1404
domoticz/www/secpanel/css/style.css
1246
domoticz/www/secpanel/css/reset.less
1247
domoticz/www/secpanel/css/style.less
1248
domoticz/www/secpanel/font/Audiowide.eot
1405
domoticz/www/secpanel/font/Audiowide.eot
1249
domoticz/www/secpanel/font/Audiowide.svg
1406
domoticz/www/secpanel/font/Audiowide.svg
1250
domoticz/www/secpanel/font/Audiowide.ttf
1407
domoticz/www/secpanel/font/Audiowide.ttf
Lines 1253-1261 Link Here
1253
domoticz/www/secpanel/font/Digital.svg
1410
domoticz/www/secpanel/font/Digital.svg
1254
domoticz/www/secpanel/font/Digital.ttf
1411
domoticz/www/secpanel/font/Digital.ttf
1255
domoticz/www/secpanel/font/Digital.woff
1412
domoticz/www/secpanel/font/Digital.woff
1413
domoticz/www/secpanel/img/bg.jpg
1256
domoticz/www/secpanel/index.html
1414
domoticz/www/secpanel/index.html
1257
domoticz/www/secpanel/js/ion.sound.min.js.gz
1415
domoticz/www/secpanel/js/ion.sound.min.js.gz
1258
domoticz/www/secpanel/js/less.js.gz
1259
domoticz/www/secpanel/media/arm.aac
1416
domoticz/www/secpanel/media/arm.aac
1260
domoticz/www/secpanel/media/arm.mp3
1417
domoticz/www/secpanel/media/arm.mp3
1261
domoticz/www/secpanel/media/arm.ogg
1418
domoticz/www/secpanel/media/arm.ogg
Lines 1269-1292 Link Here
1269
domoticz/www/secpanel/media/wrongcode.mp3
1426
domoticz/www/secpanel/media/wrongcode.mp3
1270
domoticz/www/secpanel/media/wrongcode.ogg
1427
domoticz/www/secpanel/media/wrongcode.ogg
1271
domoticz/www/styles/dark-th3me/custom.css
1428
domoticz/www/styles/dark-th3me/custom.css
1429
domoticz/www/styles/dark-th3me/custom.js
1272
domoticz/www/styles/dark-th3me/fonts/Ubuntu.ttf
1430
domoticz/www/styles/dark-th3me/fonts/Ubuntu.ttf
1273
domoticz/www/styles/dark-th3me/images/domoticz.jpg
1431
domoticz/www/styles/dark-th3me/images/domoticz.jpg
1432
domoticz/www/styles/default/base.css
1274
domoticz/www/styles/default/custom.css
1433
domoticz/www/styles/default/custom.css
1434
domoticz/www/styles/default/custom.js
1435
domoticz/www/styles/default/extras_and_animations.css
1436
domoticz/www/styles/default/images/ui-bg_gloss-wave_25_333333_500x100.png
1437
domoticz/www/styles/default/navigation_main_sidebar.css
1438
domoticz/www/styles/default/show_version_number.css
1275
domoticz/www/styles/element-dark/custom.css
1439
domoticz/www/styles/element-dark/custom.css
1440
domoticz/www/styles/element-dark/custom.js
1276
domoticz/www/styles/element-dark/fonts/DroidSans.ttf
1441
domoticz/www/styles/element-dark/fonts/DroidSans.ttf
1277
domoticz/www/styles/element-dark/fonts/OpenSans.ttf
1442
domoticz/www/styles/element-dark/fonts/OpenSans.ttf
1278
domoticz/www/styles/element-dark/images/imgbg.jpg
1443
domoticz/www/styles/element-dark/images/imgbg.jpg
1279
domoticz/www/styles/element-light/custom.css
1444
domoticz/www/styles/element-light/custom.css
1445
domoticz/www/styles/element-light/custom.js
1280
domoticz/www/styles/element-light/fonts/DroidSans.ttf
1446
domoticz/www/styles/element-light/fonts/DroidSans.ttf
1281
domoticz/www/styles/element-light/fonts/OpenSans.ttf
1447
domoticz/www/styles/element-light/fonts/OpenSans.ttf
1282
domoticz/www/styles/element-light/images/imgbg.jpg
1448
domoticz/www/styles/element-light/images/imgbg.jpg
1283
domoticz/www/styles/elemental/custom.css
1449
domoticz/www/styles/elemental/custom.css
1450
domoticz/www/styles/elemental/custom.js
1284
domoticz/www/styles/elemental/fonts/DroidSans.ttf
1451
domoticz/www/styles/elemental/fonts/DroidSans.ttf
1285
domoticz/www/styles/elemental/fonts/OpenSans.ttf
1452
domoticz/www/styles/elemental/fonts/OpenSans.ttf
1286
domoticz/www/styles/elemental/images/bg-track.png
1453
domoticz/www/styles/elemental/images/bg-track.png
1287
domoticz/www/styles/elemental/images/imgbg.jpg
1454
domoticz/www/styles/elemental/images/imgbg.jpg
1288
domoticz/www/styles/simple-blue/custom.css
1455
domoticz/www/styles/simple-blue/custom.css
1456
domoticz/www/styles/simple-blue/custom.js
1289
domoticz/www/styles/simple-gray/custom.css
1457
domoticz/www/styles/simple-gray/custom.css
1458
domoticz/www/styles/simple-gray/custom.js
1290
domoticz/www/switch_icons.txt
1459
domoticz/www/switch_icons.txt
1291
domoticz/www/templates/custom.example
1460
domoticz/www/templates/custom.example
1292
domoticz/www/templates/readme.txt
1461
domoticz/www/templates/readme.txt
Lines 1294-1299 Link Here
1294
domoticz/www/views/cam.html
1463
domoticz/www/views/cam.html
1295
domoticz/www/views/customicons.html
1464
domoticz/www/views/customicons.html
1296
domoticz/www/views/dashboard.html
1465
domoticz/www/views/dashboard.html
1466
domoticz/www/views/device_light_edit.html
1297
domoticz/www/views/devices.html
1467
domoticz/www/views/devices.html
1298
domoticz/www/views/dpfibaro.html
1468
domoticz/www/views/dpfibaro.html
1299
domoticz/www/views/dpgooglepubsub.html
1469
domoticz/www/views/dpgooglepubsub.html
Lines 1309-1318 Link Here
1309
domoticz/www/views/history.html
1479
domoticz/www/views/history.html
1310
domoticz/www/views/lights.html
1480
domoticz/www/views/lights.html
1311
domoticz/www/views/log.html
1481
domoticz/www/views/log.html
1482
domoticz/www/views/log/device_light_log.html
1483
domoticz/www/views/log/device_temperature_log.html
1484
domoticz/www/views/log/device_temperature_report.html
1485
domoticz/www/views/log/scene_log.html
1312
domoticz/www/views/login.html
1486
domoticz/www/views/login.html
1313
domoticz/www/views/logout.html
1487
domoticz/www/views/logout.html
1314
domoticz/www/views/mobile_notifications.html
1488
domoticz/www/views/mobile_notifications.html
1315
domoticz/www/views/notification.html
1489
domoticz/www/views/notification.html
1490
domoticz/www/views/notifications.html
1316
domoticz/www/views/offline.html
1491
domoticz/www/views/offline.html
1317
domoticz/www/views/restoredatabase.html
1492
domoticz/www/views/restoredatabase.html
1318
domoticz/www/views/rfxcomfirmware.html
1493
domoticz/www/views/rfxcomfirmware.html
Lines 1321-1330 Link Here
1321
domoticz/www/views/setup.html
1496
domoticz/www/views/setup.html
1322
domoticz/www/views/temperature.html
1497
domoticz/www/views/temperature.html
1323
domoticz/www/views/temperature_custom_temp_log.html
1498
domoticz/www/views/temperature_custom_temp_log.html
1324
domoticz/www/views/temperature_log.html
1499
domoticz/www/views/temperature_widget.html
1325
domoticz/www/views/temperature_notifications.html
1326
domoticz/www/views/temperatures/temperatureWidget.html
1327
domoticz/www/views/timerplan.html
1500
domoticz/www/views/timerplan.html
1501
domoticz/www/views/timers.html
1328
domoticz/www/views/update.html
1502
domoticz/www/views/update.html
1329
domoticz/www/views/users.html
1503
domoticz/www/views/users.html
1330
domoticz/www/views/uservariables.html
1504
domoticz/www/views/uservariables.html

Return to bug 229333