X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=0d8c3e68b85ef37c06acec3cc2e12d2183f8c82b;hp=59a9a13162b12def3c1e0baa3f33bac4e60f4069;hb=ea01fe1401838b2afade3d628c8b455a61fca8d5;hpb=5d2f6ac42949f5553a483d37a8b57a2f2f96bc5f diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 59a9a13..0d8c3e6 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -32,10 +32,13 @@ mkws.registerWidgetType('Credo', function() { {{/mkws-first}}\
\ \ -

{{md-title}}

\ +

{{{md-title}}}

\ \ '); + // Inhibit the display of the sole facet's title. + this.team.registerTemplate('facetTitle-Subject', 'doo'); + var s = [] s.push(''); @@ -47,30 +50,26 @@ mkws.registerWidgetType('Credo', function() { this.subwidget('Reference', { _team: 'ref', paragraphs: 1 }))); // The Images widget needs to be in our team so we can set its template s.push(section('image', 'Images', - this.subwidget('GoogleImage', { maxrecs: 4, template: 'CredoImage' }))); + this.subwidget('GoogleImage', { maxrecs: 3, template: 'CredoImage', target: 'google_images_js' }))); s.push(''); s.push(''); s.push(''); s.push(''); - s.push(sectionRow('entries', 'Credo Entries', - this.subwidget('Records', { _team: 'main' }))); + s.push(sectionRow('entries', 'News', + this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news', perpage: 10 }))); s.push(sectionRow('articles', 'Articles', - this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles' }))); + this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles', perpage: 10 }))); s.push(sectionRow('books', 'Books', - this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books' }))); - s.push(sectionRow('news', 'News', - this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' }))); - s.push(sectionRow('resources', 'Suggested Resources', - "### Not yet implemented")); + this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books', perpage: 10 }))); + s.push(sectionRow('news', 'Results from all targets', + this.subwidget('Records', { _team: 'main' }))); s.push('
'); - s.push(section('mindmap', 'Create a Mind Map for ', - this.subwidget('Mindmap', { _team: 'main', facet: 'subject' }))); s.push(section('topics', 'Related Topics', - this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); + this.subwidget('Facet', { _team: 'main', facet: 'subject', template: 'CredoFacet' }))); s.push('

'); @@ -112,8 +111,3 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); - - -mkws.registerWidgetType('Mindmap', function() { - this.node.html("### We do not yet have a Mindmap widget"); -});