mgebbe@31: <% mgebbe@31: import requests mgebbe@31: import urllib2 mgebbe@31: import simplejson mgebbe@31: import time mgebbe@31: mgebbe@31: mgebbe@31: # SETTINGS mgebbe@31: mgebbe@32: tmpl = "/var/lib/gforge/chroot/home/groups/dive4elements/htdocs/index.html" mgebbe@31: url = "https://io.intevation.de/api/user/dive4elements/feed/public" mgebbe@31: #url = "https://io.intevation.de/api/user/Intevation/feed/public" mgebbe@31: verb = "share" # post or share mgebbe@31: max_posts = 5 mgebbe@31: max_length = 300 mgebbe@31: opacity75 = 20 mgebbe@31: ocacity50 = 10 mgebbe@31: mgebbe@31: # END SETTINGS mgebbe@31: mgebbe@31: with open (tmpl, "r") as myfile: mgebbe@31: template=myfile.read().replace('\n', '') mgebbe@31: mgebbe@31: req.content_type = "text/html; charset=UTF-8" mgebbe@31: output = [] mgebbe@31: mgebbe@31: postcount = 1 mgebbe@31: mgebbe@31: output.append( mgebbe@31: '") mgebbe@31: #output.append('mehr von '+data["author"]["displayName"]+'' ) mgebbe@31: mgebbe@31: str = ''.join(output) mgebbe@31: template = template.replace('{newsfeed}',str) mgebbe@31: mgebbe@31: req.write(template) mgebbe@31: %>