diff --git a/robonect/__init__.py b/robonect/__init__.py
index 521cdb6a8..c988b7630 100755
--- a/robonect/__init__.py
+++ b/robonect/__init__.py
@@ -40,7 +40,7 @@ class Robonect(MqttPlugin):
Main class of the Plugin. Does all plugin specific stuff and provides
the update functions for the items
"""
- PLUGIN_VERSION = '1.0.5/' # (must match the version specified in plugin.yaml)
+ PLUGIN_VERSION = '1.0.5' # (must match the version specified in plugin.yaml)
STATUS_TYPES = ['mower/status', 'mower/status/text', 'status_text_translated', 'mower/distance', 'mower/status/duration',
'mower/statistic/hours',
'mower/stopped', 'mower/mode', 'mower/mode/text', 'mode_text_translated', 'mower/battery/charge', 'blades_quality',
diff --git a/rrd/__init__.py b/rrd/__init__.py
index 6d54f92dc..9bdff81eb 100755
--- a/rrd/__init__.py
+++ b/rrd/__init__.py
@@ -86,7 +86,6 @@ def __init__(self, sh):
self.logger.error("{}: Unable to import Python package 'rrdtool'".format(self.get_fullname()))
return
- self.init_webinterface()
return
def run(self):
@@ -359,114 +358,3 @@ def _create(self, rrd):
self.logger.debug("Creating rrd ({0}) for {1}.".format(rrd['rrdb'], rrd['item']))
except Exception as e:
self.logger.warning("Error creating rrd ({0}) for {1}: {2}".format(rrd['rrdb'], rrd['item'], e))
-
- # ToDo:
- # create a meaningful webinterface
-
- def init_webinterface(self):
- """"
- Initialize the web interface for this plugin
-
- This method is only needed if the plugin is implementing a web interface
- """
- try:
- self.mod_http = Modules.get_instance().get_module(
- 'http') # try/except to handle running in a core version that does not support modules
- except:
- self.mod_http = None
- if self.mod_http == None:
- self.logger.error("Not initializing the web interface")
- return False
-
- import sys
- if not "SmartPluginWebIf" in list(sys.modules['lib.model.smartplugin'].__dict__):
- self.logger.warning("Web interface needs SmartHomeNG v1.5 and up. Not initializing the web interface")
- return False
-
- # set application configuration for cherrypy
- webif_dir = self.path_join(self.get_plugin_dir(), 'webif')
- config = {
- '/': {
- 'tools.staticdir.root': webif_dir,
- },
- '/static': {
- 'tools.staticdir.on': True,
- 'tools.staticdir.dir': 'static'
- }
- }
-
- # Register the web interface as a cherrypy app
- self.mod_http.register_webif(WebInterface(webif_dir, self),
- self.get_shortname(),
- config,
- self.get_classname(), self.get_instance_name(),
- description='')
-
- return True
-
-
-# ------------------------------------------
-# Webinterface of the plugin
-# ------------------------------------------
-
-import cherrypy
-from jinja2 import Environment, FileSystemLoader
-
-
-class WebInterface(SmartPluginWebIf):
-
- def __init__(self, webif_dir, plugin):
- """
- Initialization of instance of class WebInterface
-
- :param webif_dir: directory where the webinterface of the plugin resides
- :param plugin: instance of the plugin
- :type webif_dir: str
- :type plugin: object
- """
- self.logger = logging.getLogger(__name__)
- self.webif_dir = webif_dir
- self.plugin = plugin
- self.tplenv = self.init_template_environment()
-
- self.items = Items.get_instance()
-
- @cherrypy.expose
- def index(self, reload=None):
- """
- Build index.html for cherrypy
-
- Render the template and return the html file to be delivered to the browser
-
- :return: contents of the template after beeing rendered
- """
- tmpl = self.tplenv.get_template('index.html')
- # add values to be passed to the Jinja2 template eg: tmpl.render(p=self.plugin, interface=interface, ...)
- return tmpl.render(p=self.plugin, items=sorted(self.items.return_items(), key=lambda k: str.lower(k['_path'])))
-
-
- @cherrypy.expose
- def get_data_html(self, dataSet=None):
- """
- Return data to update the webpage
-
- For the standard update mechanism of the web interface, the dataSet to return the data for is None
-
- :param dataSet: Dataset for which the data should be returned (standard: None)
- :return: dict with the data needed to update the web page.
- """
- if dataSet is None:
- # get the new data
- data = {}
-
- # data['item'] = {}
- # for i in self.plugin.items:
- # data['item'][i]['value'] = self.plugin.getitemvalue(i)
- #
- # return it as json the the web page
- # try:
- # return json.dumps(data)
- # except Exception as e:
- # self.logger.error("get_data_html exception: {}".format(e))
- return {}
-
diff --git a/rrd/user_doc.rst b/rrd/user_doc.rst
index 587a6bbd4..13ad5861e 100644
--- a/rrd/user_doc.rst
+++ b/rrd/user_doc.rst
@@ -1,17 +1,13 @@
.. index:: Plugins; rrd
.. index:: rrd
-
===
rrd
===
-
-Das `RRDTool `_ ist ein weitverbreitetes Tool um Zeitreihen von Messdaten aufzuzeichnen.
+Das `RRDTool `_ ist ein weitverbreitetes Tool um Zeitreihen von Messdaten aufzuzeichnen.
Dieses Plugin stellt die Möglichkeit bereit Itemwerte an das RRDTool weiterzugeben.
-
-
Anforderungen
=============
@@ -47,36 +43,9 @@ Die Plugin Parameter und die Informationen zur Item-spezifischen Konfiguration d
unter :doc:`/plugins_doc/config/rrd` beschrieben.
-plugin.yaml
------------
-
-Zu den Informationen, welche Parameter in der ../etc/plugin.yaml konfiguriert werden können bzw. müssen, bitte
-bitte die Dokumentation :doc:`Dokumentation ` lesen, die aus
-den Metadaten der plugin.yaml erzeugt wurde (siehe oben).
-
-
-items.yaml
-----------
-
-Zu den Informationen, welche Attribute in der Item Konfiguration verwendet werden können bzw. müssen, bitte
-bitte die Dokumentation :doc:`Dokumentation ` lesen, die aus
-den Metadaten der plugin.yaml erzeugt wurde (siehe oben).
-
-
-logic.yaml
-----------
-
-Zu den Informationen, welche Konfigurationsmöglichkeiten für Logiken bestehen, bitte
-bitte die Dokumentation :doc:`Dokumentation ` lesen, die aus
-den Metadaten der plugin.yaml erzeugt wurde (siehe oben).
-
Funktionen
----------
-Zu den Informationen, welche Funktionen das Plugin bereitstellt (z.B. zur Nutzung in Logiken), bitte
-bitte die Dokumentation :doc:`Dokumentation ` lesen, die aus
-den Metadaten der plugin.yaml erzeugt wurde (siehe oben).
-
Das Plugin stellt für jedes Item das für die Verwendung mit dem Plugin konfiguriert wurde eine Datenbankfunktion bereit.
``sh.item.db(function, start, end='now')``
@@ -100,9 +69,10 @@ Für die Intervalleinheit können folgende Kennzeichnungen verwendet werden:
* `h`: hour
* `d`: day
* `w`: week
- + `m`: month
+ * `m`: month
* `y`: year
+
Beispiele
=========
@@ -135,11 +105,11 @@ Um das Minimum der letzten 24 Stunden zu ermitteln:
Um die Durchschnittstemperatur einer Woche zu ermitteln die vor genau 7 Tagen endete:
.. code-block:: python
-
+
sh.Aussen.Temperatur.db('avg', '2w', '1w')
Web Interface
=============
-Aktuell hat das Plugin kein Webinterface
\ No newline at end of file
+Aktuell hat das Plugin kein Webinterface
diff --git a/rrd/webif/static/img/readme.txt b/rrd/webif/static/img/readme.txt
deleted file mode 100755
index 1a7c55eef..000000000
--- a/rrd/webif/static/img/readme.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-This directory is for storing images that are used by the web interface.
-
-If you want to have your own logo on the top of the web interface, store it here and name it plugin_logo..
-
-Extension can be png, svg or jpg
-
diff --git a/rrd/webif/templates/index.html b/rrd/webif/templates/index.html
deleted file mode 100755
index d59434db8..000000000
--- a/rrd/webif/templates/index.html
+++ /dev/null
@@ -1,116 +0,0 @@
-{% extends "base_plugin.html" %}
-
-{% set logo_frame = false %}
-
-
-{% set update_interval = 0 %}
-
-
-{% block pluginscripts %}
-
-{% endblock pluginscripts %}
-
-
-{% block headtable %}
-
- {{ _('Hier kommt der Inhalt des Webinterfaces hin.') }}
-
-{% endblock bodytab2 %}
-
-
-
-{% block bodytab3 %}
-{% endblock bodytab3 %}
-
-
-
-{% block bodytab4 %}
-{% endblock bodytab4 %}
diff --git a/shelly/user_doc/device_installation.rst b/shelly/user_doc/device_installation.rst
index ed54101c2..81a8e7ed7 100644
--- a/shelly/user_doc/device_installation.rst
+++ b/shelly/user_doc/device_installation.rst
@@ -30,7 +30,7 @@ Gen1 Devices einbinden
- Mit dem Browser unter der neuen IP Adresse (http://shellyplug-s-xxxxxx) im lokalen WLAN verbinden
Gen2/Gen3 Devices einbinden
-~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In der Navigation links auf **Settings** klicken
- Im Abschnitt 'Network Settings' auf **Wi-Fi** klicken
@@ -57,7 +57,7 @@ Update für Gen1 Devices
- **UPDATE FIRMWARE** klicken
Update für Gen2/Gen3 Devices
-~~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In der Navigation links auf **Settings** klicken
- Im Abschnitt 'Device Settings' auf **Firmware** klicken
@@ -83,7 +83,7 @@ Für Gen1 Devices
:class: screenshot
Für Gen2/Gen3 Devices
-~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~
- In der Navigation links auf **Settings** klicken
- Im Abschnitt 'Connectivity' auf **MQTT** klicken
@@ -104,4 +104,3 @@ Für Gen2/Gen3 Devices
anschließend nicht dem Broker.
|
-