includes/clientside/firebug/src/firebugx.js
author Dan
Tue, 05 May 2009 00:10:26 -0400
changeset 953 323c4cd1aa37
parent 551 3acd624d4f4f
permissions -rw-r--r--
Made some more changes to the way namespaces are handled, for optimization purposes. This is a bit of a structural reorganization: $paths->pages is obsoleted in its entirety; calculating page existence and metadata is now the job of the Namespace_* backend class. There are many things in PageProcessor that should be reorganized, and page actions in general should really be rethought. This is probably the beginning of a long process that will be taking place over the course of the betas.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
551
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     1
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     2
if (!("console" in window) || !("firebug" in console))
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     3
{
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     4
    var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     5
    "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     6
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     7
    window.console = {};
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     8
    for (var i = 0; i < names.length; ++i)
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
     9
        window.console[names[i]] = function() {}
3acd624d4f4f Minified some JS files using YUI compressor
Dan
parents:
diff changeset
    10
}