From b329a335ad10648e64b3de049c083bc04638a072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 19 Sep 2014 08:48:17 +0200 Subject: Imported Upstream version 1.7.2 --- config_template.py | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 config_template.py (limited to 'config_template.py') diff --git a/config_template.py b/config_template.py new file mode 100644 index 0000000..d7069bb --- /dev/null +++ b/config_template.py @@ -0,0 +1,56 @@ +import os.path + +# Copyright: (2013-2014) Michael Till Beck +# License: GPL-2.0+ + +#We collect xpath snippets at this place: Snippet collection - please feel free to add your own definitions! + +sites = [ + + {'shortname': 'mywebsite1', + 'uri': 'http://www.mywebsite1.com/info', + 'type': 'html', + 'titlexpath': '//h1', + 'contentxpath': '//div', + 'titleregex': '', + 'contentregex': '', + 'encoding': 'utf-8'}, + + {'shortname': 'mywebsite2', + 'uri': 'http://www.mywebsite2.com/info', + 'type': 'html', + 'contentxpath': '//*[contains(concat(\' \', normalize-space(@class), \' \'), \' news-list-container \')]', + 'regex': '', + 'encoding': 'utf-8'}, + + {'shortname': 'mywebsite3', + 'uri': 'http://www.mywebsite3.com/info', + 'type': 'text', + 'contentxpath': '', + 'contentregex': 'Version\"\:\d*\.\d*', + 'encoding': 'utf-8'}, + + {'shortname': 'lscmd', + 'uri': 'cmd://ls -l /home/pi', + 'contentregex': '.*Desktop.*' + } + +] + +subjectPostfix = 'A website has been updated!' + +enableMailNotifications = True +sender = 'me@mymail.com' +smtphost = 'mysmtpprovider.com' +useTLS = True +smtpport = 587 +smtpusername = sender +smtppwd = 'mypassword' +receiver = 'me2@mymail.com' + +os.chdir('/var/cache/mwc') + +enableRSSFeed = True +rssfile = 'feed.xml' +maxFeeds = 100 + -- cgit v1.2.3