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

(-)./domoticz/Makefile (-24 / +9 lines)
Lines 1-6 Link Here
1
PORTNAME=	domoticz
1
PORTNAME=	domoticz
2
PORTVERSION=	2020.2
2
PORTVERSION=	2022.1
3
PORTREVISION=	2
4
CATEGORIES=	www
3
CATEGORIES=	www
5
4
6
MAINTAINER=	kiwi@oav.net
5
MAINTAINER=	kiwi@oav.net
Lines 10-36 Link Here
10
LICENSE_FILE=	${WRKSRC}/License.txt
9
LICENSE_FILE=	${WRKSRC}/License.txt
11
10
12
LIB_DEPENDS=	libcurl.so:ftp/curl libboost_system.so:devel/boost-libs \
11
LIB_DEPENDS=	libcurl.so:ftp/curl libboost_system.so:devel/boost-libs \
13
		libjsoncpp.so:devel/jsoncpp
12
		libjsoncpp.so:comms/openzwave-devel \
13
		libjsoncpp.so:devel/jsoncpp \
14
		libmosquitto.so:net/mosquitto
15
14
BUILD_DEPENDS=	cereal>=1.2.2:devel/cereal
16
BUILD_DEPENDS=	cereal>=1.2.2:devel/cereal
15
17
16
USES=		cmake compiler:c++11-lang cpe minizip pkgconfig ssl lua:53 sqlite
18
USES=		cmake compiler:c++11-lang cpe minizip pkgconfig ssl lua:53 sqlite
17
19
18
OPTIONS_SUB=	YES
20
OPTIONS_SUB=	YES
19
OPTIONS_DEFINE=	SMQTT PYTHON TELLDUS OPENZWAVE PRECOMP
21
OPTIONS_DEFINE=	PYTHON TELLDUS PRECOMP
20
OPTIONS_DEFAULT=	PYTHON PRECOMP
22
OPTIONS_DEFAULT=	PYTHON PRECOMP
21
SMQTT_DESC=	Use domoticz Mosquitto instead of ports one
22
PYTHON_DESC=	Enable Python for Plugins and Event-Scripts
23
PYTHON_DESC=	Enable Python for Plugins and Event-Scripts
23
TELLDUS_DESC=	Enable Tellstick Telldus support
24
TELLDUS_DESC=	Enable Tellstick Telldus support
24
OPENZWAVE_DESC=	Enable OpenZWave support
25
PRECOMP_DESC=	Enable usage of precompiled header to speed build time
25
PRECOMP_DESC=	Enable usage of precompiled header to speed build time
26
26
27
.include <bsd.port.options.mk>
27
.include <bsd.port.options.mk>
28
28
29
USE_GITHUB=	yes
29
USE_GITHUB=	yes
30
# allow to build port with MQQT version recommended by the upstream
31
# see https://github.com/domoticz/domoticz/tree/development/extern for the
32
# specific release tag
33
GH_TUPLE=	eclipse:mosquitto:22e0a4b:mosquitto/extern/mosquitto
34
30
35
USE_RC_SUBR=	domoticz
31
USE_RC_SUBR=	domoticz
36
32
Lines 39-56 Link Here
39
35
40
CMAKE_INSTALL_PREFIX=	${PREFIX}/domoticz
36
CMAKE_INSTALL_PREFIX=	${PREFIX}/domoticz
41
CMAKE_OFF+=		GIT_SUBMODULE USE_STATIC_BOOST USE_OPENSSL_STATIC \
37
CMAKE_OFF+=		GIT_SUBMODULE USE_STATIC_BOOST USE_OPENSSL_STATIC \
42
			USE_BUILTIN_SQLITE USE_BUILTIN_MINIZIP USE_BUILTIN_JSONCPP
38
			USE_BUILTIN_SQLITE USE_BUILTIN_MINIZIP USE_BUILTIN_JSONCPP \
39
			USE_BUILTIN_MQTT USE_STATIC_OPENZWAVE
43
40
44
.if ${PORT_OPTIONS:MSMQTT}
45
CMAKE_ON+=	USE_BUILTIN_MQTT
46
.else
47
CMAKE_OFF+=	USE_BUILTIN_MQTT
48
LIB_DEPENDS+=	libmosquitto.so:net/mosquitto
49
.endif
50
51
.if ${PORT_OPTIONS:MPYTHON}
41
.if ${PORT_OPTIONS:MPYTHON}
52
CMAKE_ON+=	USE_PYTHON
42
CMAKE_ON+=	USE_PYTHON
53
USES+=		python:3.7
43
USES+=		python:3.8+
54
.else
44
.else
55
CMAKE_OFF+=	USE_PYTHON
45
CMAKE_OFF+=	USE_PYTHON
56
.endif
46
.endif
Lines 63-73 Link Here
63
CMAKE_ON+=	USE_PRECOMPILED_HEADER
53
CMAKE_ON+=	USE_PRECOMPILED_HEADER
64
.else
54
.else
65
CMAKE_OFF+=	USE_PRECOMPILED_HEADER
55
CMAKE_OFF+=	USE_PRECOMPILED_HEADER
66
.endif
67
68
.if ${PORT_OPTIONS:MOPENZWAVE}
69
CMAKE_OFF+=	USE_STATIC_OPENZWAVE
70
LIB_DEPENDS+=	libopenzwave.so:comms/openzwave-devel
71
.endif
56
.endif
72
57
73
post-install:
58
post-install:
(-)./domoticz/distinfo (-5 / +3 lines)
Lines 1-5 Link Here
1
TIMESTAMP = 1590483320
1
TIMESTAMP = 1643629602
2
SHA256 (domoticz-domoticz-2020.2_GH0.tar.gz) = a02f589daad4eebff1f5e93815c1acd1864cf068f8f5c3185bcdd20207ae395e
2
SHA256 (domoticz-domoticz-2022.1_GH0.tar.gz) = 8282cb71c924b6ef92503976d50f966f2c785eab8f8cffa1136ac133f0241157
3
SIZE (domoticz-domoticz-2020.2_GH0.tar.gz) = 14588401
3
SIZE (domoticz-domoticz-2022.1_GH0.tar.gz) = 12806545
4
SHA256 (eclipse-mosquitto-22e0a4b_GH0.tar.gz) = b00ac0b59ad01f1fa8049a4dd2b526675ca9acd367436272678d22fe43358c27
5
SIZE (eclipse-mosquitto-22e0a4b_GH0.tar.gz) = 2042301
(-)./domoticz/files/patch-extern_mosquitto_CMakeLists.txt (-31 lines)
Lines 1-31 Link Here
1
--- extern/mosquitto/CMakeLists.txt.orig	2020-03-19 15:45:18 UTC
2
+++ extern/mosquitto/CMakeLists.txt
3
@@ -5,6 +5,7 @@
4
 # line utility including the "-i" option.
5
 
6
 set(CMAKE_LEGACY_CYGWIN_WIN32 0)
7
+set(WITH_BUNDLED_DEPS ON)
8
 
9
 project(mosquitto)
10
 
11
@@ -77,7 +78,7 @@ else (WITH_THREADING)
12
 	set (PTHREAD_INCLUDE_DIR "")
13
 endif (WITH_THREADING)
14
 
15
-option(DOCUMENTATION "Build documentation?" ON)
16
+option(DOCUMENTATION "Build documentation?" OFF)
17
 
18
 option(WITH_DLT "Include DLT support?" OFF)
19
 message(STATUS "WITH_DLT = ${WITH_DLT}")
20
@@ -111,9 +112,9 @@ install(FILES mosquitto.conf aclfile.example pskfile.e
21
 # ========================================
22
 
23
 configure_file(libmosquitto.pc.in libmosquitto.pc @ONLY)
24
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libmosquitto.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
25
+#install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libmosquitto.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
26
 configure_file(libmosquittopp.pc.in libmosquittopp.pc @ONLY)
27
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libmosquittopp.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
28
+#install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libmosquittopp.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
29
 
30
 # ========================================
31
 # Testing
(-)./domoticz/files/patch-extern_mosquitto_lib_CMakeLists.txt (-11 lines)
Lines 1-11 Link Here
1
--- extern/mosquitto/lib/CMakeLists.txt.orig	2020-05-25 08:19:49 UTC
2
+++ extern/mosquitto/lib/CMakeLists.txt
3
@@ -91,8 +91,6 @@ set_target_properties(libmosquitto PROPERTIES
4
 	SOVERSION 1
5
 )
6
 
7
-install(TARGETS libmosquitto RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")
8
-
9
 if (WITH_STATIC_LIBRARIES)
10
 	add_library(libmosquitto_static STATIC ${C_SRC})
11
 	if (WITH_PIC)
(-)./domoticz/files/patch-extern_mosquitto_lib_cpp_CMakeLists.txt (-10 lines)
Lines 1-10 Link Here
1
--- extern/mosquitto/lib/cpp/CMakeLists.txt.orig	2020-05-25 08:21:03 UTC
2
+++ extern/mosquitto/lib/cpp/CMakeLists.txt
3
@@ -13,7 +13,6 @@ set_target_properties(mosquittopp PROPERTIES
4
 	VERSION ${VERSION}
5
 	SOVERSION 1
6
 )
7
-install(TARGETS mosquittopp RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")
8
 
9
 if (WITH_STATIC_LIBRARIES)
10
 	add_library(mosquittopp_static STATIC
(-)./domoticz/files/patch-main_mainworker.cpp (-12 lines)
Lines 1-12 Link Here
1
--- main/mainworker.cpp.orig	2020-04-26 13:49:25 UTC
2
+++ main/mainworker.cpp
3
@@ -125,7 +125,9 @@
4
 #include "../hardware/ZiBlueTCP.h"
5
 #include "../hardware/Yeelight.h"
6
 #include "../hardware/XiaomiGateway.h"
7
+#ifdef ENABLE_PYTHON
8
 #include "../hardware/plugins/Plugins.h"
9
+#endif
10
 #include "../hardware/Arilux.h"
11
 #include "../hardware/OpenWebNetUSB.h"
12
 #include "../hardware/InComfort.h"
(-)./domoticz/pkg-plist (-78 / +236 lines)
Lines 1-6 Link Here
1
domoticz/updatedomo
2
domoticz/Config/2gig/ct100.xml
1
domoticz/Config/2gig/ct100.xml
3
domoticz/Config/2gig/ct101.xml
2
domoticz/Config/2gig/ct101.xml
3
domoticz/Config/2gig/ct200.xml
4
domoticz/Config/2gig/ct30.xml
4
domoticz/Config/2gig/ct30.xml
5
domoticz/Config/2gig/ct32.xml
5
domoticz/Config/2gig/ct32.xml
6
domoticz/Config/2gig/ct50e.xml
6
domoticz/Config/2gig/ct50e.xml
Lines 28-33 Link Here
28
domoticz/Config/NotificationCCTypes.xsd
28
domoticz/Config/NotificationCCTypes.xsd
29
domoticz/Config/SensorMultiLevelCCTypes.xml
29
domoticz/Config/SensorMultiLevelCCTypes.xml
30
domoticz/Config/SensorMultiLevelCCTypes.xsd
30
domoticz/Config/SensorMultiLevelCCTypes.xsd
31
domoticz/Config/abus/SHRM10000.xml
31
domoticz/Config/act/lfm20.xml
32
domoticz/Config/act/lfm20.xml
32
domoticz/Config/act/zdm230.xml
33
domoticz/Config/act/zdm230.xml
33
domoticz/Config/act/zdp100.xml
34
domoticz/Config/act/zdp100.xml
Lines 104-130 Link Here
104
domoticz/Config/aeotec/zwa005.xml
105
domoticz/Config/aeotec/zwa005.xml
105
domoticz/Config/aeotec/zwa006.xml
106
domoticz/Config/aeotec/zwa006.xml
106
domoticz/Config/aeotec/zwa008.xml
107
domoticz/Config/aeotec/zwa008.xml
108
domoticz/Config/aeotec/zwa009.xml
109
domoticz/Config/aeotec/zwa011.xml
110
domoticz/Config/aeotec/zwa012.xml
111
domoticz/Config/aeotec/zwa019.xml
107
domoticz/Config/aeotec/zwa021.xml
112
domoticz/Config/aeotec/zwa021.xml
113
domoticz/Config/aeotec/zwa023.xml
108
domoticz/Config/airlinemechanical/zds-ud10.xml
114
domoticz/Config/airlinemechanical/zds-ud10.xml
109
domoticz/Config/alfred/DB2.xml
115
domoticz/Config/alfred/DB2.xml
110
domoticz/Config/assa_abloy/ConexisL1.xml
116
domoticz/Config/assa_abloy/ConexisL1.xml
111
domoticz/Config/assa_abloy/KeyfreeConnected-plus.xml
117
domoticz/Config/assa_abloy/KeyfreeConnected-plus.xml
112
domoticz/Config/assa_abloy/KeyfreeConnected.xml
118
domoticz/Config/assa_abloy/KeyfreeConnected.xml
119
domoticz/Config/assa_abloy/ProSLKey-FreeDeadbolt.xml
113
domoticz/Config/assa_abloy/PushButtonDeadbolt.xml
120
domoticz/Config/assa_abloy/PushButtonDeadbolt.xml
114
domoticz/Config/assa_abloy/PushButtonLever.xml
121
domoticz/Config/assa_abloy/PushButtonLever.xml
115
domoticz/Config/assa_abloy/TouchDeadbolt.xml
122
domoticz/Config/assa_abloy/TouchDeadbolt.xml
116
domoticz/Config/assa_abloy/TouchLever.xml
123
domoticz/Config/assa_abloy/TouchLever.xml
117
domoticz/Config/assa_abloy/nexTouch.xml
124
domoticz/Config/assa_abloy/nexTouch.xml
125
domoticz/Config/assa_abloy/yrd1x0.xml
126
domoticz/Config/assa_abloy/yrm276.xml
118
domoticz/Config/august/asl-03.xml
127
domoticz/Config/august/asl-03.xml
119
domoticz/Config/buffalo/hw-100v15a-zw.xml
128
domoticz/Config/buffalo/hw-100v15a-zw.xml
129
domoticz/Config/building36/b36-t10.xml
120
domoticz/Config/comfort/ucm.xml
130
domoticz/Config/comfort/ucm.xml
121
domoticz/Config/config-template.xml
131
domoticz/Config/config-template.xml
132
domoticz/Config/connecthome/ch-201.xml
122
domoticz/Config/cooper/RF9501.xml
133
domoticz/Config/cooper/RF9501.xml
123
domoticz/Config/cooper/RF9505-T.xml
134
domoticz/Config/cooper/RF9505-T.xml
124
domoticz/Config/cooper/RF9505-T.xml.zip
135
domoticz/Config/cooper/RF9505-T.xml.zip
125
domoticz/Config/cooper/RF9517.xml
136
domoticz/Config/cooper/RF9517.xml
126
domoticz/Config/cooper/RF9540-N.xml
137
domoticz/Config/cooper/RF9540-N.xml
127
domoticz/Config/cooper/RF9542-Z.xml
138
domoticz/Config/cooper/RF9542-Z.xml
139
domoticz/Config/cooper/RF9601.xml
128
domoticz/Config/cooper/RFWC5.xml
140
domoticz/Config/cooper/RFWC5.xml
129
domoticz/Config/cooper/rf9534.xml
141
domoticz/Config/cooper/rf9534.xml
130
domoticz/Config/danfoss/living.xml
142
domoticz/Config/danfoss/living.xml
Lines 144-153 Link Here
144
domoticz/Config/devolo/mt2652.xml
156
domoticz/Config/devolo/mt2652.xml
145
domoticz/Config/devolo/mt2653.xml
157
domoticz/Config/devolo/mt2653.xml
146
domoticz/Config/devolo/mt2756.xml
158
domoticz/Config/devolo/mt2756.xml
159
domoticz/Config/devolo/mt2759.xml
160
domoticz/Config/devolo/mt2760.xml
161
domoticz/Config/devolo/mt2761.xml
147
domoticz/Config/devolo/rs014G0159.xml
162
domoticz/Config/devolo/rs014G0159.xml
148
domoticz/Config/diehlcontrols/766366.xml
163
domoticz/Config/diehlcontrols/766366.xml
149
domoticz/Config/dlink/dch-z110.xml
164
domoticz/Config/dlink/dch-z110.xml
150
domoticz/Config/dlink/dch-z120.xml
165
domoticz/Config/dlink/dch-z120.xml
166
domoticz/Config/dlink/dch-z210.xml
151
domoticz/Config/dlink/dch-z510.xml
167
domoticz/Config/dlink/dch-z510.xml
152
domoticz/Config/dome/0002.xml
168
domoticz/Config/dome/0002.xml
153
domoticz/Config/dome/0083.xml
169
domoticz/Config/dome/0083.xml
Lines 156-162 Link Here
156
domoticz/Config/dome/0087.xml
172
domoticz/Config/dome/0087.xml
157
domoticz/Config/dome/0088.xml
173
domoticz/Config/dome/0088.xml
158
domoticz/Config/dome/0101.xml
174
domoticz/Config/dome/0101.xml
175
domoticz/Config/dome/0104.xml
159
domoticz/Config/dome/0201.xml
176
domoticz/Config/dome/0201.xml
177
domoticz/Config/dome/dmex1.xml
160
domoticz/Config/domitech/zb22uk.xml
178
domoticz/Config/domitech/zb22uk.xml
161
domoticz/Config/domitech/ze27eu.xml
179
domoticz/Config/domitech/ze27eu.xml
162
domoticz/Config/domux/DX1CA-Z.xml
180
domoticz/Config/domux/DX1CA-Z.xml
Lines 168-173 Link Here
168
domoticz/Config/domux/DX1WL-Z.xml
186
domoticz/Config/domux/DX1WL-Z.xml
169
domoticz/Config/domux/DX2SK-Z.xml
187
domoticz/Config/domux/DX2SK-Z.xml
170
domoticz/Config/dragontech/wd-100.xml
188
domoticz/Config/dragontech/wd-100.xml
189
domoticz/Config/duco/DucoBox.xml
190
domoticz/Config/duco/Ducotronic_CO-RH_sensor.xml
171
domoticz/Config/duwi/05458.xml
191
domoticz/Config/duwi/05458.xml
172
domoticz/Config/duwi/ZWES1000.xml
192
domoticz/Config/duwi/ZWES1000.xml
173
domoticz/Config/duwi/ZWESJ300.xml
193
domoticz/Config/duwi/ZWESJ300.xml
Lines 175-186 Link Here
175
domoticz/Config/duwi/zw-zdan-300.xml
195
domoticz/Config/duwi/zw-zdan-300.xml
176
domoticz/Config/duwi/zwfb.xml
196
domoticz/Config/duwi/zwfb.xml
177
domoticz/Config/duwi/zwws.xml
197
domoticz/Config/duwi/zwws.xml
198
domoticz/Config/ecodim/0.7.xml
178
domoticz/Config/ecolink/doorwindow.xml
199
domoticz/Config/ecolink/doorwindow.xml
179
domoticz/Config/ecolink/firefighter.xml
200
domoticz/Config/ecolink/firefighter.xml
180
domoticz/Config/ecolink/floodfreeze.xml
201
domoticz/Config/ecolink/floodfreeze.xml
181
domoticz/Config/ecolink/motion.xml
202
domoticz/Config/ecolink/motion.xml
182
domoticz/Config/ecolink/sensor.xml
203
domoticz/Config/ecolink/sensor.xml
183
domoticz/Config/ecolink/tiltsensor.xml
204
domoticz/Config/ecolink/tiltsensor.xml
205
domoticz/Config/econet/ezw1204.xml
184
domoticz/Config/electronicsolutions/dbmz.xml
206
domoticz/Config/electronicsolutions/dbmz.xml
185
domoticz/Config/enblink/ss201-us-w_1308.xml
207
domoticz/Config/enblink/ss201-us-w_1308.xml
186
domoticz/Config/enerwave/zw15rmplus.xml
208
domoticz/Config/enerwave/zw15rmplus.xml
Lines 192-200 Link Here
192
domoticz/Config/enerwave/zwn-sc7.xml
214
domoticz/Config/enerwave/zwn-sc7.xml
193
domoticz/Config/enerwave/zwnrsm1plus.xml
215
domoticz/Config/enerwave/zwnrsm1plus.xml
194
domoticz/Config/enerwave/zwnrsm2plus.xml
216
domoticz/Config/enerwave/zwnrsm2plus.xml
217
domoticz/Config/eurotronic/eur_airquality.xml
195
domoticz/Config/eurotronic/eur_cometz.xml
218
domoticz/Config/eurotronic/eur_cometz.xml
196
domoticz/Config/eurotronic/eur_spiritz.xml
219
domoticz/Config/eurotronic/eur_spiritz.xml
197
domoticz/Config/eurotronic/eur_stellaz.xml
220
domoticz/Config/eurotronic/eur_stellaz.xml
221
domoticz/Config/eurotronic/eur_temphumin.xml
198
domoticz/Config/everspring/ad146.xml
222
domoticz/Config/everspring/ad146.xml
199
domoticz/Config/everspring/ad147.xml
223
domoticz/Config/everspring/ad147.xml
200
domoticz/Config/everspring/an145.xml
224
domoticz/Config/everspring/an145.xml
Lines 225-231 Link Here
225
domoticz/Config/evolve/lrm-as.xml
249
domoticz/Config/evolve/lrm-as.xml
226
domoticz/Config/evolve/lsm-15.xml
250
domoticz/Config/evolve/lsm-15.xml
227
domoticz/Config/evolve/ltm-5.xml
251
domoticz/Config/evolve/ltm-5.xml
252
domoticz/Config/evolve/t-100.xml
228
domoticz/Config/fakro/arz.xml
253
domoticz/Config/fakro/arz.xml
254
domoticz/Config/fakro/arzsolar.xml
255
domoticz/Config/fakro/zrh12.xml
229
domoticz/Config/fakro/zwp10.xml
256
domoticz/Config/fakro/zwp10.xml
230
domoticz/Config/fakro/zwrs.xml
257
domoticz/Config/fakro/zwrs.xml
231
domoticz/Config/fakro/zws12.xml
258
domoticz/Config/fakro/zws12.xml
Lines 247-274 Link Here
247
domoticz/Config/fibaro/fgpb101.xml
274
domoticz/Config/fibaro/fgpb101.xml
248
domoticz/Config/fibaro/fgr221.xml
275
domoticz/Config/fibaro/fgr221.xml
249
domoticz/Config/fibaro/fgr223.xml
276
domoticz/Config/fibaro/fgr223.xml
277
domoticz/Config/fibaro/fgrgbw442.xml
250
domoticz/Config/fibaro/fgrgbwm441.xml
278
domoticz/Config/fibaro/fgrgbwm441.xml
251
domoticz/Config/fibaro/fgrm222.xml
279
domoticz/Config/fibaro/fgrm222.xml
252
domoticz/Config/fibaro/fgs211.xml
280
domoticz/Config/fibaro/fgs211.xml
253
domoticz/Config/fibaro/fgs212.xml
281
domoticz/Config/fibaro/fgs212.xml
254
domoticz/Config/fibaro/fgs213.xml
282
domoticz/Config/fibaro/fgs213.xml
283
domoticz/Config/fibaro/fgs214.xml
255
domoticz/Config/fibaro/fgs221.xml
284
domoticz/Config/fibaro/fgs221.xml
256
domoticz/Config/fibaro/fgs222.xml
285
domoticz/Config/fibaro/fgs222.xml
257
domoticz/Config/fibaro/fgs223.xml
286
domoticz/Config/fibaro/fgs223.xml
287
domoticz/Config/fibaro/fgs224.xml
258
domoticz/Config/fibaro/fgsd002.xml
288
domoticz/Config/fibaro/fgsd002.xml
259
domoticz/Config/fibaro/fgss101.xml
289
domoticz/Config/fibaro/fgss101.xml
260
domoticz/Config/fibaro/fgt001.xml
290
domoticz/Config/fibaro/fgt001.xml
261
domoticz/Config/fibaro/fgwd111.xml
291
domoticz/Config/fibaro/fgwd111.xml
262
domoticz/Config/fibaro/fgwds221.xml
292
domoticz/Config/fibaro/fgwds221.xml
293
domoticz/Config/fibaro/fgwds221ss.xml
263
domoticz/Config/fibaro/fgwoe.xml
294
domoticz/Config/fibaro/fgwoe.xml
295
domoticz/Config/fibaro/fgwpb121.xml
264
domoticz/Config/fibaro/fgwpe.xml
296
domoticz/Config/fibaro/fgwpe.xml
265
domoticz/Config/fibaro/fgwpfzw5.xml
297
domoticz/Config/fibaro/fgwpfzw5.xml
266
domoticz/Config/fibaro/fgwpg111.xml
298
domoticz/Config/fibaro/fgwpg111.xml
267
domoticz/Config/fibaro/fgwr111.xml
299
domoticz/Config/fibaro/fgwr111.xml
300
domoticz/Config/firstalert/zcombo-g.xml
268
domoticz/Config/firstalert/zcombo.xml
301
domoticz/Config/firstalert/zcombo.xml
302
domoticz/Config/firstalert/zsmoke.xml
269
domoticz/Config/followgood/swz-1002.xml
303
domoticz/Config/followgood/swz-1002.xml
270
domoticz/Config/forest/fs2z5232000002.xml
304
domoticz/Config/forest/fs2z5232000002.xml
271
domoticz/Config/fortrezz/fmi.xml
305
domoticz/Config/fortrezz/fmi.xml
306
domoticz/Config/fortrezz/fts05p.xml
272
domoticz/Config/fortrezz/gdc1_fortrezz_1501.xml
307
domoticz/Config/fortrezz/gdc1_fortrezz_1501.xml
273
domoticz/Config/fortrezz/mimo2plus.xml
308
domoticz/Config/fortrezz/mimo2plus.xml
274
domoticz/Config/fortrezz/mimolite.xml
309
domoticz/Config/fortrezz/mimolite.xml
Lines 280-301 Link Here
280
domoticz/Config/frostdale/fdn2311.xml
315
domoticz/Config/frostdale/fdn2311.xml
281
domoticz/Config/frostdale/fdn2nxx.xml
316
domoticz/Config/frostdale/fdn2nxx.xml
282
domoticz/Config/ge/12719-plugin-switch.xml
317
domoticz/Config/ge/12719-plugin-switch.xml
318
domoticz/Config/ge/12720.xml
283
domoticz/Config/ge/12724-dimmer.xml
319
domoticz/Config/ge/12724-dimmer.xml
284
domoticz/Config/ge/12727.xml
320
domoticz/Config/ge/12727.xml
321
domoticz/Config/ge/14280-plugin-dimmer.xml
285
domoticz/Config/ge/14282-plugin-switch.xml
322
domoticz/Config/ge/14282-plugin-switch.xml
286
domoticz/Config/ge/14284.xml
323
domoticz/Config/ge/14284.xml
324
domoticz/Config/ge/14285.xml
287
domoticz/Config/ge/14288-outlet.xml
325
domoticz/Config/ge/14288-outlet.xml
288
domoticz/Config/ge/14291-switch.xml
326
domoticz/Config/ge/14291-switch.xml
289
domoticz/Config/ge/14292-toggle-switch.xml
327
domoticz/Config/ge/14292-toggle-switch.xml
290
domoticz/Config/ge/14294-dimmer.xml
328
domoticz/Config/ge/14294-dimmer.xml
291
domoticz/Config/ge/14295-dimmer-toggle.xml
329
domoticz/Config/ge/14295-dimmer-toggle.xml
330
domoticz/Config/ge/14298.xml
331
domoticz/Config/ge/14322-dimmer-toggle.xml
292
domoticz/Config/ge/26931-motion-switch.xml
332
domoticz/Config/ge/26931-motion-switch.xml
333
domoticz/Config/ge/26932-motion-dimmer.xml
293
domoticz/Config/ge/26933-motion-dimmer.xml
334
domoticz/Config/ge/26933-motion-dimmer.xml
294
domoticz/Config/ge/28167-plugin-dimmer.xml
335
domoticz/Config/ge/28167-plugin-dimmer.xml
295
domoticz/Config/ge/28169-plugin-switch.xml
336
domoticz/Config/ge/28169-plugin-switch.xml
296
domoticz/Config/ge/45604.xml
337
domoticz/Config/ge/45604.xml
297
domoticz/Config/ge/46201-switch.xml
338
domoticz/Config/ge/46201-switch.xml
339
domoticz/Config/ge/46202-switch.xml
298
domoticz/Config/ge/46203-dimmer.xml
340
domoticz/Config/ge/46203-dimmer.xml
341
domoticz/Config/ge/46204-dimmer-toggle.xml
299
domoticz/Config/ge/dimmer.xml
342
domoticz/Config/ge/dimmer.xml
300
domoticz/Config/ge/dimmer_module.xml
343
domoticz/Config/ge/dimmer_module.xml
301
domoticz/Config/ge/hinge-pin.xml
344
domoticz/Config/ge/hinge-pin.xml
Lines 305-322 Link Here
305
domoticz/Config/ge/zw4001-switch.xml
348
domoticz/Config/ge/zw4001-switch.xml
306
domoticz/Config/ge/zw6302.xml
349
domoticz/Config/ge/zw6302.xml
307
domoticz/Config/gocontrol/GC-TBZ48L.xml
350
domoticz/Config/gocontrol/GC-TBZ48L.xml
351
domoticz/Config/goodway/td14010.xml
308
domoticz/Config/gr/gr-302n.xml
352
domoticz/Config/gr/gr-302n.xml
309
domoticz/Config/gr/gr105.xml
353
domoticz/Config/gr/gr105.xml
310
domoticz/Config/gr/gr105n.xml
354
domoticz/Config/gr/gr105n.xml
311
domoticz/Config/gr/grb3.xml
355
domoticz/Config/gr/grb3.xml
312
domoticz/Config/graber/brz1.xml
356
domoticz/Config/graber/brz1.xml
313
domoticz/Config/graber/csz1.xml
357
domoticz/Config/graber/csz1.xml
358
domoticz/Config/graber/mcz1.xml
314
domoticz/Config/graber/rsz1.xml
359
domoticz/Config/graber/rsz1.xml
315
domoticz/Config/graber/vcz1.xml
360
domoticz/Config/graber/vcz1.xml
316
domoticz/Config/greenwave/gs1110-1-gr-1.xml
361
domoticz/Config/greenwave/gs1110-1-gr-1.xml
317
domoticz/Config/greenwave/powernode1.xml
362
domoticz/Config/greenwave/powernode1.xml
318
domoticz/Config/greenwave/powernode6.xml
363
domoticz/Config/greenwave/powernode6.xml
319
domoticz/Config/guardtec/gkw2000d.xml
364
domoticz/Config/guardtec/gkw2000d.xml
365
domoticz/Config/hab/iblindsV2.xml
366
domoticz/Config/hab/iblindsV3.xml
320
domoticz/Config/hank/hkzw-dws01.xml
367
domoticz/Config/hank/hkzw-dws01.xml
321
domoticz/Config/hank/hkzw-fld01.xml
368
domoticz/Config/hank/hkzw-fld01.xml
322
domoticz/Config/hank/hkzw-ms01.xml
369
domoticz/Config/hank/hkzw-ms01.xml
Lines 326-331 Link Here
326
domoticz/Config/hank/hkzw-so01-smartplug.xml
373
domoticz/Config/hank/hkzw-so01-smartplug.xml
327
domoticz/Config/hank/hkzw-so03.xml
374
domoticz/Config/hank/hkzw-so03.xml
328
domoticz/Config/hank/hkzw-so05-smartplug.xml
375
domoticz/Config/hank/hkzw-so05-smartplug.xml
376
domoticz/Config/hank/hkzw-so08-smartplug.xml
329
domoticz/Config/hank/scenecontroller1.xml
377
domoticz/Config/hank/scenecontroller1.xml
330
domoticz/Config/hank/scenecontroller4.xml
378
domoticz/Config/hank/scenecontroller4.xml
331
domoticz/Config/heiman/HS1CA-Z.xml
379
domoticz/Config/heiman/HS1CA-Z.xml
Lines 337-342 Link Here
337
domoticz/Config/heiman/HS1WL-Z.xml
385
domoticz/Config/heiman/HS1WL-Z.xml
338
domoticz/Config/heiman/HS2SK-Z.xml
386
domoticz/Config/heiman/HS2SK-Z.xml
339
domoticz/Config/heiman/HS2WD-Z.xml
387
domoticz/Config/heiman/HS2WD-Z.xml
388
domoticz/Config/heltun/he-ft01.xml
389
domoticz/Config/heltun/he-ht01.xml
340
domoticz/Config/heltun/he-zw-sw-5a-1.xml
390
domoticz/Config/heltun/he-zw-sw-5a-1.xml
341
domoticz/Config/heltun/he-zw-therm-fc1.xml
391
domoticz/Config/heltun/he-zw-therm-fc1.xml
342
domoticz/Config/heltun/he-zw-therm-fl2.xml
392
domoticz/Config/heltun/he-zw-therm-fl2.xml
Lines 354-361 Link Here
354
domoticz/Config/homeseer/hsm100.xml
404
domoticz/Config/homeseer/hsm100.xml
355
domoticz/Config/homeseer/hsm200.xml
405
domoticz/Config/homeseer/hsm200.xml
356
domoticz/Config/homeseer/ztroller.xml
406
domoticz/Config/homeseer/ztroller.xml
407
domoticz/Config/honeywell/2681-plugin-dimmer.xml
408
domoticz/Config/honeywell/3830-zw3107.xml
409
domoticz/Config/honeywell/39348-ZW4005.xml
357
domoticz/Config/honeywell/39348-zw4008.xml
410
domoticz/Config/honeywell/39348-zw4008.xml
411
domoticz/Config/honeywell/39349-ZW1002.xml
358
domoticz/Config/honeywell/39351-ZW3005.xml
412
domoticz/Config/honeywell/39351-ZW3005.xml
413
domoticz/Config/honeywell/39351-ZW3010.xml
414
domoticz/Config/honeywell/39357-ZW3004.xml
415
domoticz/Config/honeywell/39358-ZW4002.xml
416
domoticz/Config/honeywell/39449-ZW4106.xml
359
domoticz/Config/honeywell/lynx-touch-l5100.xml
417
domoticz/Config/honeywell/lynx-touch-l5100.xml
360
domoticz/Config/honeywell/th6320zw2003.xml
418
domoticz/Config/honeywell/th6320zw2003.xml
361
domoticz/Config/honeywell/th8320zw1000.xml
419
domoticz/Config/honeywell/th8320zw1000.xml
Lines 376-381 Link Here
376
domoticz/Config/ingersoll/dwzwave1.xml
434
domoticz/Config/ingersoll/dwzwave1.xml
377
domoticz/Config/inovelli/lzw30-sn.xml
435
domoticz/Config/inovelli/lzw30-sn.xml
378
domoticz/Config/inovelli/lzw30.xml
436
domoticz/Config/inovelli/lzw30.xml
437
domoticz/Config/inovelli/lzw31-sn.xml
438
domoticz/Config/inovelli/lzw31.xml
439
domoticz/Config/inovelli/lzw36.xml
440
domoticz/Config/inovelli/lzw40.xml
441
domoticz/Config/inovelli/lzw41.xml
442
domoticz/Config/inovelli/lzw42.xml
443
domoticz/Config/inovelli/lzw45.xml
444
domoticz/Config/inovelli/lzw60.xml
379
domoticz/Config/inovelli/nzw1201.xml
445
domoticz/Config/inovelli/nzw1201.xml
380
domoticz/Config/inovelli/nzw30.xml
446
domoticz/Config/inovelli/nzw30.xml
381
domoticz/Config/inovelli/nzw31.xml
447
domoticz/Config/inovelli/nzw31.xml
Lines 392-401 Link Here
392
domoticz/Config/jasco/45601.xml
458
domoticz/Config/jasco/45601.xml
393
domoticz/Config/kaipule/im20.xml
459
domoticz/Config/kaipule/im20.xml
394
domoticz/Config/kaipule/ix32.xml
460
domoticz/Config/kaipule/ix32.xml
461
domoticz/Config/kwikset/888.xml
462
domoticz/Config/kwikset/910.xml
395
domoticz/Config/kwikset/914c.xml
463
domoticz/Config/kwikset/914c.xml
464
domoticz/Config/kwikset/916.xml
396
domoticz/Config/kwikset/smartcode.xml
465
domoticz/Config/kwikset/smartcode.xml
397
domoticz/Config/leviton/dz15s.xml
466
domoticz/Config/leviton/dz15s.xml
398
domoticz/Config/leviton/dz6hd.xml
467
domoticz/Config/leviton/dz6hd.xml
468
domoticz/Config/leviton/dzpa1.xml
399
domoticz/Config/leviton/dzpd3.xml
469
domoticz/Config/leviton/dzpd3.xml
400
domoticz/Config/leviton/rzi10.xml
470
domoticz/Config/leviton/rzi10.xml
401
domoticz/Config/leviton/vrcpg.xml
471
domoticz/Config/leviton/vrcpg.xml
Lines 405-411 Link Here
405
domoticz/Config/leviton/vrf01.xml
475
domoticz/Config/leviton/vrf01.xml
406
domoticz/Config/leviton/vri06.xml
476
domoticz/Config/leviton/vri06.xml
407
domoticz/Config/leviton/vri10.xml
477
domoticz/Config/leviton/vri10.xml
478
domoticz/Config/leviton/vrpa1.xml
479
domoticz/Config/leviton/vrpd3.xml
408
domoticz/Config/leviton/vrs15.xml
480
domoticz/Config/leviton/vrs15.xml
481
domoticz/Config/leviton/zw15r.xml
482
domoticz/Config/leviton/zw4sf.xml
409
domoticz/Config/linear/GC-TBZ48.xml
483
domoticz/Config/linear/GC-TBZ48.xml
410
domoticz/Config/linear/LB60Z-1.xml
484
domoticz/Config/linear/LB60Z-1.xml
411
domoticz/Config/linear/PD300Z-2.xml
485
domoticz/Config/linear/PD300Z-2.xml
Lines 417-435 Link Here
417
domoticz/Config/linear/WD500Z5-1.xml
491
domoticz/Config/linear/WD500Z5-1.xml
418
domoticz/Config/linear/WS15Z-1.xml
492
domoticz/Config/linear/WS15Z-1.xml
419
domoticz/Config/linear/WT00Z-1.xml
493
domoticz/Config/linear/WT00Z-1.xml
494
domoticz/Config/linear/WT00Z5-1.xml
420
domoticz/Config/linear/gd00z-7.xml
495
domoticz/Config/linear/gd00z-7.xml
421
domoticz/Config/linear/ngd00z.xml
496
domoticz/Config/linear/ngd00z.xml
497
domoticz/Config/logicsoft/ZDB5100.xml
422
domoticz/Config/logicsoft/ZHC5002.xml
498
domoticz/Config/logicsoft/ZHC5002.xml
423
domoticz/Config/logicsoft/ZHC5010.xml
499
domoticz/Config/logicsoft/ZHC5010.xml
424
domoticz/Config/manufacturer_specific.xml
500
domoticz/Config/manufacturer_specific.xml
425
domoticz/Config/manufacturer_specific.xsd
501
domoticz/Config/manufacturer_specific.xsd
426
domoticz/Config/mcohome/a8-9.xml
502
domoticz/Config/mcohome/a8-9.xml
503
domoticz/Config/mcohome/mh10pm25wd.xml
427
domoticz/Config/mcohome/mh7h.xml
504
domoticz/Config/mcohome/mh7h.xml
428
domoticz/Config/mcohome/mh8fceu.xml
505
domoticz/Config/mcohome/mh8fceu.xml
506
domoticz/Config/mcohome/mh8fceu0803.xml
429
domoticz/Config/mcohome/mh9co2.xml
507
domoticz/Config/mcohome/mh9co2.xml
508
domoticz/Config/mcohome/mhdt411.xml
430
domoticz/Config/mcohome/mhp210.xml
509
domoticz/Config/mcohome/mhp210.xml
431
domoticz/Config/mcohome/mhp220.xml
510
domoticz/Config/mcohome/mhp220.xml
432
domoticz/Config/mcohome/mhp511.xml
511
domoticz/Config/mcohome/mhp511.xml
512
domoticz/Config/mcohome/mhs220.xml
433
domoticz/Config/mcohome/mhs311.xml
513
domoticz/Config/mcohome/mhs311.xml
434
domoticz/Config/mcohome/mhs312.xml
514
domoticz/Config/mcohome/mhs312.xml
435
domoticz/Config/mcohome/mhs314.xml
515
domoticz/Config/mcohome/mhs314.xml
Lines 443-449 Link Here
443
domoticz/Config/merten/508244.xml
523
domoticz/Config/merten/508244.xml
444
domoticz/Config/merten/50x5xx.xml
524
domoticz/Config/merten/50x5xx.xml
445
domoticz/Config/miyakawaelectric/me-d101.xml
525
domoticz/Config/miyakawaelectric/me-d101.xml
526
domoticz/Config/namron/1402756.xml
527
domoticz/Config/namron/4512710.xml
528
domoticz/Config/namron/4512712.xml
529
domoticz/Config/namron/4512714.xml
530
domoticz/Config/namron/4512715.xml
531
domoticz/Config/namron/4512720.xml
532
domoticz/Config/namron/4512724.xml
533
domoticz/Config/nei/ms11z.xml
446
domoticz/Config/nexia/db100z.xml
534
domoticz/Config/nexia/db100z.xml
535
domoticz/Config/nexia/th100nx.xml
447
domoticz/Config/nodon/asp3100SmartPlug.xml
536
domoticz/Config/nodon/asp3100SmartPlug.xml
448
domoticz/Config/nodon/crc3100OctanRemote.xml
537
domoticz/Config/nodon/crc3100OctanRemote.xml
449
domoticz/Config/nodon/crc360xSofremote.xml
538
domoticz/Config/nodon/crc360xSofremote.xml
Lines 454-459 Link Here
454
domoticz/Config/northq/nq92021.xml
543
domoticz/Config/northq/nq92021.xml
455
domoticz/Config/oomi/ft100.xml
544
domoticz/Config/oomi/ft100.xml
456
domoticz/Config/oomi/ft111.xml
545
domoticz/Config/oomi/ft111.xml
546
domoticz/Config/oomi/ft112.xml
547
domoticz/Config/oomi/ft118.xml
457
domoticz/Config/options.xml
548
domoticz/Config/options.xml
458
domoticz/Config/options.xsd
549
domoticz/Config/options.xsd
459
domoticz/Config/permundo/psc132zw.xml
550
domoticz/Config/permundo/psc132zw.xml
Lines 494-508 Link Here
494
domoticz/Config/popp/123658.xml
585
domoticz/Config/popp/123658.xml
495
domoticz/Config/popp/700045.xml
586
domoticz/Config/popp/700045.xml
496
domoticz/Config/popp/700168.xml
587
domoticz/Config/popp/700168.xml
588
domoticz/Config/popp/700342.xml
497
domoticz/Config/popp/700397.xml
589
domoticz/Config/popp/700397.xml
498
domoticz/Config/popp/700793.xml
590
domoticz/Config/popp/700793.xml
591
domoticz/Config/popp/701202.xml
499
domoticz/Config/popp/dwt.xml
592
domoticz/Config/popp/dwt.xml
500
domoticz/Config/popp/smoke-detector.xml
593
domoticz/Config/popp/smoke-detector.xml
501
domoticz/Config/popp/solar-siren.xml
594
domoticz/Config/popp/solar-siren.xml
502
domoticz/Config/popp/zweather.xml
595
domoticz/Config/popp/zweather.xml
503
domoticz/Config/prowell/zw-702.xml
596
domoticz/Config/prowell/zw-702.xml
597
domoticz/Config/q-light/q-light_puck.xml
598
domoticz/Config/q-light/q-light_zerodim.xml
599
domoticz/Config/q-light/q-light_zerodim_2pol.xml
504
domoticz/Config/qees/reto-dimmer-plus.xml
600
domoticz/Config/qees/reto-dimmer-plus.xml
505
domoticz/Config/qees/reto-plugin-switch.xml
601
domoticz/Config/qees/reto-plugin-switch.xml
602
domoticz/Config/qolsys/qz2140-840.xml
506
domoticz/Config/qubino/ZMNHAA2.xml
603
domoticz/Config/qubino/ZMNHAA2.xml
507
domoticz/Config/qubino/ZMNHADx.xml
604
domoticz/Config/qubino/ZMNHADx.xml
508
domoticz/Config/qubino/ZMNHBA2.xml
605
domoticz/Config/qubino/ZMNHBA2.xml
Lines 520-525 Link Here
520
domoticz/Config/qubino/ZMNHKDx.xml
617
domoticz/Config/qubino/ZMNHKDx.xml
521
domoticz/Config/qubino/ZMNHLAx.xml
618
domoticz/Config/qubino/ZMNHLAx.xml
522
domoticz/Config/qubino/ZMNHLDx.xml
619
domoticz/Config/qubino/ZMNHLDx.xml
620
domoticz/Config/qubino/ZMNHMDx.xml
523
domoticz/Config/qubino/ZMNHNDx.xml
621
domoticz/Config/qubino/ZMNHNDx.xml
524
domoticz/Config/qubino/ZMNHODx.xml
622
domoticz/Config/qubino/ZMNHODx.xml
525
domoticz/Config/qubino/ZMNHQDx.xml
623
domoticz/Config/qubino/ZMNHQDx.xml
Lines 532-537 Link Here
532
domoticz/Config/qubino/ZMNHXDx.xml
630
domoticz/Config/qubino/ZMNHXDx.xml
533
domoticz/Config/qubino/ZMNHYDx.xml
631
domoticz/Config/qubino/ZMNHYDx.xml
534
domoticz/Config/qubino/ZMNHZDx.xml
632
domoticz/Config/qubino/ZMNHZDx.xml
633
domoticz/Config/qubino/ZMNKADx.xml
535
domoticz/Config/qubino/ZMNKIDx.xml
634
domoticz/Config/qubino/ZMNKIDx.xml
536
domoticz/Config/quby/qb2.xml
635
domoticz/Config/quby/qb2.xml
537
domoticz/Config/rcs/em52-zw.xml
636
domoticz/Config/rcs/em52-zw.xml
Lines 549-554 Link Here
549
domoticz/Config/remotec/zxt-120.xml
648
domoticz/Config/remotec/zxt-120.xml
550
domoticz/Config/remotec/zxt-310.xml
649
domoticz/Config/remotec/zxt-310.xml
551
domoticz/Config/remotec/zxt-600.xml
650
domoticz/Config/remotec/zxt-600.xml
651
domoticz/Config/ring/PIR-SS.xml
652
domoticz/Config/ring/contact-sensor-v2.xml
653
domoticz/Config/ring/motion-detector-v2.xml
552
domoticz/Config/schlage/BE468.xml
654
domoticz/Config/schlage/BE468.xml
553
domoticz/Config/schlage/BE468ZP.xml
655
domoticz/Config/schlage/BE468ZP.xml
554
domoticz/Config/schlage/BE469.xml
656
domoticz/Config/schlage/BE469.xml
Lines 562-577 Link Here
562
domoticz/Config/sercomm/sw-clp01-eu.xml
664
domoticz/Config/sercomm/sw-clp01-eu.xml
563
domoticz/Config/shenzen_neo/ls01ch.xml
665
domoticz/Config/shenzen_neo/ls01ch.xml
564
domoticz/Config/shenzen_neo/ls02ch.xml
666
domoticz/Config/shenzen_neo/ls02ch.xml
667
domoticz/Config/shenzen_neo/ls03ch.xml
565
domoticz/Config/shenzen_neo/nas-ab01z.xml
668
domoticz/Config/shenzen_neo/nas-ab01z.xml
669
domoticz/Config/shenzen_neo/nas-cs01z.xml
566
domoticz/Config/shenzen_neo/nas-ds01z.xml
670
domoticz/Config/shenzen_neo/nas-ds01z.xml
567
domoticz/Config/shenzen_neo/nas-pd01z.xml
671
domoticz/Config/shenzen_neo/nas-pd01z.xml
568
domoticz/Config/shenzen_neo/nas-pd02z.xml
672
domoticz/Config/shenzen_neo/nas-pd02z.xml
673
domoticz/Config/shenzen_neo/nas-pd03z.xml
569
domoticz/Config/shenzen_neo/nas-rc01z.xml
674
domoticz/Config/shenzen_neo/nas-rc01z.xml
675
domoticz/Config/shenzen_neo/nas-sc03ze.xml
570
domoticz/Config/shenzen_neo/nas-wr01z.xml
676
domoticz/Config/shenzen_neo/nas-wr01z.xml
571
domoticz/Config/shenzen_neo/nas-wr01ze.xml
677
domoticz/Config/shenzen_neo/nas-wr01ze.xml
572
domoticz/Config/shenzen_neo/nas-ws02z.xml
678
domoticz/Config/shenzen_neo/nas-ws02z.xml
679
domoticz/Config/shenzen_saykey/sk-3007-05.xml
680
domoticz/Config/simon/10002020-13X.xml
573
domoticz/Config/simon/10002034-13X.xml
681
domoticz/Config/simon/10002034-13X.xml
574
domoticz/Config/simon/10002041-13X.xml
682
domoticz/Config/simon/10002041-13X.xml
683
domoticz/Config/simon/10002080-13X.xml
575
domoticz/Config/smartthings/pgc401m.xml
684
domoticz/Config/smartthings/pgc401m.xml
576
domoticz/Config/smartthings/sth-eth200.xml
685
domoticz/Config/smartthings/sth-eth200.xml
577
domoticz/Config/somfy/1811265_ZRTSI.xml
686
domoticz/Config/somfy/1811265_ZRTSI.xml
Lines 580-598 Link Here
580
domoticz/Config/steinel/rs-led-d2.xml
689
domoticz/Config/steinel/rs-led-d2.xml
581
domoticz/Config/steinel/xled-home-2.xml
690
domoticz/Config/steinel/xled-home-2.xml
582
domoticz/Config/stelpro/stzw402.xml
691
domoticz/Config/stelpro/stzw402.xml
692
domoticz/Config/sunricher/srzv9001k12dimz4.xml
693
domoticz/Config/sunricher/srzv9001k12dimz5.xml
694
domoticz/Config/sunricher/srzv9001k2dim.xml
695
domoticz/Config/sunricher/srzv9001k4dim.xml
696
domoticz/Config/sunricher/srzv9001k4dimg2.xml
583
domoticz/Config/sunricher/srzv9001k8.xml
697
domoticz/Config/sunricher/srzv9001k8.xml
584
domoticz/Config/sunricher/srzv9001t4dimeu.xml
698
domoticz/Config/sunricher/srzv9001t4dimeu.xml
699
domoticz/Config/sunricher/srzv9001tccteu.xml
585
domoticz/Config/sunricher/srzv9003t4rgbweu.xml
700
domoticz/Config/sunricher/srzv9003t4rgbweu.xml
701
domoticz/Config/sunricher/srzv9100aa.xml
586
domoticz/Config/sunricher/srzv9101sachpeu.xml
702
domoticz/Config/sunricher/srzv9101sachpeu.xml
703
domoticz/Config/sunricher/srzv9101sachpswitch.xml
704
domoticz/Config/sunricher/zv2835rac.xml
587
domoticz/Config/sunricher/zv9101.xml
705
domoticz/Config/sunricher/zv9101.xml
706
domoticz/Config/sunricher/zv9101fa.xml
588
domoticz/Config/swiid/swiidinter.xml
707
domoticz/Config/swiid/swiidinter.xml
589
domoticz/Config/swiid/swiidplug.xml
708
domoticz/Config/swiid/swiidplug.xml
709
domoticz/Config/technisat/03009496.xml
710
domoticz/Config/technisat/03009497.xml
711
domoticz/Config/technisat/03009499.xml
590
domoticz/Config/telldus/TZWP102.xml
712
domoticz/Config/telldus/TZWP102.xml
591
domoticz/Config/telldus/tzdw100.xml
713
domoticz/Config/telldus/tzdw100.xml
592
domoticz/Config/telldus/tzwp100.xml
714
domoticz/Config/telldus/tzwp100.xml
593
domoticz/Config/there/800z.xml
715
domoticz/Config/there/800z.xml
716
domoticz/Config/thermofloor/heatit-zdim.xml
717
domoticz/Config/thermofloor/heatit021-v1.92.xml
594
domoticz/Config/thermofloor/heatit021.xml
718
domoticz/Config/thermofloor/heatit021.xml
595
domoticz/Config/thermofloor/heatit056.xml
719
domoticz/Config/thermofloor/heatit056.xml
720
domoticz/Config/thermofloor/heatit058.xml
721
domoticz/Config/thermofloor/heatit204.xml
722
domoticz/Config/thermofloor/heatit20a.xml
723
domoticz/Config/thermofloor/heatitz4.xml
724
domoticz/Config/thermofloor/heatitz8.xml
725
domoticz/Config/thermofloor/heatitzm.xml
596
domoticz/Config/trane/TZEMT400AB32MAA.xml
726
domoticz/Config/trane/TZEMT400AB32MAA.xml
597
domoticz/Config/trane/TZEMT400BB32MAA.xml
727
domoticz/Config/trane/TZEMT400BB32MAA.xml
598
domoticz/Config/trane/TZEMT524AA21MA.xml
728
domoticz/Config/trane/TZEMT524AA21MA.xml
Lines 642-673 Link Here
642
domoticz/Config/wenzhou/tz68.xml
772
domoticz/Config/wenzhou/tz68.xml
643
domoticz/Config/wenzhou/tz69.xml
773
domoticz/Config/wenzhou/tz69.xml
644
domoticz/Config/wenzhou/tz74.xml
774
domoticz/Config/wenzhou/tz74.xml
775
domoticz/Config/wenzhou/tz77.xml
776
domoticz/Config/wenzhou/tz78.xml
645
domoticz/Config/wenzhou/tz79.xml
777
domoticz/Config/wenzhou/tz79.xml
646
domoticz/Config/wenzhou/tz88.xml
778
domoticz/Config/wenzhou/tz88.xml
779
domoticz/Config/wenzhou/tze96.xml
647
domoticz/Config/widom/DRY.xml
780
domoticz/Config/widom/DRY.xml
648
domoticz/Config/widom/UBS104.xml
781
domoticz/Config/widom/UBS104.xml
649
domoticz/Config/widom/UME304C_S.xml
782
domoticz/Config/widom/UME304C_S.xml
783
domoticz/Config/widom/UMS2.xml
650
domoticz/Config/widom/WDS.xml
784
domoticz/Config/widom/WDS.xml
785
domoticz/Config/widom/WDS2.xml
786
domoticz/Config/widom/WSP.xml
787
domoticz/Config/widom/WTED.xml
788
domoticz/Config/wink/wnk-mot1.xml
789
domoticz/Config/wink/wnk-sir1p.xml
651
domoticz/Config/zipato/MiniKeypad.xml
790
domoticz/Config/zipato/MiniKeypad.xml
652
domoticz/Config/zipato/RGBBulb.xml
791
domoticz/Config/zipato/RGBBulb.xml
653
domoticz/Config/zipato/RGBBulb2.xml
792
domoticz/Config/zipato/RGBBulb2.xml
793
domoticz/Config/zipato/ne-nas-ab02z.xml
654
domoticz/Config/zipato/pan04.xml
794
domoticz/Config/zipato/pan04.xml
655
domoticz/Config/zipato/vszd2102.xml
795
domoticz/Config/zipato/vszd2102.xml
656
domoticz/Config/zipato/zp3102.xml
796
domoticz/Config/zipato/zp3102.xml
657
domoticz/Config/zooz/zen06.xml
797
domoticz/Config/zooz/zen06.xml
658
domoticz/Config/zooz/zen07.xml
798
domoticz/Config/zooz/zen07.xml
659
domoticz/Config/zooz/zen15.xml
799
domoticz/Config/zooz/zen15.xml
800
domoticz/Config/zooz/zen16.xml
801
domoticz/Config/zooz/zen17.xml
660
domoticz/Config/zooz/zen20.xml
802
domoticz/Config/zooz/zen20.xml
661
domoticz/Config/zooz/zen20v2.xml
803
domoticz/Config/zooz/zen20v2.xml
662
domoticz/Config/zooz/zen21.xml
804
domoticz/Config/zooz/zen21.xml
663
domoticz/Config/zooz/zen21v2.xml
805
domoticz/Config/zooz/zen21v3.xml
664
domoticz/Config/zooz/zen22.xml
806
domoticz/Config/zooz/zen22.xml
665
domoticz/Config/zooz/zen22v2.xml
807
domoticz/Config/zooz/zen22v2.xml
666
domoticz/Config/zooz/zen23.xml
808
domoticz/Config/zooz/zen23.xml
809
domoticz/Config/zooz/zen23v3.xml
667
domoticz/Config/zooz/zen24.xml
810
domoticz/Config/zooz/zen24.xml
811
domoticz/Config/zooz/zen24v2.xml
668
domoticz/Config/zooz/zen25.xml
812
domoticz/Config/zooz/zen25.xml
669
domoticz/Config/zooz/zen26.xml
813
domoticz/Config/zooz/zen26.xml
670
domoticz/Config/zooz/zen27.xml
814
domoticz/Config/zooz/zen27.xml
815
domoticz/Config/zooz/zen30.xml
816
domoticz/Config/zooz/zen31.xml
817
domoticz/Config/zooz/zen32.xml
818
domoticz/Config/zooz/zen34.xml
819
domoticz/Config/zooz/zen71.xml
820
domoticz/Config/zooz/zen72.xml
821
domoticz/Config/zooz/zen76.xml
822
domoticz/Config/zooz/zen77.xml
671
domoticz/Config/zooz/zse08.xml
823
domoticz/Config/zooz/zse08.xml
672
domoticz/Config/zooz/zse09.xml
824
domoticz/Config/zooz/zse09.xml
673
domoticz/Config/zooz/zse18.xml
825
domoticz/Config/zooz/zse18.xml
Lines 691-730 Link Here
691
domoticz/Config/zwave.me/iTemp.xml
843
domoticz/Config/zwave.me/iTemp.xml
692
domoticz/Config/zwave.me/kfob.xml
844
domoticz/Config/zwave.me/kfob.xml
693
domoticz/Config/zwave.me/popp_kfob-c.xml
845
domoticz/Config/zwave.me/popp_kfob-c.xml
846
domoticz/Config/zwave.me/razberry.xml
694
domoticz/Config/zwave.me/zme_raz5.xml
847
domoticz/Config/zwave.me/zme_raz5.xml
695
domoticz/Config/zwave.me/zweather.xml
848
domoticz/Config/zwave.me/zweather.xml
696
domoticz/Config/zwcfg.xsd
849
domoticz/Config/zwcfg.xsd
697
domoticz/Config/zwp/PA-100.xml
850
domoticz/Config/zwp/PA-100.xml
698
domoticz/Config/zwp/WD-100.xml
851
domoticz/Config/zwp/WD-100.xml
699
domoticz/Config/zwscene.xsd
852
domoticz/Config/zwscene.xsd
700
domoticz/Config/eurotronic/eur_airquality.xml
701
domoticz/Config/eurotronic/eur_temphumin.xml
702
domoticz/Config/fortrezz/fts05p.xml
703
domoticz/Config/heltun/he-ft01.xml
704
domoticz/Config/heltun/he-ht01.xml
705
domoticz/Config/honeywell/39348-ZW4005.xml
706
domoticz/Config/honeywell/39351-ZW3010.xml
707
domoticz/Config/honeywell/39357-ZW3004.xml
708
domoticz/Config/inovelli/lzw31-sn.xml
709
domoticz/Config/inovelli/lzw31.xml
710
domoticz/Config/inovelli/lzw40.xml
711
domoticz/Config/inovelli/lzw41.xml
712
domoticz/Config/inovelli/lzw42.xml
713
domoticz/Config/logicsoft/ZDB5100.xml
714
domoticz/Config/popp/700342.xml
715
domoticz/Config/popp/701202.xml
716
domoticz/Config/qubino/ZMNKADx.xml
717
domoticz/Config/thermofloor/heatit-zdim.xml
718
domoticz/Config/thermofloor/heatitz8.xml
719
domoticz/Config/wenzhou/tz78.xml
720
domoticz/Config/widom/UMS2.xml
721
domoticz/Config/widom/WDS2.xml
722
domoticz/Config/widom/WSP.xml
723
domoticz/Config/widom/WTED.xml
724
domoticz/Config/zipato/ne-nas-ab02z.xml
725
domoticz/Config/zooz/zen16.xml
726
domoticz/Config/zooz/zen30.xml
727
domoticz/Config/zooz/zen31.xml
728
domoticz/History.txt
853
domoticz/History.txt
729
domoticz/License.txt
854
domoticz/License.txt
730
domoticz/domoticz
855
domoticz/domoticz
Lines 733-738 Link Here
733
domoticz/dzVents/documentation/README.wiki
858
domoticz/dzVents/documentation/README.wiki
734
domoticz/dzVents/documentation/dzvents-smoothing.png
859
domoticz/dzVents/documentation/dzvents-smoothing.png
735
domoticz/dzVents/documentation/history.md
860
domoticz/dzVents/documentation/history.md
861
domoticz/dzVents/documentation/history.wiki
736
domoticz/dzVents/documentation/pandoc.md
862
domoticz/dzVents/documentation/pandoc.md
737
domoticz/dzVents/runtime/Camera.lua
863
domoticz/dzVents/runtime/Camera.lua
738
domoticz/dzVents/runtime/CustomEvent.lua
864
domoticz/dzVents/runtime/CustomEvent.lua
Lines 741-747 Link Here
741
domoticz/dzVents/runtime/EventHelpers.lua
867
domoticz/dzVents/runtime/EventHelpers.lua
742
domoticz/dzVents/runtime/HTTPResponse.lua
868
domoticz/dzVents/runtime/HTTPResponse.lua
743
domoticz/dzVents/runtime/HistoricalStorage.lua
869
domoticz/dzVents/runtime/HistoricalStorage.lua
870
domoticz/dzVents/runtime/JSON.lua
744
domoticz/dzVents/runtime/Security.lua
871
domoticz/dzVents/runtime/Security.lua
872
domoticz/dzVents/runtime/ShellCommandResponse.lua
745
domoticz/dzVents/runtime/SystemEvent.lua
873
domoticz/dzVents/runtime/SystemEvent.lua
746
domoticz/dzVents/runtime/Time.lua
874
domoticz/dzVents/runtime/Time.lua
747
domoticz/dzVents/runtime/TimedCommand.lua
875
domoticz/dzVents/runtime/TimedCommand.lua
Lines 749-754 Link Here
749
domoticz/dzVents/runtime/Timer.lua
877
domoticz/dzVents/runtime/Timer.lua
750
domoticz/dzVents/runtime/Utils.lua
878
domoticz/dzVents/runtime/Utils.lua
751
domoticz/dzVents/runtime/Variable.lua
879
domoticz/dzVents/runtime/Variable.lua
880
domoticz/dzVents/runtime/XmlParser.lua
752
domoticz/dzVents/runtime/constants.lua
881
domoticz/dzVents/runtime/constants.lua
753
domoticz/dzVents/runtime/device-adapters/Adapters.lua
882
domoticz/dzVents/runtime/device-adapters/Adapters.lua
754
domoticz/dzVents/runtime/device-adapters/airquality_device.lua
883
domoticz/dzVents/runtime/device-adapters/airquality_device.lua
Lines 764-769 Link Here
764
domoticz/dzVents/runtime/device-adapters/gas_device.lua
893
domoticz/dzVents/runtime/device-adapters/gas_device.lua
765
domoticz/dzVents/runtime/device-adapters/generic_device.lua
894
domoticz/dzVents/runtime/device-adapters/generic_device.lua
766
domoticz/dzVents/runtime/device-adapters/group_device.lua
895
domoticz/dzVents/runtime/device-adapters/group_device.lua
896
domoticz/dzVents/runtime/device-adapters/hardware_device.lua
767
domoticz/dzVents/runtime/device-adapters/humidity_device.lua
897
domoticz/dzVents/runtime/device-adapters/humidity_device.lua
768
domoticz/dzVents/runtime/device-adapters/kodi_device.lua
898
domoticz/dzVents/runtime/device-adapters/kodi_device.lua
769
domoticz/dzVents/runtime/device-adapters/kwh_device.lua
899
domoticz/dzVents/runtime/device-adapters/kwh_device.lua
Lines 790-796 Link Here
790
domoticz/dzVents/runtime/device-adapters/temperature_humidity_barometer_device.lua
920
domoticz/dzVents/runtime/device-adapters/temperature_humidity_barometer_device.lua
791
domoticz/dzVents/runtime/device-adapters/temperature_humidity_device.lua
921
domoticz/dzVents/runtime/device-adapters/temperature_humidity_device.lua
792
domoticz/dzVents/runtime/device-adapters/text_device.lua
922
domoticz/dzVents/runtime/device-adapters/text_device.lua
923
domoticz/dzVents/runtime/device-adapters/thermostat_operating_state_device.lua
793
domoticz/dzVents/runtime/device-adapters/thermostat_setpoint_device.lua
924
domoticz/dzVents/runtime/device-adapters/thermostat_setpoint_device.lua
925
domoticz/dzVents/runtime/device-adapters/thermostat_type_3_device.lua
794
domoticz/dzVents/runtime/device-adapters/uv_device.lua
926
domoticz/dzVents/runtime/device-adapters/uv_device.lua
795
domoticz/dzVents/runtime/device-adapters/visibility_device.lua
927
domoticz/dzVents/runtime/device-adapters/visibility_device.lua
796
domoticz/dzVents/runtime/device-adapters/voltage_device.lua
928
domoticz/dzVents/runtime/device-adapters/voltage_device.lua
Lines 905-910 Link Here
905
domoticz/dzVents/runtime/tests/testfile
1037
domoticz/dzVents/runtime/tests/testfile
906
domoticz/dzVents/runtime/tests/tstData.lua
1038
domoticz/dzVents/runtime/tests/tstData.lua
907
domoticz/dzVents/runtime/todo.md
1039
domoticz/dzVents/runtime/todo.md
1040
domoticz/dzVents/runtime/xml2lua.lua
1041
domoticz/dzVents/runtime/xmlhandler/dom.lua
1042
domoticz/dzVents/runtime/xmlhandler/print.lua
1043
domoticz/dzVents/runtime/xmlhandler/tree.lua
908
domoticz/plugins/AwoxSMP/lib/__init__.py
1044
domoticz/plugins/AwoxSMP/lib/__init__.py
909
domoticz/plugins/AwoxSMP/lib/pySmartPlugSmpB16.py
1045
domoticz/plugins/AwoxSMP/lib/pySmartPlugSmpB16.py
910
domoticz/plugins/AwoxSMP/plugin.py
1046
domoticz/plugins/AwoxSMP/plugin.py
Lines 945-974 Link Here
945
domoticz/scripts/dzVents/examples/schedule fish pond pump.lua
1081
domoticz/scripts/dzVents/examples/schedule fish pond pump.lua
946
domoticz/scripts/dzVents/examples/simple room heating with hysteresis control.lua
1082
domoticz/scripts/dzVents/examples/simple room heating with hysteresis control.lua
947
domoticz/scripts/dzVents/examples/sunscreen.lua
1083
domoticz/scripts/dzVents/examples/sunscreen.lua
948
domoticz/scripts/dzVents/examples/templates/HTTPRequest.lua
949
domoticz/scripts/dzVents/examples/templates/global_data.lua
950
domoticz/scripts/dzVents/examples/templates/All.lua
951
domoticz/scripts/dzVents/examples/templates/Bare.lua
952
domoticz/scripts/dzVents/examples/templates/CustomEvents.lua
953
domoticz/scripts/dzVents/examples/templates/Device.lua
954
domoticz/scripts/dzVents/examples/templates/Group.lua
955
domoticz/scripts/dzVents/examples/templates/Scene.lua
956
domoticz/scripts/dzVents/examples/templates/Security.lua
957
domoticz/scripts/dzVents/examples/templates/System.lua
958
domoticz/scripts/dzVents/examples/templates/Timer.lua
959
domoticz/scripts/dzVents/examples/templates/UserVariable.lua
960
domoticz/scripts/dzVents/generated_scripts/README.md
1084
domoticz/scripts/dzVents/generated_scripts/README.md
961
domoticz/scripts/dzVents/scripts/README.md
1085
domoticz/scripts/dzVents/scripts/README.md
962
domoticz/scripts/install.sh
1086
domoticz/scripts/install.sh
963
domoticz/scripts/logrotate/domoticz
1087
domoticz/scripts/logrotate/domoticz
964
domoticz/scripts/lua/JSON.lua
1088
domoticz/scripts/lua/JSON.lua
965
domoticz/scripts/lua/XmlParser.lua
966
domoticz/scripts/lua/script_device_demo.lua
1089
domoticz/scripts/lua/script_device_demo.lua
967
domoticz/scripts/lua/script_time_demo.lua
1090
domoticz/scripts/lua/script_time_demo.lua
968
domoticz/scripts/lua/xml2lua.lua
969
domoticz/scripts/lua/xmlhandler/dom.lua
970
domoticz/scripts/lua/xmlhandler/print.lua
971
domoticz/scripts/lua/xmlhandler/tree.lua
972
domoticz/scripts/lua_parsers/example.lua
1091
domoticz/scripts/lua_parsers/example.lua
973
domoticz/scripts/lua_parsers/example_json.lua
1092
domoticz/scripts/lua_parsers/example_json.lua
974
domoticz/scripts/lua_parsers/example_owm.lua
1093
domoticz/scripts/lua_parsers/example_owm.lua
Lines 980-985 Link Here
980
domoticz/scripts/python/script_time_demo.py
1099
domoticz/scripts/python/script_time_demo.py
981
domoticz/scripts/readme.txt
1100
domoticz/scripts/readme.txt
982
domoticz/scripts/restart_domoticz
1101
domoticz/scripts/restart_domoticz
1102
domoticz/scripts/support/README.md
1103
domoticz/scripts/support/get_build_versions.sh
1104
domoticz/scripts/support/mqtt_ad/README.md
1105
domoticz/scripts/support/mqtt_ad/mqtt_ad_record.sh
1106
domoticz/scripts/support/mqtt_ad/mqtt_ad_send.sh
983
domoticz/scripts/templates/All.Lua
1107
domoticz/scripts/templates/All.Lua
984
domoticz/scripts/templates/All.Python
1108
domoticz/scripts/templates/All.Python
985
domoticz/scripts/templates/All.dzVents
1109
domoticz/scripts/templates/All.dzVents
Lines 987-992 Link Here
987
domoticz/scripts/templates/CustomEvents.dzVents
1111
domoticz/scripts/templates/CustomEvents.dzVents
988
domoticz/scripts/templates/Device.Lua
1112
domoticz/scripts/templates/Device.Lua
989
domoticz/scripts/templates/Device.dzVents
1113
domoticz/scripts/templates/Device.dzVents
1114
domoticz/scripts/templates/ExecuteShellCommand.dzVents
990
domoticz/scripts/templates/Group.dzVents
1115
domoticz/scripts/templates/Group.dzVents
991
domoticz/scripts/templates/HTTPRequest.dzVents
1116
domoticz/scripts/templates/HTTPRequest.dzVents
992
domoticz/scripts/templates/Scene.dzVents
1117
domoticz/scripts/templates/Scene.dzVents
Lines 1000-1005 Link Here
1000
domoticz/scripts/templates/global_data.dzVents
1125
domoticz/scripts/templates/global_data.dzVents
1001
domoticz/scripts/update_domoticz
1126
domoticz/scripts/update_domoticz
1002
domoticz/server_cert.pem
1127
domoticz/server_cert.pem
1128
domoticz/updatedomo
1003
domoticz/www/app/AboutController.js
1129
domoticz/www/app/AboutController.js
1004
domoticz/www/app/CamController.js
1130
domoticz/www/app/CamController.js
1005
domoticz/www/app/CustomIconsController.js
1131
domoticz/www/app/CustomIconsController.js
Lines 1063-1068 Link Here
1063
domoticz/www/app/hardware/Hardware.js
1189
domoticz/www/app/hardware/Hardware.js
1064
domoticz/www/app/hardware/HardwareSetup.html
1190
domoticz/www/app/hardware/HardwareSetup.html
1065
domoticz/www/app/hardware/HardwareSetup.js
1191
domoticz/www/app/hardware/HardwareSetup.js
1192
domoticz/www/app/hardware/extra/DaikinParams.html
1193
domoticz/www/app/hardware/extra/DaikinParams.js
1194
domoticz/www/app/hardware/extra/MQTTParams.html
1195
domoticz/www/app/hardware/extra/MQTTParams.js
1066
domoticz/www/app/hardware/setup/BleBox.html
1196
domoticz/www/app/hardware/setup/BleBox.html
1067
domoticz/www/app/hardware/setup/BleBox.js
1197
domoticz/www/app/hardware/setup/BleBox.js
1068
domoticz/www/app/hardware/setup/Kodi.html
1198
domoticz/www/app/hardware/setup/Kodi.html
Lines 1078-1095 Link Here
1078
domoticz/www/app/hardware/setup/ZWave.html
1208
domoticz/www/app/hardware/setup/ZWave.html
1079
domoticz/www/app/hardware/setup/ZWave.js
1209
domoticz/www/app/hardware/setup/ZWave.js
1080
domoticz/www/app/livesocket.js
1210
domoticz/www/app/livesocket.js
1081
domoticz/www/app/log/GraphLog.html
1211
domoticz/www/app/log/AngularBase.js
1082
domoticz/www/app/log/TemperatureLog.html
1212
domoticz/www/app/log/Base.js
1213
domoticz/www/app/log/Chart.js
1214
domoticz/www/app/log/ChartLoader.js
1215
domoticz/www/app/log/ChartZoomer.js
1216
domoticz/www/app/log/CounterLog.html
1217
domoticz/www/app/log/CounterLog.js
1218
domoticz/www/app/log/CounterLogCounter.js
1219
domoticz/www/app/log/CounterLogCounterSeriesSuppliers.js
1220
domoticz/www/app/log/CounterLogEnergySeriesSuppliers.js
1221
domoticz/www/app/log/CounterLogInstantAndCounter.js
1222
domoticz/www/app/log/CounterLogP1Energy.js
1223
domoticz/www/app/log/CounterLogParams.js
1224
domoticz/www/app/log/CounterLogSeriesSupplier.js
1225
domoticz/www/app/log/DataLoader.js
1083
domoticz/www/app/log/DeviceLog.html
1226
domoticz/www/app/log/DeviceLog.html
1084
domoticz/www/app/log/DeviceLog.js
1227
domoticz/www/app/log/DeviceLog.js
1228
domoticz/www/app/log/DomoticzBase.js
1229
domoticz/www/app/log/GraphLog.html
1085
domoticz/www/app/log/GraphLog.js
1230
domoticz/www/app/log/GraphLog.js
1086
domoticz/www/app/log/LightLog.html
1231
domoticz/www/app/log/LightLog.html
1087
domoticz/www/app/log/LightLog.js
1232
domoticz/www/app/log/LightLog.js
1233
domoticz/www/app/log/RefreshingChart.js
1088
domoticz/www/app/log/SceneLog.html
1234
domoticz/www/app/log/SceneLog.html
1089
domoticz/www/app/log/SceneLog.js
1235
domoticz/www/app/log/SceneLog.js
1236
domoticz/www/app/log/TemperatureLog.html
1090
domoticz/www/app/log/TemperatureLog.js
1237
domoticz/www/app/log/TemperatureLog.js
1091
domoticz/www/app/log/TextLog.html
1238
domoticz/www/app/log/TextLog.html
1092
domoticz/www/app/log/TextLog.js
1239
domoticz/www/app/log/TextLog.js
1240
domoticz/www/app/log/chart-compare.html
1241
domoticz/www/app/log/chart-day.html
1242
domoticz/www/app/log/chart-month.html
1243
domoticz/www/app/log/chart-week.html
1244
domoticz/www/app/log/chart-year.html
1093
domoticz/www/app/log/components/DeviceLevelChart.js
1245
domoticz/www/app/log/components/DeviceLevelChart.js
1094
domoticz/www/app/log/components/DeviceOnOffChart.js
1246
domoticz/www/app/log/components/DeviceOnOffChart.js
1095
domoticz/www/app/log/components/DeviceTextLogTable.js
1247
domoticz/www/app/log/components/DeviceTextLogTable.js
Lines 1171-1178 Link Here
1171
domoticz/www/css/ui-darkness/images/ui-icons_cccccc_256x240.png
1323
domoticz/www/css/ui-darkness/images/ui-icons_cccccc_256x240.png
1172
domoticz/www/css/ui-darkness/images/ui-icons_ffffff_256x240.png
1324
domoticz/www/css/ui-darkness/images/ui-icons_ffffff_256x240.png
1173
domoticz/www/css/ui-darkness/jquery-ui.min.css
1325
domoticz/www/css/ui-darkness/jquery-ui.min.css
1326
domoticz/www/css/ui-grid.min.css
1174
domoticz/www/css/wheelcolorpicker.css
1327
domoticz/www/css/wheelcolorpicker.css
1175
domoticz/www/favicon.ico
1328
domoticz/www/favicon.ico
1329
domoticz/www/font-awesome/css/fontawesome.min.css
1330
domoticz/www/font-awesome/css/solid.min.css
1331
domoticz/www/font-awesome/webfonts/fa-solid-900.eot
1332
domoticz/www/font-awesome/webfonts/fa-solid-900.svg
1333
domoticz/www/font-awesome/webfonts/fa-solid-900.ttf
1334
domoticz/www/font-awesome/webfonts/fa-solid-900.woff
1335
domoticz/www/font-awesome/webfonts/fa-solid-900.woff2
1176
domoticz/www/html5.appcache
1336
domoticz/www/html5.appcache
1177
domoticz/www/i18n/domoticz-ar.json.gz
1337
domoticz/www/i18n/domoticz-ar.json.gz
1178
domoticz/www/i18n/domoticz-bg.json.gz
1338
domoticz/www/i18n/domoticz-bg.json.gz
Lines 1269-1274 Link Here
1269
domoticz/www/images/Heating.png
1429
domoticz/www/images/Heating.png
1270
domoticz/www/images/Heating48_Off.png
1430
domoticz/www/images/Heating48_Off.png
1271
domoticz/www/images/Heating48_On.png
1431
domoticz/www/images/Heating48_On.png
1432
domoticz/www/images/Irrigation.png
1433
domoticz/www/images/Irrigation48_Off.png
1434
domoticz/www/images/Irrigation48_On.png
1272
domoticz/www/images/Light48_Off.png
1435
domoticz/www/images/Light48_Off.png
1273
domoticz/www/images/Light48_On.png
1436
domoticz/www/images/Light48_On.png
1274
domoticz/www/images/LogitechMediaServer.png
1437
domoticz/www/images/LogitechMediaServer.png
Lines 1419-1427 Link Here
1419
domoticz/www/images/forward_enabled_hover.png
1582
domoticz/www/images/forward_enabled_hover.png
1420
domoticz/www/images/gauge.png
1583
domoticz/www/images/gauge.png
1421
domoticz/www/images/gauge48.png
1584
domoticz/www/images/gauge48.png
1585
domoticz/www/images/gdown.png
1422
domoticz/www/images/general.png
1586
domoticz/www/images/general.png
1587
domoticz/www/images/gequal.png
1423
domoticz/www/images/glyphicons-halflings-white.png
1588
domoticz/www/images/glyphicons-halflings-white.png
1424
domoticz/www/images/glyphicons-halflings.png
1589
domoticz/www/images/glyphicons-halflings.png
1590
domoticz/www/images/gup.png
1425
domoticz/www/images/handle.png
1591
domoticz/www/images/handle.png
1426
domoticz/www/images/hardware.png
1592
domoticz/www/images/hardware.png
1427
domoticz/www/images/heal.png
1593
domoticz/www/images/heal.png
Lines 1622-1628 Link Here
1622
domoticz/www/js/ace/theme-xcode.js
1788
domoticz/www/js/ace/theme-xcode.js
1623
domoticz/www/js/ace/worker-lua.js.gz
1789
domoticz/www/js/ace/worker-lua.js.gz
1624
domoticz/www/js/angular-animate.min.js.gz
1790
domoticz/www/js/angular-animate.min.js.gz
1625
domoticz/www/js/angular-md5-min.js.gz
1791
domoticz/www/js/angular-md5.min.js.gz
1626
domoticz/www/js/angular-round-progress-directive.js.gz
1792
domoticz/www/js/angular-round-progress-directive.js.gz
1627
domoticz/www/js/angular-route.min.js.gz
1793
domoticz/www/js/angular-route.min.js.gz
1628
domoticz/www/js/angular-sanitize.min.js.gz
1794
domoticz/www/js/angular-sanitize.min.js.gz
Lines 1645-1662 Link Here
1645
domoticz/www/js/date.format.js.gz
1811
domoticz/www/js/date.format.js.gz
1646
domoticz/www/js/domoticz.js
1812
domoticz/www/js/domoticz.js
1647
domoticz/www/js/domoticzdevices.js
1813
domoticz/www/js/domoticzdevices.js
1648
domoticz/www/js/export-csv.js.gz
1649
domoticz/www/js/highcharts-ng.min.js.gz
1814
domoticz/www/js/highcharts-ng.min.js.gz
1650
domoticz/www/js/highcharts/highcharts-more.js
1815
domoticz/www/js/highcharts/highcharts-more.js.gz
1651
domoticz/www/js/highcharts/highcharts.js
1816
domoticz/www/js/highcharts/highcharts.js.gz
1652
domoticz/www/js/highcharts/modules/dependency-wheel.js
1817
domoticz/www/js/highcharts/modules/dependency-wheel.js.gz
1653
domoticz/www/js/highcharts/modules/exporting.js
1818
domoticz/www/js/highcharts/modules/export-data.js.gz
1654
domoticz/www/js/highcharts/modules/sankey.js
1819
domoticz/www/js/highcharts/modules/exporting.js.gz
1655
domoticz/www/js/highcharts/modules/xrange.js
1820
domoticz/www/js/highcharts/modules/no-data-to-display.js.gz
1656
domoticz/www/js/highcharts/themes/dark-unica.js
1821
domoticz/www/js/highcharts/modules/sankey.js.gz
1822
domoticz/www/js/highcharts/modules/xrange.js.gz
1823
domoticz/www/js/highcharts/themes/dark-unica.js.gz
1657
domoticz/www/js/html5shiv.js.gz
1824
domoticz/www/js/html5shiv.js.gz
1658
domoticz/www/js/i18next-1.8.0.min.js.gz
1825
domoticz/www/js/i18next-1.8.0.min.js.gz
1659
domoticz/www/js/jquery-3.4.1.min.js.gz
1826
domoticz/www/js/jquery-3.5.1.min.js.gz
1827
domoticz/www/js/jquery-3.6.0.min.js.gz
1660
domoticz/www/js/jquery-ui-timepicker-addon.js.gz
1828
domoticz/www/js/jquery-ui-timepicker-addon.js.gz
1661
domoticz/www/js/jquery-ui.min.js.gz
1829
domoticz/www/js/jquery-ui.min.js.gz
1662
domoticz/www/js/jquery.ddslick.min.js.gz
1830
domoticz/www/js/jquery.ddslick.min.js.gz
Lines 1665-1683 Link Here
1665
domoticz/www/js/jquery.ui.touch-punch.min.js.gz
1833
domoticz/www/js/jquery.ui.touch-punch.min.js.gz
1666
domoticz/www/js/jquery.uix.multiselect.min.js.gz
1834
domoticz/www/js/jquery.uix.multiselect.min.js.gz
1667
domoticz/www/js/jquery.wheelcolorpicker.js.gz
1835
domoticz/www/js/jquery.wheelcolorpicker.js.gz
1668
domoticz/www/js/luxon.min.js
1836
domoticz/www/js/lodash-custom.js.gz
1837
domoticz/www/js/lodash-custom.min.js.gz
1838
domoticz/www/js/luxon.min.js.gz
1669
domoticz/www/js/md5.js.gz
1839
domoticz/www/js/md5.js.gz
1670
domoticz/www/js/ng-grid-flexible-height.js.gz
1840
domoticz/www/js/moment-timezone-with-data.min.js.gz
1671
domoticz/www/js/ng-grid.min.js.gz
1841
domoticz/www/js/moment-with-locales.min.js.gz
1672
domoticz/www/js/ngDraggable.js.gz
1842
domoticz/www/js/ngDraggable.js.gz
1673
domoticz/www/js/ngload.min.js.gz
1843
domoticz/www/js/ngload.min.js.gz
1674
domoticz/www/js/noty/noty.css
1844
domoticz/www/js/noty/noty.css
1675
domoticz/www/js/noty/noty.min.js.gz
1845
domoticz/www/js/noty/noty.min.js.gz
1676
domoticz/www/js/noty/relax.css
1846
domoticz/www/js/noty/relax.css
1677
domoticz/www/js/require.js.gz
1847
domoticz/www/js/require.min.js.gz
1678
domoticz/www/js/respond.min.js.gz
1848
domoticz/www/js/respond.min.js.gz
1679
domoticz/www/js/ui-bootstrap.min.js.gz
1849
domoticz/www/js/ui-bootstrap.min.js.gz
1850
domoticz/www/js/ui-grid.min.js.gz
1680
domoticz/www/js/wow.min.js.gz
1851
domoticz/www/js/wow.min.js.gz
1852
domoticz/www/js/zip-without-map.sh
1681
domoticz/www/media/1x1.gif
1853
domoticz/www/media/1x1.gif
1682
domoticz/www/media/click.mp3
1854
domoticz/www/media/click.mp3
1683
domoticz/www/media/click.wav
1855
domoticz/www/media/click.wav
Lines 1724-1729 Link Here
1724
domoticz/www/secpanel/media/wrongcode.aac
1896
domoticz/www/secpanel/media/wrongcode.aac
1725
domoticz/www/secpanel/media/wrongcode.mp3
1897
domoticz/www/secpanel/media/wrongcode.mp3
1726
domoticz/www/secpanel/media/wrongcode.ogg
1898
domoticz/www/secpanel/media/wrongcode.ogg
1899
domoticz/www/styles/dark-th3me/base.css
1727
domoticz/www/styles/dark-th3me/custom.css
1900
domoticz/www/styles/dark-th3me/custom.css
1728
domoticz/www/styles/dark-th3me/custom.js
1901
domoticz/www/styles/dark-th3me/custom.js
1729
domoticz/www/styles/dark-th3me/fonts/Ubuntu.ttf
1902
domoticz/www/styles/dark-th3me/fonts/Ubuntu.ttf
Lines 1796-1815 Link Here
1796
domoticz/www/views/utility.html
1969
domoticz/www/views/utility.html
1797
domoticz/www/views/weather.html
1970
domoticz/www/views/weather.html
1798
domoticz/www/views/weather_widget.html
1971
domoticz/www/views/weather_widget.html
1799
%%SMQTT%%domoticz/bin/mosquitto_passwd
1800
%%SMQTT%%domoticz/bin/mosquitto_pub
1801
%%SMQTT%%domoticz/bin/mosquitto_rr
1802
%%SMQTT%%domoticz/bin/mosquitto_sub
1803
%%SMQTT%%domoticz/etc/mosquitto/aclfile.example
1804
%%SMQTT%%domoticz/etc/mosquitto/mosquitto.conf
1805
%%SMQTT%%domoticz/etc/mosquitto/pskfile.example
1806
%%SMQTT%%domoticz/etc/mosquitto/pwfile.example
1807
%%SMQTT%%domoticz/include/mosquitto.h
1808
%%SMQTT%%domoticz/include/mosquitto_broker.h
1809
%%SMQTT%%domoticz/include/mosquitto_plugin.h
1810
%%SMQTT%%domoticz/include/mosquittopp.h
1811
%%SMQTT%%domoticz/lib/libmosquitto_static.a
1812
%%SMQTT%%domoticz/lib/libmosquittopp_static.a
1813
%%SMQTT%%domoticz/sbin/mosquitto
1814
@dir(domoticz,domoticz) /var/db/domoticz
1972
@dir(domoticz,domoticz) /var/db/domoticz
1815
@dir(domoticz,domoticz) /var/run/domoticz
1973
@dir(domoticz,domoticz) /var/run/domoticz

Return to bug 261602