From d528b30ae6491e1e83dd4c584f5d0838a88ae61e Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Tue, 28 Dec 2010 20:26:39 -0800 Subject: [PATCH] seasonfood.js: List seasonal food from BBC GoodFood. --- examples/seasonfood.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 examples/seasonfood.js diff --git a/examples/seasonfood.js b/examples/seasonfood.js new file mode 100644 index 00000000..fe875f12 --- /dev/null +++ b/examples/seasonfood.js @@ -0,0 +1,19 @@ +// Show BBC seasonal food list. + +var cbfunc = function (data) { + var list = data.query.results.results.result, + names = ['January', 'February', 'March', + 'April', 'May', 'June', + 'July', 'August', 'September', + 'October', 'November', 'December']; + list.forEach(function (item) { + phantom.log([item.name.replace(/\s/ig, ' '), ':', + names[item.atItsBestUntil], 'to', + names[item.atItsBestFrom]].join(' ')); + }); + phantom.exit(); +}; + +var el = document.createElement('script'); +el.src = 'http://query.yahooapis.com/v1/public/yql?q=SELECT%20*%20FROM%20bbc.goodfood.seasonal%3B&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=cbfunc'; +document.body.appendChild(el);