/* * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. * Copyright (C) IBM Corp. 2009 All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ WebInspector.ResourceView = function(resource) { WebInspector.View.call(this); this.element.addStyleClass("resource-view"); this.resource = resource; this.tabsElement = document.createElement("div"); this.tabsElement.className = "scope-bar"; this.element.appendChild(this.tabsElement); this.headersTabElement = document.createElement("li"); this.headersTabElement.textContent = WebInspector.UIString("Headers"); this.contentTabElement = document.createElement("li"); this.contentTabElement.textContent = WebInspector.UIString("Content"); this.tabsElement.appendChild(this.headersTabElement); this.tabsElement.appendChild(this.contentTabElement); this.headersTabElement.addEventListener("click", this._selectHeadersTab.bind(this), false); this.contentTabElement.addEventListener("click", this._selectContentTab.bind(this), false); this.headersElement = document.createElement("div"); this.headersElement.className = "resource-view-headers"; this.element.appendChild(this.headersElement); this.contentElement = document.createElement("div"); this.contentElement.className = "resource-view-content"; this.element.appendChild(this.contentElement); this.headersListElement = document.createElement("ol"); this.headersListElement.className = "outline-disclosure"; this.headersElement.appendChild(this.headersListElement); this.headersTreeOutline = new TreeOutline(this.headersListElement); this.headersTreeOutline.expandTreeElementsWhenArrowing = true; this.urlTreeElement = new TreeElement("", null, false); this.urlTreeElement.selectable = false; this.headersTreeOutline.appendChild(this.urlTreeElement); this.requestMethodTreeElement = new TreeElement("", null, false); this.requestMethodTreeElement.selectable = false; this.headersTreeOutline.appendChild(this.requestMethodTreeElement); this.statusCodeTreeElement = new TreeElement("", null, false); this.statusCodeTreeElement.selectable = false; this.headersTreeOutline.appendChild(this.statusCodeTreeElement); this.requestHeadersTreeElement = new TreeElement("", null, true); this.requestHeadersTreeElement.expanded = true; this.requestHeadersTreeElement.selectable = false; this.headersTreeOutline.appendChild(this.requestHeadersTreeElement); this._decodeHover = WebInspector.UIString("Double-Click to toggle between URL encoded and decoded formats"); this._decodeRequestParameters = true; this.queryStringTreeElement = new TreeElement("", null, true); this.queryStringTreeElement.expanded = true; this.queryStringTreeElement.selectable = false; this.queryStringTreeElement.hidden = true; this.headersTreeOutline.appendChild(this.queryStringTreeElement); this.formDataTreeElement = new TreeElement("", null, true); this.formDataTreeElement.expanded = true; this.formDataTreeElement.selectable = false; this.formDataTreeElement.hidden = true; this.headersTreeOutline.appendChild(this.formDataTreeElement); this.requestPayloadTreeElement = new TreeElement(WebInspector.UIString("Request Payload"), null, true); this.requestPayloadTreeElement.expanded = true; this.requestPayloadTreeElement.selectable = false; this.requestPayloadTreeElement.hidden = true; this.headersTreeOutline.appendChild(this.requestPayloadTreeElement); this.responseHeadersTreeElement = new TreeElement("", null, true); this.responseHeadersTreeElement.expanded = true; this.responseHeadersTreeElement.selectable = false; this.headersTreeOutline.appendChild(this.responseHeadersTreeElement); this.headersVisible = true; resource.addEventListener("url changed", this._refreshURL, this); resource.addEventListener("requestHeaders changed", this._refreshRequestHeaders, this); resource.addEventListener("responseHeaders changed", this._refreshResponseHeaders, this); resource.addEventListener("finished", this._refreshHTTPInformation, this); this._refreshURL(); this._refreshRequestHeaders(); this._refreshResponseHeaders(); this._refreshHTTPInformation(); this._selectTab(); } WebInspector.ResourceView.prototype = { attach: function() { if (!this.element.parentNode) { var parentElement = (document.getElementById("resource-views") || document.getElementById("script-resource-views")); if (parentElement) parentElement.appendChild(this.element); } }, show: function(parentElement) { WebInspector.View.prototype.show.call(this, parentElement); this._selectTab(); }, set headersVisible(x) { if (x === this._headersVisible) return; this._headersVisible = x; if (x) this.element.addStyleClass("headers-visible"); else this.element.removeStyleClass("headers-visible"); this._selectTab(); }, _selectTab: function() { if (this._headersVisible) { if (WebInspector.settings.resourceViewTab === "headers") this._selectHeadersTab(); else this._selectContentTab(); } else this._innerSelectContentTab(); }, _selectHeadersTab: function() { WebInspector.settings.resourceViewTab = "headers"; this.headersTabElement.addStyleClass("selected"); this.contentTabElement.removeStyleClass("selected"); this.headersElement.removeStyleClass("hidden"); this.contentElement.addStyleClass("hidden"); }, _selectContentTab: function() { WebInspector.settings.resourceViewTab = "content"; this._innerSelectContentTab(); }, _innerSelectContentTab: function() { this.contentTabElement.addStyleClass("selected"); this.headersTabElement.removeStyleClass("selected"); this.contentElement.removeStyleClass("hidden"); this.headersElement.addStyleClass("hidden"); if ("resize" in this) this.resize(); if ("contentTabSelected" in this) this.contentTabSelected(); }, _refreshURL: function() { this.urlTreeElement.title = "