]> gitweb.fluxo.info Git - rhatto/dotfiles/vimperator.git/commitdiff
Updates New links URL
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 28 Sep 2015 20:55:06 +0000 (17:55 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 28 Sep 2015 20:55:06 +0000 (17:55 -0300)
vimperator.dot.link/plugin/links.js
vimperator.dot.link/plugin/scuttle.js

index 763d281432571a2e9d0642f340ef07f200d9ce08..45998d3fce042f0409dbd46d19db55116306872a 100644 (file)
@@ -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);
index e3f24ea8192c96f528c32733cf2337884e21271c..05bebe29e9a699770548e7f9c3ddc68d7e1fcf0e 100644 (file)
@@ -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(/"([^"]+)"/);