From 7cf5d06c8c96d3ae3d41d8a54bfc386f13b3c4a4 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 27 Dec 2013 14:43:43 -0200 Subject: Cleaning up modules --- .../pentadactyl.dot/plugins.link/links.js | 42 ---------------------- 1 file changed, 42 deletions(-) delete mode 100644 modules/pentadactyl/pentadactyl.dot/plugins.link/links.js (limited to 'modules/pentadactyl/pentadactyl.dot/plugins.link/links.js') diff --git a/modules/pentadactyl/pentadactyl.dot/plugins.link/links.js b/modules/pentadactyl/pentadactyl.dot/plugins.link/links.js deleted file mode 100644 index 21434ef..0000000 --- a/modules/pentadactyl/pentadactyl.dot/plugins.link/links.js +++ /dev/null @@ -1,42 +0,0 @@ -/** - * Links plugin. - */ - -"use strict"; - -XML.ignoreWhitespace = false; -XML.prettyPrinting = false; - -/* use strict */ -var INFO = -["plugin", { name: "links", - version: "0.1", - href: "http://dactyl.sf.net/pentadactyl/plugins#links-plugin", - summary: "Scuttle published", - xmlns: "dactyl" }, -["author", { email: "rhatto@riseup.net" }, "Silvio Rhatto"], -["license", { href: "http://opensource.org/licenses/mit-license.php" }, "MIT"], -["project", { name: "Pentadactyl", "min-version": "1.0" }], - ["p", {}, - "This plugin provides a shortcut command to publish a link to a Scuttle site."], - ["item", {}, - ["tags", {}, ":link"], - ["strut"], - ["spec", {}, ":link"], - ["description", {}, - ["p", {}, - "Add the current page into the Scuttle site." - ]]]]; - -group.commands.add(["link"], - "Add link to scuttle", - function (args) { - var instance = 'https://links.sarava.org/bookmarks?action=add&address='; - var doc = content.document; - var href = encodeURIComponent(doc.location.href); - var title = encodeURIComponent(doc.title); - var desc = encodeURIComponent(doc.getSelection()); - var tags = encodeURIComponent(args.toString().replace(/,,/g, ';').replace(/,/g, ' ').replace(/;/g, ', ')); - commands.execute('tabopen ' + instance + href + '&title=' + title + '&description=' + desc + '&tags=' + tags); - }, - { argCount: "*" }, true); -- cgit v1.2.3