diff options
author | cedricbonhomme <devnull@localhost> | 2010-04-15 09:44:14 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2010-04-15 09:44:14 +0200 |
commit | 0762d34bbe008b72bc4fbcabf6e39e6add196bc4 (patch) | |
tree | 829af15d487bfc41f41534225100c0010ecb21ba | |
parent | Added list_notification page to manage the list of watched feeds (by mail). (diff) | |
download | newspipe-0762d34bbe008b72bc4fbcabf6e39e6add196bc4.tar.gz newspipe-0762d34bbe008b72bc4fbcabf6e39e6add196bc4.tar.bz2 newspipe-0762d34bbe008b72bc4fbcabf6e39e6add196bc4.zip |
Introduction of a Google Buzz button to pyAggr3g470r.
-rw-r--r-- | css/img/buzz.png | bin | 0 -> 791 bytes | |||
-rwxr-xr-x | pyAggr3g470r.py | 12 |
2 files changed, 12 insertions, 0 deletions
diff --git a/css/img/buzz.png b/css/img/buzz.png Binary files differnew file mode 100644 index 00000000..e4bc1732 --- /dev/null +++ b/css/img/buzz.png diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 4de1e6b3..ab8ac2a7 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -36,6 +36,8 @@ path = {'/css/style.css': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':utils.path+'css/img/scoopeo.png'}, \ '/css/img/blogmarks.png': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':utils.path+'css/img/blogmarks.png'}, \ + '/css/img/buzz.png': {'tools.staticfile.on': True, \ + 'tools.staticfile.filename':utils.path+'css/img/buzz.png'}, \ '/var/histogram.png':{'tools.staticfile.on': True, \ 'tools.staticfile.filename':utils.path+'var/histogram.png'}} @@ -337,11 +339,18 @@ class Root: html += """<br />\n<a href="%s">Complete story</a>\n<br />\n""" % \ (article[3].encode('utf-8'),) # Share this article: + # on Buzz + html += """<a href="http://www.google.com/buzz/post?url=%s&message=%s" + rel="noreferrer" target="_blank">\n + <img src="/css/img/buzz.png" title="Share on Google Buzz" /></a> """ % \ + (article[3].encode('utf-8'), article[2].encode('utf-8')) + # on delicious html += """<a href="http://delicious.com/post?url=%s&title=%s" rel="noreferrer" target="_blank">\n <img src="/css/img/delicious.png" title="Share on del.iciou.us" /></a> """ % \ (article[3].encode('utf-8'), article[2].encode('utf-8')) + # on Digg html += """<a href="http://digg.com/submit?url=%s&title=%s" rel="noreferrer" target="_blank">\n @@ -362,6 +371,9 @@ class Root: rel="noreferrer" target="_blank">\n <img src="/css/img/blogmarks.png" title="Share on Blogmarks" /></a>""" % \ (article[3].encode('utf-8'), article[2].encode('utf-8')) + + html += """<br />\n<a title="Share on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="%s"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script>""" % \ + (article[3].encode('utf-8'),) break html += "<hr />\n" + htmlfooter return html |