diff options
Diffstat (limited to 'slixmpp/plugins/xep_0323')
-rw-r--r-- | slixmpp/plugins/xep_0323/__init__.py | 15 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0323/device.py | 15 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0323/sensordata.py | 15 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0323/stanza/__init__.py | 15 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0323/stanza/base.py | 15 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0323/stanza/sensordata.py | 15 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0323/timerreset.py | 15 |
7 files changed, 42 insertions, 63 deletions
diff --git a/slixmpp/plugins/xep_0323/__init__.py b/slixmpp/plugins/xep_0323/__init__.py index 6bf42fd6..edc34ba3 100644 --- a/slixmpp/plugins/xep_0323/__init__.py +++ b/slixmpp/plugins/xep_0323/__init__.py @@ -1,13 +1,10 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. from slixmpp.plugins.base import register_plugin from slixmpp.plugins.xep_0323.sensordata import XEP_0323 diff --git a/slixmpp/plugins/xep_0323/device.py b/slixmpp/plugins/xep_0323/device.py index 994fc5ce..3f090380 100644 --- a/slixmpp/plugins/xep_0323/device.py +++ b/slixmpp/plugins/xep_0323/device.py @@ -1,13 +1,10 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. import datetime import logging diff --git a/slixmpp/plugins/xep_0323/sensordata.py b/slixmpp/plugins/xep_0323/sensordata.py index b16bd395..720f4966 100644 --- a/slixmpp/plugins/xep_0323/sensordata.py +++ b/slixmpp/plugins/xep_0323/sensordata.py @@ -1,13 +1,10 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. import logging import time import datetime diff --git a/slixmpp/plugins/xep_0323/stanza/__init__.py b/slixmpp/plugins/xep_0323/stanza/__init__.py index e1603e41..dc24a460 100644 --- a/slixmpp/plugins/xep_0323/stanza/__init__.py +++ b/slixmpp/plugins/xep_0323/stanza/__init__.py @@ -1,12 +1,9 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. from slixmpp.plugins.xep_0323.stanza.sensordata import * diff --git a/slixmpp/plugins/xep_0323/stanza/base.py b/slixmpp/plugins/xep_0323/stanza/base.py index 7959b818..dabe893c 100644 --- a/slixmpp/plugins/xep_0323/stanza/base.py +++ b/slixmpp/plugins/xep_0323/stanza/base.py @@ -1,13 +1,10 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. from slixmpp.xmlstream import ET pass diff --git a/slixmpp/plugins/xep_0323/stanza/sensordata.py b/slixmpp/plugins/xep_0323/stanza/sensordata.py index 7ab1e3ba..ff8feeec 100644 --- a/slixmpp/plugins/xep_0323/stanza/sensordata.py +++ b/slixmpp/plugins/xep_0323/stanza/sensordata.py @@ -1,13 +1,10 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. from slixmpp import Iq, Message from slixmpp.xmlstream import register_stanza_plugin, ElementBase, ET, JID import re diff --git a/slixmpp/plugins/xep_0323/timerreset.py b/slixmpp/plugins/xep_0323/timerreset.py index 616380e7..4d51a4d0 100644 --- a/slixmpp/plugins/xep_0323/timerreset.py +++ b/slixmpp/plugins/xep_0323/timerreset.py @@ -1,12 +1,9 @@ -""" - Slixmpp: The Slick XMPP Library - Implementation of xeps for Internet of Things - http://wiki.xmpp.org/web/Tech_pages/IoT_systems - Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se - This file is part of Slixmpp. - - See the file LICENSE for copying permission. -""" +# Slixmpp: The Slick XMPP Library +# Implementation of xeps for Internet of Things +# http://wiki.xmpp.org/web/Tech_pages/IoT_systems +# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se +# This file is part of Slixmpp. +# See the file LICENSE for copying permission. from threading import Thread, Event, Timer import time |