Lines Matching refs:d

40         for(command in firebug.d.console.cmd){
41 window.console[command] = firebug.lib.util.Curry(firebug.d.console.run,window,command);
45 …firebug.d.console.run('error',firebug.lib.util.String.format('{0} ({1},{2})',_message,firebug.getF…
140 ….addClass("Button").event.addListener("click",internal.targetWindow.firebug.d.inspector.toggle).up…
159 …attribute.addClass("Tab Selected").event.addListener("click",lib.util.Curry(d.navigate,window,"con…
160 …ute.addClass("Tab").update("HTML").event.addListener("click",lib.util.Curry(d.navigate,window,"htm…
161 …bute.addClass("Tab").update("CSS").event.addListener("click",lib.util.Curry(d.navigate,window,"css…
163 …e.addClass("Tab").update("Script").event.addListener("click",lib.util.Curry(d.navigate,window,"scr…
165 …bute.addClass("Tab").update("DOM").event.addListener("click",lib.util.Curry(d.navigate,internal.ta…
166 …bute.addClass("Tab").update("XHR").event.addListener("click",lib.util.Curry(d.navigate,window,"xhr…
181 …w lib.element("A").attribute.addClass("MLButton").event.addListener("click",d.console.toggleML).in…
194 …ement("A").attribute.addClass("MLButton CloseML").event.addListener("click",d.console.toggleML).in…
198 …("A").attribute.addClass("Button").event.addListener("click",lib.util.Curry(d.clean,window,el.righ…
202 …new lib.element("A").attribute.addClass("Button").event.addListener("click",d.console.clear).updat…
216 …attribute.addClass("Tab Selected").event.addListener("click",lib.util.Curry(d.html.navigate,firebu…
217 …ent("A").attribute.addClass("Tab").event.addListener("click",lib.util.Curry(d.html.navigate,firebu…
238 …ement("A").attribute.addClass("MLButton CloseML").event.addListener("click",d.console.toggleML).in…
242 …("A").attribute.addClass("Button").event.addListener("click",lib.util.Curry(d.clean,window,el.righ…
261 …new lib.element("A").attribute.addClass("Button").event.addListener("click",d.scripts.toggleLineNu…
289 …("A").attribute.addClass("Button").event.addListener("click",lib.util.Curry(d.navigate,window,"xhr…
352 for(var i=0, len=d.console.cache.length; i<len; i++){
353 var item = d.console.cache[i];
354 d.console.cmd[item.command].apply(window,item.arg);
401 return firebug.d.html.inspect.apply(window,arguments);
405 d.xhr.addObject.apply(window,arguments);
407 d.navigate("xhr");
474 d.html.openHtmlTree();
478 d.html.openHtmlTree();
847d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
848 if(d.html.nIndex=="dom"){
849 firebug.d.html.navigate("dom")
873 d: {
888 d.clean(el.left.console.monitor);
889 d.console.cache = [];
896 content.push( d.highlight(arguments[i],false,false,true) );
904 d.dom.open(d.console.cache[_index], el.left.dom.container, lib.env.ie);
905 d.navigate("dom");
910 d.console.addLine().attribute.addClass("Arrow").update(">>> "+_cmd);
911 d.console.addLine().update(d.highlight(_text,false,false,true));
912 d.console.scroll();
921d.console.addLine().attribute.addClass("Error").update("<strong>Error: </strong>"+message,true);
931 d.console.historyIndex = d.console.history.push(_cmd);
935 d.console.addLine().attribute.addClass("Arrow").update(firebug.version);
938 d.console.print(_cmd,result);
941 d.console.addLine().attribute.addClass("Arrow").update(">>> "+_cmd);
942 d.console.printException(e);
944 d.console.scroll();
955d.console.cache.push({ "command":_command, "arg":Array.prototype.slice.call(arguments,1) });
957 d.console.cmd[_command].apply(window,Array.prototype.slice.call(arguments,1));
965 d.navigateRightColumn("console",open);
975 var args = d.console.formatArgs.apply(window,arguments);
976 d.console.addLine().attribute.addClass("Log").update(args);
977 d.console.scroll();
982 var args = d.console.formatArgs.apply(window,arguments);
983 d.console.addLine().attribute.addClass("Warn").update(args);
984 d.console.scroll();
989 var args = d.console.formatArgs.apply(window,arguments);
990 d.console.addLine().attribute.addClass("Info").update(args);
991 d.console.scroll();
996 var args = d.console.formatArgs.apply(window,arguments);
997 d.console.addLine().attribute.addClass("Debug").update(args);
998 d.console.scroll();
1003 var args = d.console.formatArgs.apply(window,arguments);
1004 d.console.addLine().attribute.addClass("Error").update(args);
1005 d.console.scroll();
1013 d.console.addLine().attribute.addClass("Arrow").update(">>> console.trace(stack)");
1016 d.dom.open({"function":func, "arguments":args},d.console.addLine());
1024 d.console.addLine().attribute.addClass("Arrow").update(">>> console.dir("+_value+")");
1025 d.dom.open(_value,d.console.addLine());
1030 d.console.cmd.log.apply(this, arguments);
1035 d.console.timeMap[_name] = new Date().getTime();
1040 if(_name in d.console.timeMap){
1041 var delta = new Date().getTime() - d.console.timeMap[_name],
1042 args = d.console.formatArgs.apply(window,[_name+":", delta+"ms"]);
1043 d.console.addLine().attribute.addClass("log").update(args);
1044 delete d.console.timeMap[_name];
1050 if(!d.console.countMap[_name])
1051 d.console.countMap[_name] = 0;
1052 d.console.countMap[_name]++;
1053 d.console.cmd.log.apply(window, [_name, d.console.countMap[_name]]);
1058 d.console.cmd.log.apply(this, ["console.group is not supported"]);
1063 d.console.cmd.log.apply(this, ["console.groupEnd is not supported"]);
1068 d.console.cmd.log.apply(this, ["console.profile is not supported"]);
1073 d.console.cmd.log.apply(this, ["console.profileEnd is not supported"]);
1090 str+=d.css.printRule(selector, cssText.split(";"), el.left.css.container);
1115 d.css.index=d.css.index<0?i:d.css.index;
1120 d.css.open(d.css.index);
1129 d.dom.print(_object, container);
1161 right.update(d.highlight(value,false,true));
1168 … link.event.addListener("click",lib.util.Curry(d.dom.print,window,value, subContainer, true));
1221 result.push(d.highlight(_value.nodeValue));
1225 …ObjectLink\")' onclick='firebug.d.html.inspect(firebug.d.console.cache[" +( d.console.cache.push( …
1265 result.push( (i > 0 ? ", " : "") + d.highlight(_value[i], false, true, true) );
1273 …jectLinkHover\",\"ObjectLink\")' onclick='firebug.d.console.openObject(" +( d.console.cache.push( …
1281 result.push(" "+key+"="+d.highlight(value,true));
1307 d.inspector.inspect(_element,true);
1326 internal.targetWindow.firebug.d.navigate("html");
1329 internal.targetWindow.firebug.d.inspector.toggle(false);
1352 if (d.html.current) {
1353 d.html.current[1].attribute.removeClass("Selected");
1355 d.html.current = [_element, link];
1356 d.html.openProperties();
1359 parentLayer = d.html.openHtmlTree(map[t], parentLayer, map[t + 1]);
1365 el.right.html.nav[d.html.nIndex].attribute.removeClass("Selected");
1367 d.html.nIndex = _index;
1368 d.html.openProperties();
1386 if (d.html.current) {
1387 d.html.current[1].attribute.removeClass("Selected");
1391 d.html.current = [_element,nodeLink];
1392 d.html.openProperties();
1426 …html = new lib.element("SPAN").attribute.addClass("Content").update(d.highlight(item)).insert(link…
1431 …link.event.addListener("click", lib.util.Curry(d.html.openHtmlTree, window, item, subContainer, fa…
1432 … link.event.addListener("mouseover", lib.util.Curry(d.html.highlight, window, item, false));
1433 … link.event.addListener("mouseout", lib.util.Curry(d.html.highlight, window, item, true));
1437 if(d.html.current==null&&item==document.body){
1440 d.html.current = [item,link];
1441 d.html.openHtmlTree(item,subContainer);
1472 var index = d.html.nIndex;
1473 var node = d.html.current[0];
1474 d.clean(el.right.html.content);
1483 …ss='CSSItem'><div class='CSSProperty'>"+item+"</div><div class='CSSValue'>"+d.highlight(view[item]…
1488 d.dom.open(node,el.right.html.content,lib.env.ie);
1508 d.inspector.el = _element;
1514 if(_absoluteValue==d.inspector.enabled)
1516d.inspector.enabled = _absoluteValue!=undefined&&!_absoluteValue.clientX?_absoluteValue:!d.inspect…
1517 … el.button.inspect.attribute[(d.inspector.enabled ? "add" : "remove") + "Class"]("Enabled");
1518 if(d.inspector.enabled==false){
1520 d.inspector.el = null;
1523 internal.popupWin.firebug.d.navigate("html");
1525 d.navigate("html");
1536 d.scripts.index = _index;
1550 if(d.scripts.lineNumbers){
1567 d.scripts.lineNumbers = !d.scripts.lineNumbers;
1568 …el.button.scripts.lineNumbers.attribute[(d.scripts.lineNumbers ? "add" : "remove") + "Class"]("Ena…
1569 d.scripts.open( d.scripts.index );
1579 d.scripts.index=d.scripts.index<0?i:d.scripts.index;
1584 d.scripts.open( d.scripts.index );
1591 d.navigate("str");
1604 d.xhr.objects.push([item, val]);
1626 setTimeout(d.xhr.refresh,500);
1635 for(var i=0,len=d.xhr.objects.length; i<len; i++){
1636 var item = d.xhr.objects[i],
1646 …new lib.element("A").event.addListener("click",lib.util.Curry(d.str.open,window,response)).update(…
1650 setTimeout(d.xhr.refresh,500);
1682 d.navigateRightColumn(_index);
1685 d.navigateRightColumn(_index,true);
1686 if(!d.html.current){
1688 d.html.openHtmlTree();
1692 d.navigateRightColumn(_index,true);
1693 d.css.refresh();
1696 d.navigateRightColumn(_index);
1697 d.scripts.refresh();
1700 d.navigateRightColumn(_index);
1703d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
1707 d.navigateRightColumn(_index);
1708 d.xhr.open();
1760d.xhr.addObject.apply(internal.targetWindow, el.button.xhr.textbox.environment.getElement().value.…
1766 d.console.historyIndex = d.console.history.length;
1767 d.console.eval(el.left.console.input.environment.getElement().value);
1773 if(d.console.history[d.console.historyIndex+1]){
1774 d.console.historyIndex+=1;
1775 el.left.console.input.update( d.console.history[d.console.historyIndex] );
1779 if(d.console.history[d.console.historyIndex-1]){
1780 d.console.historyIndex-=1;
1781 el.left.console.input.update( d.console.history[d.console.historyIndex] );
1789 d.css.open(el.button.css.selectbox.environment.getElement().selectedIndex);
1795d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
1802 internal.popupWin.firebug.d.html.inspect(firebug.d.inspector.el);
1804 firebug.d.html.inspect(firebug.d.inspector.el);
1810 if(_event.keyCode==27 && d.inspector.enabled){
1811 d.inspector.toggle();
1837 if(d.inspector.enabled){
1860 d.inspector.inspect(target);
1868 d.console.eval.call(window,el.right.console.input.environment.getElement().value);
1888 d.scripts.open(parseInt(el.button.scripts.selectbox.environment.getElement().value));
1894d.xhr.addObject.apply(internal.targetWindow, el.button.xhr.textbox.environment.getElement().value.…