head	1.2;
access;
symbols
	tcllib-1-13:1.2
	tcllib-1-12:1.2;
locks; strict;
comment	@# @;


1.2
date	2009.02.25.17.08.52;	author afaupell;	state Exp;
branches;
next	1.1;

1.1
date	2009.02.05.03.27.53;	author afaupell;	state Exp;
branches;
next	;


desc
@@


1.2
log
@add documentation links for twitter, delicious, yboss. fix metadata in man page
@
text
@# documentation: http://developer.yahoo.com/search/boss/boss_guide/

package require rest

set yboss(web) {
   url http://boss.yahooapis.com/ysearch/web/v1/%query%
   req_args { appid: }
   opt_args { start: count: lang: region: sites: filter: type: }
   post_transform { return [dict get $result ysearchresponse] }
   check_result { {[dict get $result responsecode] == "200"} {} }
}

set yboss(news) {
   url http://boss.yahooapis.com/ysearch/news/v1/%query%
   req_args { appid: }
   opt_args { start: count: lang: region: sites: age: }
   post_transform { return [dict get $result ysearchresponse] }
   check_result { {[dict $result responsecode] == "200"} {} }
}

set yboss(images) {
   url http://boss.yahooapis.com/ysearch/images/v1/%query%
   req_args { appid: }
   opt_args { start: count: lang: region: sites: filter: dimensions: refererurl: url: }
   post_transform { return [dict get $result ysearchresponse] }
   check_result { {[dict $result responsecode] == "200"} {} }
}

set yboss(spelling) {
   url http://boss.yahooapis.com/ysearch/spelling/v1/%query%
   req_args { appid: }
   post_transform { return [dict get $result ysearchresponse] }
   check_result { {[dict $result responsecode] == "200"} {} }
}

rest::create_interface yboss
@


1.1
log
@initial commit
@
text
@d1 2
@

