Lines Matching refs:d

51         for(command in firebug.d.console.cmd){
52 window.console[command] = firebug.lib.util.Curry(firebug.d.console.run,window,command);
56 firebug.d.console.run('error',firebug.lib.util.String.format('{0} ({1},{2})',_message,firebug.getFileName(_file),_line));
151 el.button.inspect = new lib.element("A").attribute.addClass("Button").event.addListener("click",internal.targetWindow.firebug.d.inspector.toggle).update("Inspect").insert(el.button.container);
170 el.nav.console = new lib.element("A").attribute.addClass("Tab Selected").event.addListener("click",lib.util.Curry(d.navigate,window,"console")).update("Console").insert(el.nav.container);
171 el.nav.html = new lib.element("A").attribute.addClass("Tab").update("HTML").event.addListener("click",lib.util.Curry(d.navigate,window,"html")).insert(el.nav.container);
172 el.nav.css = new lib.element("A").attribute.addClass("Tab").update("CSS").event.addListener("click",lib.util.Curry(d.navigate,window,"css")).insert(el.nav.container);
174 el.nav.scripts = new lib.element("A").attribute.addClass("Tab").update("Script").event.addListener("click",lib.util.Curry(d.navigate,window,"scripts")).insert(el.nav.container);
176 el.nav.dom = new lib.element("A").attribute.addClass("Tab").update("DOM").event.addListener("click",lib.util.Curry(d.navigate,internal.targetWindow,"dom")).insert(el.nav.container);
177 el.nav.xhr = new lib.element("A").attribute.addClass("Tab").update("XHR").event.addListener("click",lib.util.Curry(d.navigate,window,"xhr")).insert(el.nav.container);
192 el.left.console.mlButton = new lib.element("A").attribute.addClass("MLButton").event.addListener("click",d.console.toggleML).insert(el.left.console.container);
205 el.right.console.mlButton = new lib.element("A").attribute.addClass("MLButton CloseML").event.addListener("click",d.console.toggleML).insert(el.right.console.container);
209 el.right.console.clear = new lib.element("A").attribute.addClass("Button").event.addListener("click",lib.util.Curry(d.clean,window,el.right.console.input)).update("Clear").insert(el.right.console.container);
213 el.button.console.clear = new lib.element("A").attribute.addClass("Button").event.addListener("click",d.console.clear).update("Clear").insert(el.button.console.container);
227 el.right.html.nav.computedStyle = new lib.element("A").attribute.addClass("Tab Selected").event.addListener("click",lib.util.Curry(d.html.navigate,firebug,"computedStyle")).update("Computed Style").insert(el.right.html.nav.container);
228 el.right.html.nav.dom = new lib.element("A").attribute.addClass("Tab").event.addListener("click",lib.util.Curry(d.html.navigate,firebug,"dom")).update("DOM").insert(el.right.html.nav.container);
249 el.right.css.mlButton = new lib.element("A").attribute.addClass("MLButton CloseML").event.addListener("click",d.console.toggleML).insert(el.right.css.container);
253 el.right.css.clear = new lib.element("A").attribute.addClass("Button").event.addListener("click",lib.util.Curry(d.clean,window,el.right.css.input)).update("Clear").insert(el.right.css.container);
272 el.button.scripts.lineNumbers = new lib.element("A").attribute.addClass("Button").event.addListener("click",d.scripts.toggleLineNumbers).update("Show Line Numbers").insert(el.button.scripts.container);
300 el.button.str.watch = new lib.element("A").attribute.addClass("Button").event.addListener("click",lib.util.Curry(d.navigate,window,"xhr")).update("Back").insert(el.button.str.container);
363 for(var i=0, len=d.console.cache.length; i<len; i++){
364 var item = d.console.cache[i];
365 d.console.cmd[item.command].apply(window,item.arg);
412 return firebug.d.html.inspect.apply(window,arguments);
416 d.xhr.addObject.apply(window,arguments);
418 d.navigate("xhr");
485 d.html.openHtmlTree();
489 d.html.openHtmlTree();
858 d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
859 if(d.html.nIndex=="dom"){
860 firebug.d.html.navigate("dom")
884 d: {
899 d.clean(el.left.console.monitor);
900 d.console.cache = [];
907 content.push( d.highlight(arguments[i],false,false,true) );
915 d.dom.open(d.console.cache[_index], el.left.dom.container, lib.env.ie);
916 d.navigate("dom");
921 d.console.addLine().attribute.addClass("Arrow").update(">>> "+_cmd);
922 d.console.addLine().update(d.highlight(_text,false,false,true));
923 d.console.scroll();
932 d.console.addLine().attribute.addClass("Error").update("<strong>Error: </strong>"+message,true);
942 d.console.historyIndex = d.console.history.push(_cmd);
946 d.console.addLine().attribute.addClass("Arrow").update(firebug.version);
949 d.console.print(_cmd,result);
952 d.console.addLine().attribute.addClass("Arrow").update(">>> "+_cmd);
953 d.console.printException(e);
955 d.console.scroll();
966 d.console.cache.push({ "command":_command, "arg":Array.prototype.slice.call(arguments,1) });
968 d.console.cmd[_command].apply(window,Array.prototype.slice.call(arguments,1));
976 d.navigateRightColumn("console",open);
986 var args = d.console.formatArgs.apply(window,arguments);
987 d.console.addLine().attribute.addClass("Log").update(args);
988 d.console.scroll();
993 var args = d.console.formatArgs.apply(window,arguments);
994 d.console.addLine().attribute.addClass("Warn").update(args);
995 d.console.scroll();
1000 var args = d.console.formatArgs.apply(window,arguments);
1001 d.console.addLine().attribute.addClass("Info").update(args);
1002 d.console.scroll();
1007 var args = d.console.formatArgs.apply(window,arguments);
1008 d.console.addLine().attribute.addClass("Debug").update(args);
1009 d.console.scroll();
1014 var args = d.console.formatArgs.apply(window,arguments);
1015 d.console.addLine().attribute.addClass("Error").update(args);
1016 d.console.scroll();
1024 d.console.addLine().attribute.addClass("Arrow").update(">>> console.trace(stack)");
1027 d.dom.open({"function":func, "arguments":args},d.console.addLine());
1035 d.console.addLine().attribute.addClass("Arrow").update(">>> console.dir("+_value+")");
1036 d.dom.open(_value,d.console.addLine());
1041 d.console.cmd.log.apply(this, arguments);
1046 d.console.timeMap[_name] = new Date().getTime();
1051 if(_name in d.console.timeMap){
1052 var delta = new Date().getTime() - d.console.timeMap[_name],
1053 args = d.console.formatArgs.apply(window,[_name+":", delta+"ms"]);
1054 d.console.addLine().attribute.addClass("log").update(args);
1055 delete d.console.timeMap[_name];
1061 if(!d.console.countMap[_name])
1062 d.console.countMap[_name] = 0;
1063 d.console.countMap[_name]++;
1064 d.console.cmd.log.apply(window, [_name, d.console.countMap[_name]]);
1069 d.console.cmd.log.apply(this, ["console.group is not supported"]);
1074 d.console.cmd.log.apply(this, ["console.groupEnd is not supported"]);
1079 d.console.cmd.log.apply(this, ["console.profile is not supported"]);
1084 d.console.cmd.log.apply(this, ["console.profileEnd is not supported"]);
1101 str+=d.css.printRule(selector, cssText.split(";"), el.left.css.container);
1126 d.css.index=d.css.index<0?i:d.css.index;
1131 d.css.open(d.css.index);
1140 d.dom.print(_object, container);
1172 right.update(d.highlight(value,false,true));
1179 link.event.addListener("click",lib.util.Curry(d.dom.print,window,value, subContainer, true));
1232 result.push(d.highlight(_value.nodeValue));
1236 result.push("<span class='Blue"+ ( !_link?"'":" ObjectLink' onmouseover='this.className=this.className.replace(\"ObjectLink\",\"ObjectLinkHover\")' onmouseout='this.className=this.className.replace(\"ObjectLinkHover\",\"ObjectLink\")' onclick='firebug.d.html.inspect(firebug.d.console.cache[" +( d.console.cache.push( _value ) -1 )+"])'" ) + "'>");
1276 result.push( (i > 0 ? ", " : "") + d.highlight(_value[i], false, true, true) );
1284 result.push("<span class='Strong Green"+ ( !_link?"'":" ObjectLink' onmouseover='this.className=this.className.replace(\"ObjectLink\",\"ObjectLinkHover\")' onmouseout='this.className=this.className.replace(\"ObjectLinkHover\",\"ObjectLink\")' onclick='firebug.d.console.openObject(" +( d.console.cache.push( _value ) -1 )+")'" ) + ">Object");
1292 result.push(" "+key+"="+d.highlight(value,true));
1318 d.inspector.inspect(_element,true);
1337 internal.targetWindow.firebug.d.navigate("html");
1340 internal.targetWindow.firebug.d.inspector.toggle(false);
1363 if (d.html.current) {
1364 d.html.current[1].attribute.removeClass("Selected");
1366 d.html.current = [_element, link];
1367 d.html.openProperties();
1370 parentLayer = d.html.openHtmlTree(map[t], parentLayer, map[t + 1]);
1376 el.right.html.nav[d.html.nIndex].attribute.removeClass("Selected");
1378 d.html.nIndex = _index;
1379 d.html.openProperties();
1397 if (d.html.current) {
1398 d.html.current[1].attribute.removeClass("Selected");
1402 d.html.current = [_element,nodeLink];
1403 d.html.openProperties();
1437 html = new lib.element("SPAN").attribute.addClass("Content").update(d.highlight(item)).insert(link),
1442 link.event.addListener("click", lib.util.Curry(d.html.openHtmlTree, window, item, subContainer, false));
1443 link.event.addListener("mouseover", lib.util.Curry(d.html.highlight, window, item, false));
1444 link.event.addListener("mouseout", lib.util.Curry(d.html.highlight, window, item, true));
1448 if(d.html.current==null&&item==document.body){
1451 d.html.current = [item,link];
1452 d.html.openHtmlTree(item,subContainer);
1483 var index = d.html.nIndex;
1484 var node = d.html.current[0];
1485 d.clean(el.right.html.content);
1494 str+="<div class='CSSItem'><div class='CSSProperty'>"+item+"</div><div class='CSSValue'>"+d.highlight(view[item])+"</div></div>";
1499 d.dom.open(node,el.right.html.content,lib.env.ie);
1519 d.inspector.el = _element;
1525 if(_absoluteValue==d.inspector.enabled)
1527 d.inspector.enabled = _absoluteValue!=undefined&&!_absoluteValue.clientX?_absoluteValue:!d.inspector.enabled;
1528 el.button.inspect.attribute[(d.inspector.enabled ? "add" : "remove") + "Class"]("Enabled");
1529 if(d.inspector.enabled==false){
1531 d.inspector.el = null;
1534 internal.popupWin.firebug.d.navigate("html");
1536 d.navigate("html");
1547 d.scripts.index = _index;
1561 if(d.scripts.lineNumbers){
1578 d.scripts.lineNumbers = !d.scripts.lineNumbers;
1579 el.button.scripts.lineNumbers.attribute[(d.scripts.lineNumbers ? "add" : "remove") + "Class"]("Enabled");
1580 d.scripts.open( d.scripts.index );
1590 d.scripts.index=d.scripts.index<0?i:d.scripts.index;
1595 d.scripts.open( d.scripts.index );
1602 d.navigate("str");
1615 d.xhr.objects.push([item, val]);
1637 setTimeout(d.xhr.refresh,500);
1646 for(var i=0,len=d.xhr.objects.length; i<len; i++){
1647 var item = d.xhr.objects[i],
1657 new lib.element("A").event.addListener("click",lib.util.Curry(d.str.open,window,response)).update("&nbsp;"+response.substring(0,50))
1661 setTimeout(d.xhr.refresh,500);
1693 d.navigateRightColumn(_index);
1696 d.navigateRightColumn(_index,true);
1697 if(!d.html.current){
1699 d.html.openHtmlTree();
1703 d.navigateRightColumn(_index,true);
1704 d.css.refresh();
1707 d.navigateRightColumn(_index);
1708 d.scripts.refresh();
1711 d.navigateRightColumn(_index);
1714 d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
1718 d.navigateRightColumn(_index);
1719 d.xhr.open();
1771 d.xhr.addObject.apply(internal.targetWindow, el.button.xhr.textbox.environment.getElement().value.split(","));
1777 d.console.historyIndex = d.console.history.length;
1778 d.console.eval(el.left.console.input.environment.getElement().value);
1784 if(d.console.history[d.console.historyIndex+1]){
1785 d.console.historyIndex+=1;
1786 el.left.console.input.update( d.console.history[d.console.historyIndex] );
1790 if(d.console.history[d.console.historyIndex-1]){
1791 d.console.historyIndex-=1;
1792 el.left.console.input.update( d.console.history[d.console.historyIndex] );
1800 d.css.open(el.button.css.selectbox.environment.getElement().selectedIndex);
1806 d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
1813 internal.popupWin.firebug.d.html.inspect(firebug.d.inspector.el);
1815 firebug.d.html.inspect(firebug.d.inspector.el);
1821 if(_event.keyCode==27 && d.inspector.enabled){
1822 d.inspector.toggle();
1848 if(d.inspector.enabled){
1871 d.inspector.inspect(target);
1879 d.console.eval.call(window,el.right.console.input.environment.getElement().value);
1899 d.scripts.open(parseInt(el.button.scripts.selectbox.environment.getElement().value));
1905 d.xhr.addObject.apply(internal.targetWindow, el.button.xhr.textbox.environment.getElement().value.split(","));
2077 var alpha = styleObject["filter"].match(/opacity\=(\d+)/i);
2198 return _str.replace(/\{(\d)\}/g,function(){