aboutsummaryrefslogtreecommitdiffstats
path: root/commandBookmarklet.js
blob: 5839b26e10580a25f8f7beae26303d451c72c789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
 * bookmarklet wo command ni suru plugin
 *
 * @author halt feits <halt.feits@gmail.com>
 * @version 0.6.0
 */

(function(){
  var filter = "javascript:";
  var items = liberator.bookmarks.get(filter);

  if (items.length == 0) {
    if (filter.length > 0) {
      liberator.echoerr("E283: No bookmarks matching \"" + filter + "\"");
    } else {
      liberator.echoerr("No bookmarks set");
    }
  }

  items.forEach(function(item) {
    var [url, title] = item;
    if (width(title) > 50) {
      while (width(title) > 47)
        title = title.slice(0, -1);
      title +=  "...";
    }
    title = liberator.util.escapeHTML(title);

    url = liberator.util.escapeHTML(url);
    var command = new Function("", 'liberator.open("' + url + '");');
    liberator.commands.addUserCommand(
      [title],
      "bookmarklet",
      command,
      {
        shortHelp: "bookmarklet",
      }
    );
  });

  function width(str) str.replace(/[^\x20-\xFF]/g, "  ").length;
})();
// vim:sw=2 ts=2 et: