|
From: <mi...@us...> - 2015-01-03 18:44:09
|
Revision: 2306
http://sourceforge.net/p/openautomation/code/2306
Author: mivola
Date: 2015-01-03 18:43:57 +0000 (Sat, 03 Jan 2015)
Log Message:
-----------
add description to "AddOns" for Logikprozessor.pl
Modified Paths:
--------------
wiregate/plugin/generic/Logikprozessor.addRssLogViaCurl.pl
wiregate/plugin/generic/Logikprozessor.addRssLogViaHttpRequest.pl
wiregate/plugin/generic/Logikprozessor.sendNma.pl
Modified: wiregate/plugin/generic/Logikprozessor.addRssLogViaCurl.pl
===================================================================
--- wiregate/plugin/generic/Logikprozessor.addRssLogViaCurl.pl 2015-01-02 23:39:19 UTC (rev 2305)
+++ wiregate/plugin/generic/Logikprozessor.addRssLogViaCurl.pl 2015-01-03 18:43:57 UTC (rev 2306)
@@ -1,12 +1,22 @@
#!/usr/bin/perl -w
##################
-# Logikprozessor AddOn: create RSS Log via HTTP::Request
+# Logikprozessor AddOn: create an RSS Log entry using curl; this is executed asynchronous to avoid performance problems
+# that might occur using HTTP::Request
##################
#
# COMPILE_PLUGIN
+#
+# benoetigt einen Konfigurationseintrag in Logikprozessor.conf:
+# %settings=(
+# rssLog => {
+# url => 'http://wiregateXYZ/cometvisu/plugins/rsslog/rsslog.php' # URL to rsslog.php which writes the entry to the database
+# }
+# );
+#
+# weitere Erklaerungen: http://knx-user-forum.de/code-schnipsel/19912-neues-plugin-logikprozessor-pl-36.html#post384199
+#
-
-sub addRssLog {
+sub addRssLogViaCurl {
my (%parameters)=@_;
my ($title, $content, $tags, $url);
Modified: wiregate/plugin/generic/Logikprozessor.addRssLogViaHttpRequest.pl
===================================================================
--- wiregate/plugin/generic/Logikprozessor.addRssLogViaHttpRequest.pl 2015-01-02 23:39:19 UTC (rev 2305)
+++ wiregate/plugin/generic/Logikprozessor.addRssLogViaHttpRequest.pl 2015-01-03 18:43:57 UTC (rev 2306)
@@ -1,9 +1,19 @@
#!/usr/bin/perl -w
##################
-# Logikprozessor AddOn: create RSS Log via HTTP::Request
+# Logikprozessor AddOn: create an RSS Log entry via HTTP::Request
##################
#
# COMPILE_PLUGIN
+#
+# benoetigt einen Konfigurationseintrag in Logikprozessor.conf:
+# %settings=(
+# rssLog => {
+# url => 'http://wiregateXYZ/cometvisu/plugins/rsslog/rsslog.php' # URL to rsslog.php which writes the entry to the database
+# }
+# );
+#
+# weitere Erklaerungen: http://knx-user-forum.de/code-schnipsel/19912-neues-plugin-logikprozessor-pl-36.html#post384199
+#
sub addRssLogViaHttpRequest {
my (%parameters)=@_;
Modified: wiregate/plugin/generic/Logikprozessor.sendNma.pl
===================================================================
--- wiregate/plugin/generic/Logikprozessor.sendNma.pl 2015-01-02 23:39:19 UTC (rev 2305)
+++ wiregate/plugin/generic/Logikprozessor.sendNma.pl 2015-01-03 18:43:57 UTC (rev 2306)
@@ -4,8 +4,20 @@
##################
#
# COMPILE_PLUGIN
+#
+# benoetigt einen Konfigurationseintrag in Logikprozessor.conf:
+# %settings=(
+# nma => {
+# apikey => "YOUR_API_KEY",
+# application => 'SmartHome Logikprozessor',
+# targetUrl => 'https://URL_TO_YOUR_VISU/cometvisu',
+# url => 'http://www.notifymyandroid.com/publicapi/notify'
+# }
+# );
+#
+# weitere Erklaerungen: http://knx-user-forum.de/code-schnipsel/19912-neues-plugin-logikprozessor-pl-36.html#post384076
+#
-
sub sendNma {
my (%parameters)=@_;
my ($priority, $event, $description, $application, $url, $apikey, $targetUrl);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|