// Copyright 2005-2006 Google // // Author: Steffen Meschkat // // A very simple logging facility, used in test/xpath.html. var logging__ = true; function Log() {}; Log.lines = []; Log.write = function(s) { if (logging__) { this.lines.push(xmlEscapeText(s)); this.show(); } }; // Writes the given XML with every tag on a new line. Log.writeXML = function(xml) { if (logging__) { var s0 = xml.replace(/'); this.lines.push(s2); this.show(); } } // Writes without any escaping Log.writeRaw = function(s) { if (logging__) { this.lines.push(s); this.show(); } } Log.clear = function() { if (logging__) { var l = this.div(); l.innerHTML = ''; this.lines = []; } } Log.show = function() { var l = this.div(); l.innerHTML += this.lines.join('
') + '
'; this.lines = []; l.scrollTop = l.scrollHeight; } Log.div = function() { var l = document.getElementById('log'); if (!l) { l = document.createElement('div'); l.id = 'log'; l.style.position = 'absolute'; l.style.right = '5px'; l.style.top = '5px'; l.style.width = '250px'; l.style.height = '150px'; l.style.overflow = 'auto'; l.style.backgroundColor = '#f0f0f0'; l.style.border = '1px solid gray'; l.style.fontSize = '10px'; l.style.padding = '5px'; document.body.appendChild(l); } return l; } // Reimplement the log functions from util.js to use the simple log. function xpathLog(msg) { Log.write(msg); }; function xsltLog(msg) {}; function xsltLogXml(msg) {};