var m_template = {}; // compiled templates, from any source
var m_widgets = {}; // Maps widget-type to array of widget objects
var m_gotRecords = false;
+ var m_targetMap = {}; // Maps target ID to human-readable name
var config = mkws.objectInheritingFrom(mkws.config);
that.config = config;
}
}
return undefined;
- }
+ };
+
+ that.mapTarget = function(id, name) {
+ var old = m_targetMap[id];
+ m_targetMap[id] = name;
+ if (old && name !== old) {
+ that.warn("targetMap for id '" + id + "' changed from '" + old + "' to '" + name + "'");
+ }
+ };
+ that.targetName = function(id) {
+ return m_targetMap[id] || id;
+ }
return that;
};