X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=f8efb57b5519b88c29369c27d459437902752955;hb=967e58eeb2f1adc26266817db19ac426e7be6860;hp=f00abf736afdd39ecfc6227cea4a9ea6eaa71549;hpb=1bb66f54c1f55f02536aebcb497a26fdc2d10fb0;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index f00abf7..f8efb57 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -44,15 +44,13 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(section('encyclopaedia', 'Topic Page: ', - this.subwidget('Reference', { _team: 'ref' }))); + 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' }))); s.push(''); 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' }))); s.push(''); @@ -61,7 +59,7 @@ mkws.registerWidgetType('Credo', function() { s.push('
'); - s.push(sectionRow('entries', 'Credo Entries', + s.push(sectionRow('entries', 'Results from all targets', this.subwidget('Records', { _team: 'main' }))); s.push(sectionRow('articles', 'Articles', this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles' }))); @@ -69,8 +67,6 @@ mkws.registerWidgetType('Credo', function() { 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")); s.push(''); @@ -79,10 +75,17 @@ mkws.registerWidgetType('Credo', function() { // Fill in the titles from the query once widgets have all been prepared var that = this; this.team.queue("ready").subscribe(function() { - var query = that.config.query; + var query = toTitleCase(that.config.query); that.log("got query '" + query + "' from team config"); mkws.$('.x-mkws-title').html(query); mkws.$('title').html("MKWS: " + query); + + // Derived from http://stackoverflow.com/questions/196972/convert-string-to-title-case-with-javascript + function toTitleCase(str) { + return str.replace(/\w\S*/g, function(txt) { + return txt.charAt(0).toUpperCase() + txt.substr(1); + }); + } }); @@ -105,8 +108,3 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); - - -mkws.registerWidgetType('Mindmap', function() { - this.node.html("### We do not yet have a Mindmap widget"); -});