X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=90ac5f9b5bcfc8b79f101fa56d77866ae1ae6331;hb=734ae947be05b28acf364a43196918547da1fb1c;hp=d50f2c391359376f62422591c4250843b322de14;hpb=9045729b4190279596c3078be3d1fd0df7aa7048;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index d50f2c3..90ac5f9 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -1,3 +1,20 @@ +// The Google Images database returns links like: +// http://images.google.com/url?q=http://eofdreams.com/fish.html&sa=U&ei=RAB-U9XNDo2Dqga1o4L4Bw&ved=0CC4Q9QEwAA&usg=AFQjCNFhRtn6GMevHbpITZ6kfx6rsHV2ow +// This Handlebars helper avoids a pointless redirect by transforming +// this to the URL of the underling page, in this case +// http://eofdreams.com/fish.html +// +Handlebars.registerHelper('mkws-googleurl', function(obj) { + if (!obj) { + return "obj undefined"; + } else if (!obj[0]) { + return "obj[0] undefined, JSON=" + $.toJSON(obj); + } else { + return mkws.getParameterByName('q', obj[0]); + } +}); + + // ### This works inefficiently by having multiple teams all run the // same search against different sets of targets. A much better // approach would be run a single search, with all these panels @@ -9,7 +26,7 @@ mkws.registerWidgetType('Credo', function() { this.team.registerTemplate('CredoImage', '\
\ - \ + \ {{#mkws-first md-thumburl}}\ {{../md-title}}\ {{/mkws-first}}\ @@ -42,16 +59,18 @@ mkws.registerWidgetType('Credo', function() { s.push(''); + s.push('
'); + s.push(sectionRow('entries', 'Credo Entries', this.subwidget('Records', { _team: 'main' }))); s.push(sectionRow('articles', 'Articles', - 1 || this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles' }))); s.push(sectionRow('books', 'Books', - 1 || this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books' }))); s.push(sectionRow('news', 'News', - 1 || this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' }))); s.push(sectionRow('resources', 'Suggested Resources', - 1 || this.subwidget('Records', { /* ### config */ }))); + "### Not yet implemented")); s.push('');