X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-core.js;h=753ffed5ac49d1b5720f40c962e1a4edd8a9d101;hb=ecaa075ace18ba78f16dedc4a77c4caf5bc6f7da;hp=eb498c3c7a34de6af3ec7def42b51e06e46eff0c;hpb=a22e1f2b5b099b8f121e5e64a0070eb4cc7b2a1e;p=mkws-moved-to-github.git diff --git a/src/mkws-core.js b/src/mkws-core.js index eb498c3..753ffed 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); } @@ -281,6 +294,8 @@ if (mkws_config == null || typeof mkws_config != 'object') { log("Service proxy auth successfully done"); mkws.authenticated = true; + mkws.authName = $(data).find("displayName").text(); + log("authName='" + mkws.authName + "'"); runAutoSearches(); }); }