X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-core.js;h=137ae380fbfbd2be7cfefcc0e4edf5a01f75853a;hp=327519a2ef111450c4c53b4161fedb0b0a881e4c;hb=327ec51b8ff7cd05c7470765de6ee29b1bb2ee0f;hpb=f4860b3d6d8965ad2999eca215adb801defdf7a2 diff --git a/src/mkws-core.js b/src/mkws-core.js index 327519a..137ae38 100644 --- a/src/mkws-core.js +++ b/src/mkws-core.js @@ -1,5 +1,5 @@ /*! MKWS, the MasterKey Widget Set. - * Copyright (C) 2013-2014 Index Data + * Copyright (C) 2013-2015 Index Data * See the file LICENSE for details */ @@ -45,9 +45,15 @@ window.mkws = { "Date": "Datum", "Subject": "Schlagwort", "subject": "schlagwort", - "Location": "Ort", + "Location": "Bestand", + "Locations": "Bestand", "Records": "Datensätze", "Targets": "Datenbanken", + "State": "Status", + "relevance": "Relevanz", + "title": "Titel", + "newest": "Neueste", + "oldest": "Älteste", "dummy": "dummy" }, @@ -75,8 +81,14 @@ window.mkws = { "Subject": "Emneord", "subject": "emneord", "Location": "Lokation", + "Locations": "Lokation", "Records": "Poster", "Targets": "Baser", + "State": "Status", + "relevance": "Relevans", + "title": "Titel", + "newest": "Nyeste", + "oldest": "Ældste", "dummy": "dummy" } @@ -162,7 +174,7 @@ mkws.registerWidgetType = function(name, fn) { mkws.aliasWidgetType = function(newName, oldName) { mkws.widgetType2function[newName] = mkws.widgetType2function[oldName]; mkws.info("aliased widget-type '" + newName + "' to '" + oldName + "'"); - + }; mkws.promotionFunction = function(name) { @@ -538,7 +550,7 @@ mkws.info("Using window.name '" + window.name + "'"); // or a selector string you would like to constrain the search for widgets to. // // This function has no side effects if run again on an operating session, - // even if the element/selector passed causes existing widgets to be reparsed: + // even if the element/selector passed causes existing widgets to be reparsed: // // (TODO: that last bit isn't true and we currently have to avoid reinitialising // widgets, MKWS-261) @@ -549,7 +561,7 @@ mkws.info("Using window.name '" + window.name + "'"); mkws.init = function(message, rootsel) { var greet = "MKWS initialised"; if (rootsel) greet += " (limited to " + rootsel + ")" - if (message) greet += " :: " + message; + if (message) greet += " :: " + message; mkws.info(greet); // MKWS is not active until init() has been run against an object with widget nodes. @@ -658,8 +670,11 @@ mkws.info("Using window.name '" + window.name + "'"); } else if (!mkws.authenticating) { // raw pp2 or we have a session already open runAutoSearches(); + for (var teamName in mkws.teams) { + mkws.teams[teamName].queue("authenticated").publish(); + } } - + mkws.isActive = true; return true; };