aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--img/hacker-news.pngbin0 -> 265 bytes
-rwxr-xr-xpyAggr3g470r.py4
2 files changed, 4 insertions, 0 deletions
diff --git a/img/hacker-news.png b/img/hacker-news.png
new file mode 100644
index 00000000..ce92765d
--- /dev/null
+++ b/img/hacker-news.png
Binary files differ
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index d3231260..cd01817c 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -525,6 +525,10 @@ class Root:
html += """\n\n<a href="http://identi.ca/index.php?action=newnotice&status_textarea=%s: %s" title="Share on Identi.ca" target="_blank"><img src="/img/identica.png" /></a>""" % \
(article["article_title"], article["article_link"])
+ # on Hacker News
+ html += """\n\n<a href='javascript:window.location="http://news.ycombinator.com/submitlink?u="+encodeURIComponent("%s")+"&t="+encodeURIComponent("%s")'><img src="/img/hacker-news.png" title="Share on Hacker News" /></a>""" % \
+ (article["article_link"], article["article_title"])
+
# on Pinboard
html += """\n\n\t<a href="https://api.pinboard.in/v1/posts/add?url=%s&description=%s"
rel="noreferrer" target="_blank">\n
bgstack15