X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-core.js;h=a3a1ac91e2653d143ae56af3b539b04fd1dc3910;hb=99f12f4cbd8c7a89b5b976fe2c1a7d40e4c5441e;hp=f90c7595169a2d6907e517d49047af7b87e93474;hpb=7bec77fef02180dbd735b5dab193fb3c1d7c0ece;p=mkws-moved-to-github.git diff --git a/src/mkws-core.js b/src/mkws-core.js index f90c759..a3a1ac9 100644 --- a/src/mkws-core.js +++ b/src/mkws-core.js @@ -9,7 +9,9 @@ // Set up global mkws object. Contains truly global state such as SP // authentication, and a hash of team objects, indexed by team-name. // -var mkws = { +// We set it as a property of window to make the global explicit as +// some things complain about an implicit global. +window.mkws = { $: $, // Our own local copy of the jQuery object authenticated: false, log_level: 1, // Will be overridden from mkws.config, but @@ -113,12 +115,12 @@ mkws.log = function(string) { // navigation. pz2.js picks this up and uses it as part of the // cookie-name, to ensure each tab gets its own session. if (window.name) { - console.log("Using existing window.name '" + window.name + "'"); + mkws.log("Using existing window.name '" + window.name + "'"); } else { // Ten chars from 26 alpha-numerics = 36^10 = 3.65e15 combinations. // At one per second, it will take 116 million years to duplicate a session window.name = Math.random().toString(36).slice(2, 12); - console.log("Generated new window.name '" + window.name + "'"); + mkws.log("Generated new window.name '" + window.name + "'"); } @@ -377,7 +379,26 @@ mkws.pagerNext = function(tname) { } } - if (!teamName) teamName = "AUTO"; + // Widgets without a team are on team "AUTO" + if (!teamName) { + teamName = "AUTO"; + // Autosearch widgets don't join team AUTO if there is already an + // autosearch on the team or the team has otherwise gotten a query + if (node.hasAttribute("autosearch")) { + if (mkws.autoHasAuto || + mkws.teams["AUTO"] && mkws.teams["AUTO"].config["query"]) { + log("AUTO team already has a query, using unique team"); + teamName = "UNIQUE"; + } + mkws.autoHasAuto = true; + } + } + + // Widgets on team "UNIQUE" get a random team + if (teamName === "UNIQUE") { + teamName = Math.floor(Math.random() * 100000000).toString(); + } + callback.call(node, teamName, type); } @@ -521,6 +542,7 @@ mkws.pagerNext = function(tname) { function init(rootsel) { + mkws.autoHasAuto = false; if (!rootsel) var rootsel = ':root'; var saved_config; if (typeof mkws_config === 'undefined') {