public
Description: Prototype/Javascript wrapper for the Google Search Appliance Search Protocol. Fancy cross-domain JSON support included.
Homepage:
Clone URL: git://github.com/jnewland/gsa-prototype.git
jnewland (author)
Thu Mar 06 07:08:34 -0800 2008
commit  a222b504e5dcdcd36d4fb770c21c54ad799f6788
tree    160182424955d0e53a7b1109cf9ee1bd25eabdac
parent  3ca8887ab70da88a9e5d6952689af2b396bc9cb1
name age message
file .gitignore Loading commit data...
file LICENSE
file README
file Rakefile
directory dist/
directory lib/
directory pkg/
directory spec/
directory src/
directory xsl/
README
gsa-prototype
=============

Prototype/Javascript wrapper for the Google Search Appliance Search Protocol. Fancy cross-domain JSON support included.

Install
=======

gsa-prototype requires a custom XSL be installed on your Google Search Appliance

* Login to the GSA Admin Console
* Click 'Serving' on the sidebar
* Create a new frontend named 'json'
* Click 'Edit' beside the newly created frontend
* Click 'Edit underlying XSLT code'
* Select 'Import Stylesheet'
* Import the template at xsl/json.xsl
* Done!

Usage
=====

>>> var gsa = new Gsa('foo.com')
>>> gsa.search('jesse newland')
true
>>> gsa.results.first().get('title')
"LexBlog IT Director talks about today&#39;s platform upgrade : Real <b>...</b>"
>>> gsa.results.first().get('url')
"http://kevin.lexblog.com/2007/07/articles/cool-stuff/lexblog-it-director-talks-about-todays-platform-upgrade/"

See inline documentation in gsa.js for more details.