From 7ef0a646ae2a3346a60b317de03d2a5509887b48 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 22 May 2014 14:28:07 +0100 Subject: [PATCH] Remove no-longer-needed old versions of Credo files --- ...e-1efb82332d8d1a9293ad60f7517668cfcce480b0.html | 31 ---------- ...edo-1efb82332d8d1a9293ad60f7517668cfcce480b0.js | 59 -------------------- 2 files changed, 90 deletions(-) delete mode 100644 examples/htdocs/mike-1efb82332d8d1a9293ad60f7517668cfcce480b0.html delete mode 100644 examples/htdocs/mkws-widget-credo-1efb82332d8d1a9293ad60f7517668cfcce480b0.js diff --git a/examples/htdocs/mike-1efb82332d8d1a9293ad60f7517668cfcce480b0.html b/examples/htdocs/mike-1efb82332d8d1a9293ad60f7517668cfcce480b0.html deleted file mode 100644 index f622d8e..0000000 --- a/examples/htdocs/mike-1efb82332d8d1a9293ad60f7517668cfcce480b0.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - MKWS demo: Reference Universe widget - - - - - - - - - - - - - - - - - - - - - - -
result will appear here
- - diff --git a/examples/htdocs/mkws-widget-credo-1efb82332d8d1a9293ad60f7517668cfcce480b0.js b/examples/htdocs/mkws-widget-credo-1efb82332d8d1a9293ad60f7517668cfcce480b0.js deleted file mode 100644 index 2bb1b1a..0000000 --- a/examples/htdocs/mkws-widget-credo-1efb82332d8d1a9293ad60f7517668cfcce480b0.js +++ /dev/null @@ -1,59 +0,0 @@ -mkws.registerWidgetType('Credo', function() { - var that = this; - var s = [] - s.push(''); - - // Main panel: encylopaedia and images on the left, topics on the right - s.push(''); - - s.push(''); - - s.push(''); - - s.push(''); - - s.push(sectionRow('entries', 'Credo Entries', - this.subwidget('Records', { /* ### config */ }))); - s.push(sectionRow('articles', 'Articles', - this.subwidget('Records', { /* ### config */ }))); - s.push(sectionRow('books', 'Books', - this.subwidget('Records', { /* ### config */ }))); - s.push(sectionRow('news', 'News', - this.subwidget('Records', { /* ### config */ }))); - s.push(sectionRow('resources', 'Suggested Resources', - this.subwidget('Records', { /* ### config */ }))); - - s.push('
'); - s.push(section('encyclopaedia', 'Topic Page: ### title', - this.subwidget('Reference'))); - s.push(section('image', 'Images', - this.subwidget('Images', { /* ### config */ }))); - s.push(''); - s.push(section('mindmap', 'Create a Mind Map for ### title', - '### Is there a way to make a mind-map?')); - s.push(section('topics', 'Related Topics', - this.subwidget('Facet', { facet: 'subject' }))); - s.push('
'); - - this.node.html(s.join('')); - - - function section(xclass, title, content) { - var s = []; - s.push('
'); - s.push('
' + title + '
'); - s.push('
' + content + '
'); - s.push('
'); - return s.join(''); - } - - function sectionRow(xclass, title, content) { - var s = []; - s.push(''); - s.push(''); - s.push(section(xclass, title, content)); - s.push(''); - s.push(''); - return s.join(''); - } -}); -- 1.7.10.4