X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=ff5a50cd7aa9f588242a3e8c5391a6ea2fee11b4;hb=0f0a68dd075236217c3dd99fbaf84dfe592ac69c;hp=d0cbfe2815d65ada853ae17643c356ba5681c0a6;hpb=33ace780f38dcd06a5d32dab0b54dc66e19da05d;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index d0cbfe2..ff5a50c 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -1,3 +1,14 @@ +// 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) { + 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 +20,7 @@ mkws.registerWidgetType('Credo', function() { this.team.registerTemplate('CredoImage', '\
\ - \ + \ {{#mkws-first md-thumburl}}\ {{../md-title}}\ {{/mkws-first}}\ @@ -35,19 +46,21 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(section('mindmap', 'Create a Mind Map for ### title', - '### Is there a way to make a mind-map?')); + this.subwidget('Mindmap', { _team: 'main', facet: 'subject' }))); s.push(section('topics', 'Related Topics', this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); s.push(''); 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 */ }))); s.push(sectionRow('resources', 'Suggested Resources', @@ -77,3 +90,8 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); + + +mkws.registerWidgetType('Mindmap', function() { + this.node.html("### We do not yet have a Mindmap widget"); +});