Lines Matching refs:LogReader

172  * The LogReader class provides UI to read messages logged to YAHOO.widget.Logger.
174 * @class LogReader
180 YAHOO.widget.LogReader = function(elContainer, oConfigs) {
181 this._sName = YAHOO.widget.LogReader._index;
182 YAHOO.widget.LogReader._index++;
198 YAHOO.log("Could not instantiate LogReader due to an invalid container element " +
220 YAHOO.log("LogReader initialized", null, this.toString());
230 * Whether or not LogReader is enabled to output log messages.
236 YAHOO.widget.LogReader.prototype.logReaderEnabled = true;
239 * Public member to access CSS width of the LogReader container.
244 YAHOO.widget.LogReader.prototype.width = null;
247 * Public member to access CSS height of the LogReader container.
252 YAHOO.widget.LogReader.prototype.height = null;
255 * Public member to access CSS top position of the LogReader container.
260 YAHOO.widget.LogReader.prototype.top = null;
263 * Public member to access CSS left position of the LogReader container.
268 YAHOO.widget.LogReader.prototype.left = null;
271 * Public member to access CSS right position of the LogReader container.
276 YAHOO.widget.LogReader.prototype.right = null;
279 * Public member to access CSS bottom position of the LogReader container.
284 YAHOO.widget.LogReader.prototype.bottom = null;
287 * Public member to access CSS font size of the LogReader container.
292 YAHOO.widget.LogReader.prototype.fontSize = null;
295 * Whether or not the footer UI is enabled for the LogReader.
301 YAHOO.widget.LogReader.prototype.footerEnabled = true;
311 YAHOO.widget.LogReader.prototype.verboseOutput = true;
319 YAHOO.widget.LogReader.prototype.newestOnTop = true;
328 YAHOO.widget.LogReader.prototype.outputBuffer = 100;
331 * Maximum number of messages a LogReader console will display.
337 YAHOO.widget.LogReader.prototype.thresholdMax = 500;
340 * When a LogReader console reaches its thresholdMax, it will clear out messages
347 YAHOO.widget.LogReader.prototype.thresholdMin = 100;
350 * True when LogReader is in a collapsed state, false otherwise.
356 YAHOO.widget.LogReader.prototype.isCollapsed = false;
359 * True when LogReader is in a paused state, false otherwise.
365 YAHOO.widget.LogReader.prototype.isPaused = false;
368 * Enables draggable LogReader if DragDrop Utility is present.
374 YAHOO.widget.LogReader.prototype.draggable = true;
383 * Public accessor to the unique name of the LogReader instance.
386 * @return {String} Unique name of the LogReader instance.
388 YAHOO.widget.LogReader.prototype.toString = function() {
389 return "LogReader instance" + this._sName;
393 * get saved to a buffer and then output upon resume of LogReader.
397 YAHOO.widget.LogReader.prototype.pause = function() {
410 YAHOO.widget.LogReader.prototype.resume = function() {
418 * Hides UI of LogReader. Logging functionality is not disrupted.
422 YAHOO.widget.LogReader.prototype.hide = function() {
427 * Shows UI of LogReader. Logging functionality is not disrupted.
431 YAHOO.widget.LogReader.prototype.show = function() {
436 * Collapses UI of LogReader. Logging functionality is not disrupted.
440 YAHOO.widget.LogReader.prototype.collapse = function() {
450 * Expands UI of LogReader. Logging functionality is not disrupted.
454 YAHOO.widget.LogReader.prototype.expand = function() {
470 YAHOO.widget.LogReader.prototype.getCheckbox = function(filter) {
480 YAHOO.widget.LogReader.prototype.getCategories = function() {
490 YAHOO.widget.LogReader.prototype.showCategory = function(sCategory) {
522 YAHOO.widget.LogReader.prototype.hideCategory = function(sCategory) {
543 YAHOO.widget.LogReader.prototype.getSources = function() {
553 YAHOO.widget.LogReader.prototype.showSource = function(sSource) {
584 YAHOO.widget.LogReader.prototype.hideSource = function(sSource) {
607 YAHOO.widget.LogReader.prototype.clearConsole = function() {
625 YAHOO.widget.LogReader.prototype.setTitle = function(sTitle) {
635 YAHOO.widget.LogReader.prototype.getLastTime = function() {
646 YAHOO.widget.LogReader.prototype.formatMsg = function(oLogMsg) {
705 YAHOO.widget.LogReader.prototype.html2Text = function(sHtml) {
720 * Internal class member to index multiple LogReader instances.
728 YAHOO.widget.LogReader._index = 0;
731 * Name of LogReader instance.
737 YAHOO.widget.LogReader.prototype._sName = null;
749 //YAHOO.widget.LogReader._elDefaultContainer = null;
758 YAHOO.widget.LogReader.prototype._buffer = null;
768 YAHOO.widget.LogReader.prototype._consoleMsgCount = 0;
777 YAHOO.widget.LogReader.prototype._lastTime = null;
786 YAHOO.widget.LogReader.prototype._timeout = null;
795 YAHOO.widget.LogReader.prototype._filterCheckboxes = null;
804 YAHOO.widget.LogReader.prototype._categoryFilters = null;
813 YAHOO.widget.LogReader.prototype._sourceFilters = null;
816 * LogReader container element.
822 YAHOO.widget.LogReader.prototype._elContainer = null;
825 * LogReader header element.
831 YAHOO.widget.LogReader.prototype._elHd = null;
834 * LogReader collapse element.
840 YAHOO.widget.LogReader.prototype._elCollapse = null;
843 * LogReader collapse button element.
849 YAHOO.widget.LogReader.prototype._btnCollapse = null;
852 * LogReader title header element.
858 YAHOO.widget.LogReader.prototype._title = null;
861 * LogReader console element.
867 YAHOO.widget.LogReader.prototype._elConsole = null;
870 * LogReader footer element.
876 YAHOO.widget.LogReader.prototype._elFt = null;
879 * LogReader buttons container element.
885 YAHOO.widget.LogReader.prototype._elBtns = null;
888 * Container element for LogReader category filter checkboxes.
894 YAHOO.widget.LogReader.prototype._elCategoryFilters = null;
897 * Container element for LogReader source filter checkboxes.
903 YAHOO.widget.LogReader.prototype._elSourceFilters = null;
906 * LogReader pause button element.
912 YAHOO.widget.LogReader.prototype._btnPause = null;
921 YAHOO.widget.LogReader.prototype._btnClear = null;
936 YAHOO.widget.LogReader.prototype._initContainerEl = function(elContainer) {
951 //YAHOO.widget.LogReader._elDefaultContainer = this._elContainer;
988 YAHOO.widget.LogReader.prototype._initHeaderEl = function() {
1028 YAHOO.widget.LogReader.prototype._initConsoleEl = function() {
1054 YAHOO.widget.LogReader.prototype._initFooterEl = function() {
1107 YAHOO.widget.LogReader.prototype._initDragDrop = function() {
1125 YAHOO.widget.LogReader.prototype._initCategories = function() {
1149 YAHOO.widget.LogReader.prototype._initSources = function() {
1168 * Creates the UI for a category filter in the LogReader footer element.
1174 YAHOO.widget.LogReader.prototype._createCategoryCheckbox = function(sCategory) {
1206 * Creates a checkbox in the LogReader footer element to filter by source.
1212 YAHOO.widget.LogReader.prototype._createSourceCheckbox = function(sSource) {
1249 YAHOO.widget.LogReader.prototype._filterLogs = function() {
1263 YAHOO.widget.LogReader.prototype._printBuffer = function() {
1295 YAHOO.widget.LogReader.prototype._printToConsole = function(aEntries) {
1357 * @param oSelf {Object} The LogReader instance.
1360 YAHOO.widget.LogReader.prototype._onCategoryCreate = function(sType, aArgs, oSelf) {
1377 * @param oSelf {Object} The LogReader instance.
1380 YAHOO.widget.LogReader.prototype._onSourceCreate = function(sType, aArgs, oSelf) {
1396 * @param oSelf {Object} The LogReader instance.
1399 YAHOO.widget.LogReader.prototype._onCheckCategory = function(v, oSelf) {
1414 * @param oSelf {Object} The LogReader instance.
1417 YAHOO.widget.LogReader.prototype._onCheckSource = function(v, oSelf) {
1432 * @param oSelf {Object} The LogReader instance
1435 YAHOO.widget.LogReader.prototype._onClickCollapseBtn = function(v, oSelf) {
1449 * @param oSelf {Object} The LogReader instance.
1452 YAHOO.widget.LogReader.prototype._onClickPauseBtn = function(v, oSelf) {
1466 * @param oSelf {Object} The LogReader instance.
1469 YAHOO.widget.LogReader.prototype._onClickClearBtn = function(v, oSelf) {
1479 * @param oSelf {Object} The LogReader instance.
1482 YAHOO.widget.LogReader.prototype._onNewLog = function(sType, aArgs, oSelf) {
1497 * @param oSelf {Object} The LogReader instance.
1500 YAHOO.widget.LogReader.prototype._onReset = function(sType, aArgs, oSelf) {
1508 * Output may be read through a LogReader console and/or output to a browser
1527 * instance. Provides access to logs for reading by a LogReader instance or