2 * (C) Copyright 2004-2007 Shawn Betts
3 * (C) Copyright 2007-2008 John J. Foerch
4 * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
6 * Use, modification, and distribution are subject to the terms specified in the
14 define_keywords("$completer", "$description", "$argument", "$alternative",
16 function define_webjump (key, handler) {
18 var argument = arguments.$argument;
19 let alternative = arguments.$alternative;
20 var post_data = arguments.$post_data;
22 // handler may be a function or a string. An alternative url may
23 // be passed using the $alternative keyword; it is used in place
24 // of the handler when no arguments are supplied by the user when
25 // invoking the webjump (see get_webjump). For string webjumps
26 // that contain %s and for which no alternative is provided, an
27 // alternative is autogenerated by trimming the path from the url.
28 // A webjump can thus function both as a way to invoke a search
31 // When the handler is a string and post_data is given the webjump
32 // will result in a POST. A '%s' element in post_data will be
33 // replaced by the webjump argument and the alternative is the
34 // same as the handler (but as a GET).
36 // The argument property may be false (no arguments will be
37 // accepted for the webjump), true (arguments are required for the
38 // webjump) or 'optional' (arguments are accepted but not
39 // required). If the property is not specified, a sensible default
40 // is chosen depending on the type of the handler and whether an
41 // alternative is specified. If the property is false, then
42 // completing on the name of the webjump in the minibuffer will
43 // not result in a space being appended.
45 if (typeof(handler) == "function") {
46 if (argument == null && alternative == null)
48 } else if (typeof(handler) == "string") {
49 if (post_data && alternative == null)
50 alternative = handler;
51 else if (handler.indexOf('%s') == -1)
53 else if (alternative == null)
54 alternative = url_path_trim(handler);
56 if (alternative && argument == null)
57 argument = 'optional';
59 function make_string_handler (template) {
60 var b = template.indexOf('%s');
61 return function (arg) {
63 // Just return the same string if it doesn't contain a %s
66 return template.substr(0,b) + encodeURIComponent(arg) + template.substring(a);
70 function make_post_handler (uri, post_data) {
71 return function (arg) {
74 post_data: make_post_data(post_data.map(function (pair) {
76 return [pair[0], arg];
84 if (typeof(handler) == "string") {
86 handler = make_post_handler(handler, post_data);
88 handler = make_string_handler(handler);
91 webjumps[key] = { key: key,
93 completer: arguments.$completer,
94 description: arguments.$description,
96 alternative: alternative};
99 function define_delicious_webjumps (username) {
100 define_webjump("delicious", "http://www.delicious.com/" + username + "/%s",
101 $alternative = "http://www.delicious.com/" + username);
102 define_webjump("adelicious", "javascript:location.href='http://www.delicious.com/save"+
103 "?v=2&url='+encodeURIComponent(location.href)+'&title='+"+
104 "encodeURIComponent(document.title);");
105 define_webjump("sdelicious", "http://www.delicious.com/search?p=%s&u="+username+
106 "&chk=&context=userposts&fr=del_icio_us&lc=1");
107 define_webjump("sadelicious", "http://www.delicious.com/search/all?search=%s");
110 add_delicious_webjumps = define_delicious_webjumps;
112 function define_lastfm_webjumps (username) {
113 if (! username) username = "";
114 define_webjump("lastfm", "http://www.last.fm/user/"+username);
115 define_webjump("lastfm-user", "http://www.last.fm/user/%s");
116 define_webjump("lastfm-music", "http://www.last.fm/search?m=all&q=%s");
117 define_webjump("lastfm-group", "http://www.last.fm/users/groups?s_bio=%s");
118 define_webjump("lastfm-tag", "http://www.last.fm/search?m=tag&q=%s");
119 define_webjump("lastfm-label", "http://www.last.fm/search?m=label&q=%s");
120 define_webjump("lastfm-event", "http://www.last.fm/events?by=artists&q=%s");
123 add_lastfm_webjumps = define_lastfm_webjumps;
125 function clear_webjumps () {
129 // Some built in web jumps
130 function define_default_webjumps () {
131 define_webjump("conkerorwiki",
132 "http://conkeror.org/?action=fullsearch&context=60&value=%s&fullsearch=Text");
133 define_webjump("lucky", "http://www.google.com/search?q=%s&btnI=I'm Feeling Lucky");
134 define_webjump("maps", "http://maps.google.com/?q=%s");
135 define_webjump("scholar", "http://scholar.google.com/scholar?q=%s");
136 define_webjump("clusty", "http://www.clusty.com/search?query=%s");
137 define_webjump("slang", "http://www.urbandictionary.com/define.php?term=%s");
138 define_webjump("dictionary", "http://dictionary.reference.com/search?q=%s");
139 define_webjump("image", "http://images.google.com/images?q=%s");
140 define_webjump("clhs",
141 "http://www.xach.com/clhs?q=%s",
142 $alternative = "http://www.lispworks.com/documentation/HyperSpec/Front/index.htm");
143 define_webjump("cliki", "http://www.cliki.net/admin/search?words=%s");
144 define_webjump("ratpoisonwiki", "http://ratpoison.antidesktop.net/?search=%s");
145 define_webjump("stumpwmwiki", "http://stumpwm.antidesktop.net/wiki?search=%s");
146 define_webjump("savannah",
147 "http://savannah.gnu.org/search/?words=%s&type_of_search=soft&Search=Search&exact=1");
148 define_webjump("sourceforge", "http://sourceforge.net/search/?words=%s");
149 define_webjump("freshmeat", "http://freshmeat.net/search/?q=%s");
150 define_webjump("slashdot", "http://slashdot.org/search.pl?query=%s");
151 define_webjump("kuro5hin", "http://www.kuro5hin.org/?op=search&string=%s");
154 define_variable("webjump_partial_match", true,
155 "When entering a url, if the input is not a webjump, " +
156 "but would uniquely complete to a webjump, then accept " +
157 "that webjump only if this is true.");
159 function match_webjump (str) {
160 var sp = str.indexOf(' ');
167 key = str.substring(0, sp);
168 arg = str.substring(sp + 1);
169 if (/^\s*$/.test(arg))
173 // Look for an exact match
174 var match = webjumps[key];
176 // Look for a partial match
177 if (!match && webjump_partial_match) {
178 for (let [k,v] in Iterator(webjumps)) {
179 if (String(k).substring(0, key.length) == key) {
181 // key is not a unique prefix, as there are multiple partial matches
190 if (arg == null && match.argument == true)
191 throw interactive_error('Webjump '+key+' requires an argument.');
192 return [match, key, arg];
198 function get_webjump (value) {
199 var res = match_webjump(value);
202 let [match,key,arg] = res;
203 if (arg == null && match.alternative)
204 return match.alternative;
205 return match.handler(arg);
208 function get_url_or_webjump (input) {
209 var url = get_webjump(input);
216 define_default_webjumps();
218 function webjump_completer () {
219 let base_completer = prefix_completer(
220 $completions = [ v for ([k,v] in Iterator(webjumps)) ],
221 $get_string = function (x) { return x.key + (x.argument ? " " : ""); },
222 $get_description = function (x) { return x.description || ""; });
223 return function (input, pos, conservative) {
224 let str = input.substring(0,pos);
226 try { res = match_webjump(str); }
227 catch (e) { res = null; }
229 let [match, key, arg] = res;
230 if (arg != null) { // If there is no argument yet, we use the base completer
231 if (match.completer) {
232 let c = yield match.completer.call(null, arg, pos - key.length - 1, conservative);
233 yield co_return(nest_completions(c, match.key + " "));
235 yield co_return(null);
238 yield co_return(base_completer(input, pos, conservative));