raphsabb (owner)

Revisions

gist: 47745 Download_button fork
public
Public Clone URL: git://gist.github.com/47745.git
Embed All Files: show embed
Text only #
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
/*
 
Perform a googlubuntu search
 
*/
 
makeSearchCommand({
  name: "buntu",
  author: { name: "Raphael Sabbat", homepage: "http://raphsabb.blogspot.com"},
  help:
    'eg. <i>"buntu intrepid ibex"</i>' + '<br />' +
    'eg. <i>"buntu suspend issues on a t60"</i>' + '<br />' +
    'eg. <i>"buntu gnomeDo"</i>',
 
  url: "http://www.googlubuntu.com/results/?cx=006238239194895611142%3Au-ocqbntw_o&cof=FORID%3A9&ie=UTF-8&q={QUERY}&sa=Google+Search&lang=en#941",
  icon: "http://www.googlubuntu.com/favicon.ico",
  description: "Perform a Googlubuntu Search for the given words.",
  
  preview: function(pBlock, directObj) {
    if (directObj.text)
      pBlock.innerHtml = "Searches Googlubuntu for " + directObj.text;
    else
      pBlock.innerHTML = "Searches Googlubuntu for the given words.";
  }
});