X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-core.js;h=7df143ab0957dd76a566aadd6bcd665f64663000;hb=428b73f9bb4591271adcb81062ae611231450091;hp=da57e9486a93c268f7ee9fd421e5dca674535b2b;hpb=b9ec634af85ea55b6241d4ffe1c23189a2840f26;p=mkws-moved-to-github.git diff --git a/src/mkws-core.js b/src/mkws-core.js index da57e94..7df143a 100644 --- a/src/mkws-core.js +++ b/src/mkws-core.js @@ -14,6 +14,8 @@ var mkws = { log_level: 1, // Will be overridden from mkws_config, but // initial value allows jQuery popup to use logging. teams: {}, + widgetType2function: {}, + locale_lang: { "de": { "Authors": "Autoren", @@ -103,6 +105,16 @@ if (mkws_config == null || typeof mkws_config != 'object') { mkws.log = log; + mkws.registerWidgetType = function(name, fn) { + mkws.widgetType2function[name] = fn; + log("registered widget-type '" + name + "'"); + } + + mkws.promotionFunction = function(name) { + return mkws.widgetType2function[name]; + } + + function handleNodeWithTeam(node, callback) { // First branch for DOM objects; second branch for jQuery objects var classes = node.className || node.attr('class'); @@ -162,8 +174,9 @@ if (mkws_config == null || typeof mkws_config != 'object') { // The following functions are dispatchers for team methods that - // are called from the UI using a te3am-name rather than implicit - // context. + // are called from the UI using a team-name rather than implicit + // context. Apart from mkws.log, they are the ONLY public UI to + // this module. mkws.switchView = function(tname, view) { mkws.teams[tname].switchView(view); } @@ -275,7 +288,7 @@ if (mkws_config == null || typeof mkws_config != 'object') { } var status = $(data).find("status"); if (status.text() != "OK") { - alert("service proxy auth repsonse status: " + status.text() + ", give up!"); + alert("service proxy auth response status: " + status.text() + ", give up!"); return; } @@ -296,7 +309,6 @@ if (mkws_config == null || typeof mkws_config != 'object') { $(document).ready(function() { - log("on load ready"); defaultMkwsConfig(); if (mkws_config.query_width < 5 || mkws_config.query_width > 150) {