aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimperator.dot.link/plugin/links.js6
-rw-r--r--vimperator.dot.link/plugin/scuttle.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/vimperator.dot.link/plugin/links.js b/vimperator.dot.link/plugin/links.js
index 763d281..45998d3 100644
--- a/vimperator.dot.link/plugin/links.js
+++ b/vimperator.dot.link/plugin/links.js
@@ -38,9 +38,9 @@ let PLUGIN_INFO = xml`
<name lang="en">Links</name>
<description>Links code</description>
<version>0.1</version>
- <author mail="rhatto@riseup.net" homepage="https://rhatto.sarava.org">rhatto</author>
+ <author mail="rhatto@riseup.net" homepage="https://rhatto.fluxo.info">rhatto</author>
<license>new BSD License (Please read the source code comments of this plugin)</license>
- <updateURL>https://git.sarava.org/?p=rhatto/dotfiles/vimperator.git;a=summary</updateURL>
+ <updateURL>https://git.fluxo.info/?p=rhatto/dotfiles/vimperator.git;a=summary</updateURL>
<minVersion>2.3</minVersion>
<maxVersion>2.3</maxVersion>
<detail><![CDATA[
@@ -77,7 +77,7 @@ let INFO = xml`
['link'],
'Add link with tags into SemanticScuttle instance',
function (args) {
- var instance = 'https://links.sarava.org/bookmarks?action=add&address=';
+ var instance = 'https://links.fluxo.info/bookmarks?action=add&address=';
var doc = content.document;
var href = encodeURIComponent(content.document.location);
var title = encodeURIComponent(content.document.title);
diff --git a/vimperator.dot.link/plugin/scuttle.js b/vimperator.dot.link/plugin/scuttle.js
index e3f24ea..05bebe2 100644
--- a/vimperator.dot.link/plugin/scuttle.js
+++ b/vimperator.dot.link/plugin/scuttle.js
@@ -29,7 +29,7 @@
commands.addUserCommand(['scuttle'], "Save page as a bookmark on Scuttle",
function(args) {
- var url = "https://links.sarava.org/api/posts/add?";
+ var url = "https://links.fluxo.info/api/posts/add?";
url += "&url=" + encodeURIComponent(buffer.URL);
url += "&description=" + encodeURIComponent(buffer.title);
var re = new RegExp(/"([^"]+)"/);