diff options
author | cedricbonhomme <devnull@localhost> | 2011-11-24 11:08:58 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2011-11-24 11:08:58 +0100 |
commit | a535ab1e15520739842057e59f121cb28aa0b19d (patch) | |
tree | 867a268df65d5b1c8f9f79a007d98efe6a74a8dd | |
parent | Updated README file. (diff) | |
download | newspipe-a535ab1e15520739842057e59f121cb28aa0b19d.tar.gz newspipe-a535ab1e15520739842057e59f121cb28aa0b19d.tar.bz2 newspipe-a535ab1e15520739842057e59f121cb28aa0b19d.zip |
Removed delicious share button in favor of pinboard. Removed twitter button.
-rwxr-xr-x | img/delicious.png | bin | 266 -> 0 bytes | |||
-rwxr-xr-x | pyAggr3g470r.py | 10 |
2 files changed, 1 insertions, 9 deletions
diff --git a/img/delicious.png b/img/delicious.png Binary files differdeleted file mode 100755 index a96f8c00..00000000 --- a/img/delicious.png +++ /dev/null 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>""" % \ |