summaryrefslogtreecommitdiff
path: root/plugins/identica/identica.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/identica/identica.js')
-rw-r--r--plugins/identica/identica.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/identica/identica.js b/plugins/identica/identica.js
new file mode 100644
index 000000000..d31fc55f4
--- /dev/null
+++ b/plugins/identica/identica.js
@@ -0,0 +1,31 @@
+ function shareArticleToIdentica(id) {
+ try {
+ var query = "?op=pluginhandler&plugin=identica&method=getInfo&id=" + param_escape(id);
+
+ console.log(query);
+
+ var d = new Date();
+ var ts = d.getTime();
+
+ var w = window.open('backend.php?op=backend&method=loading', 'ttrss_tweet',
+ "status=0,toolbar=0,location=0,width=600,height=500,scrollbars=1,menubar=0");
+
+ new Ajax.Request("backend.php", {
+ parameters: query,
+ onComplete: function(transport) {
+ var ti = JSON.parse(transport.responseText);
+
+ var share_url = "http://identi.ca/index.php?action=bookmarkpopup&_=" + ts +
+ "&title=" + param_escape(ti.title) +
+ "&url=" + param_escape(ti.link);
+
+ w.location.href = share_url;
+
+ } });
+
+
+ } catch (e) {
+ exception_error("shareArticleIdentica", e);
+ }
+ }
+