Anonymous (owner)

Revisions

  • 94db80 Fri Sep 25 00:04:15 -0700 2009
gist: 193375 Download_button fork
public
Description:
Ubiquity command for searching books/authors on flipkart.com
Public Clone URL: git://gist.github.com/193375.git
Embed All Files: show embed
x.js #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CmdUtils.CreateCommand({
  names: ["flipkart"],
  icon: "http://www.flipkart.com/favicon.ico",
  description: "Get price/availability info on books from fipkart",
  help: "Type flipkart followed by the book/author name",
  author: {name: "Ujjwal Grover", email: "ujjwalgrover@gmail.com", twitter: "ujj"},
  license: "GPL",
  homepage: "http://labs.mozilla.com/",
  arguments: [{role: 'object', nountype: noun_arb_text}],
  execute: getDetails
});
 
 
function getDetails(book) {
 var prefix_url = "http://www.flipkart.com/search-books/"
 var bookname = book.object.text;
 var url = prefix_url + bookname;
 Utils.openUrlInBrowser(url, "") ;
}