aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-11-24 11:08:58 +0100
committercedricbonhomme <devnull@localhost>2011-11-24 11:08:58 +0100
commita535ab1e15520739842057e59f121cb28aa0b19d (patch)
tree867a268df65d5b1c8f9f79a007d98efe6a74a8dd /pyAggr3g470r.py
parentUpdated README file. (diff)
downloadnewspipe-a535ab1e15520739842057e59f121cb28aa0b19d.tar.gz
newspipe-a535ab1e15520739842057e59f121cb28aa0b19d.tar.bz2
newspipe-a535ab1e15520739842057e59f121cb28aa0b19d.zip
Removed delicious share button in favor of pinboard. Removed twitter button.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 2ea63f9e..41911075 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -22,7 +22,7 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 3.0 $"
__date__ = "$Date: 2010/01/29 $"
-__revision__ = "$Date: 2011/10/25 $"
+__revision__ = "$Date: 2011/11/24 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
@@ -492,11 +492,6 @@ class Root:
<img src="/img/pinboard.png" title="Share on Pinboard" /></a>""" % \
(article.article_link, article.article_title)
- # on delicious
- html += """\n\n\t<a href="http://delicious.com/post?url=%s&title=%s"
- rel="noreferrer" target="_blank">\n
- <img src="/img/delicious.png" title="Share on del.iciou.us" /></a>""" % \
- (article.article_link, article.article_title)
# on Digg
html += """\n\n\t<a href="http://digg.com/submit?url=%s&title=%s"
rel="noreferrer" target="_blank">\n
@@ -517,9 +512,6 @@ class Root:
rel="noreferrer" target="_blank">\n
<img src="/img/blogmarks.png" title="Share on Blogmarks" /></a>""" % \
(article.article_link, article.article_title)
- # on Twitter
- html += """\n\n\t<a href="http://twitter.com/share" class="twitter-share-button" data-url="%s" data-text="%s" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>\n""" % \
- (article.article_link, article.article_title)
# Google +1 button
html += """\n\n<g:plusone size="standard" count="true" href="%s"></g:plusone>""" % \
bgstack15