X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-ru.js;fp=examples%2Fhtdocs%2Fmkws-widget-ru.js;h=0fb6c678c31abb925de1303b245f023a47c7153a;hp=4b7054fa3e658621a9c9ed68c7562032db6cffdc;hb=ee2ed5b10dc202c31b82fa58c440c5fa444e5d06;hpb=4f02a5871f4172628a30110a248a1f262300c62c diff --git a/examples/htdocs/mkws-widget-ru.js b/examples/htdocs/mkws-widget-ru.js index 4b7054f..0fb6c67 100644 --- a/examples/htdocs/mkws-widget-ru.js +++ b/examples/htdocs/mkws-widget-ru.js @@ -1,7 +1,23 @@ +var mkws_config = {service_proxy_auth: "http://mkws.indexdata.com/service-proxy/?command=auth&action=login&username=paratext&password=paratext_mkc"}; +console.log(JSON.stringify(mkws.config)); + mkws.registerWidgetType('ReferenceUniverse', function() { - //this.team.config.service_proxy_auth = "http://mkws.indexdata.com/service-proxy/?command=auth&action=login&username=paratext&password=paratext_mkc"; - // this.team.config.perpage_default = 5; - // this.team.config.sort_default = "position"; - this.node.html("

Reference Universe results:

\n" + - this.subwidget('Records', { sort: 'position', perpage: 5 })); + if (!this.config.perpage) this.config.perpage = 5; + if (!this.config.sort) this.config.sort = "position"; + this.config.template = 'ReferenceUniverse'; + this.team.registerTemplate('ReferenceUniverse', '\ +{{#mkws-first md-electronic-url}}\ +\ +{{/mkws-first}}\ + {{md-title}}\ +\ +{{#if md-title-remainder}}\ + {{md-title-remainder}}\ +{{/if}}\ +{{#if md-title-responsibility}}\ + {{md-title-responsibility}}\ +{{/if}}\ +'); + this.node.html("

Reference Universe results:

\n" + + this.subwidget('Records')); });