aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/seasonfood.coffee
blob: 5228c26f38569de5517afbe359961cbb5e4acdf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Show BBC seasonal food list.

window.cbfunc = (data) ->
  list = data.query.results.results.result
  names = ['January', 'February', 'March',
           'April', 'May', 'June',
           'July', 'August', 'September',
           'October', 'November', 'December']
  for item in list
    console.log [item.name.replace(/\s/ig, ' '), ':',
                names[item.atItsBestUntil], 'to',
                names[item.atItsBestFrom]].join(' ')
  phantom.exit()

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=window.cbfunc'
document.body.appendChild el