Title: [124067] trunk/Source/WebCore
Revision
124067
Author
[email protected]
Date
2012-07-30 11:49:43 -0700 (Mon, 30 Jul 2012)

Log Message

Web Inspector: Rename Databases to Web SQL
https://bugs.webkit.org/show_bug.cgi?id=92646

Patch by Paul Irish <[email protected]> on 2012-07-30
Reviewed by Pavel Feldman.

Renamed Databases to Web SQL. Drive-by fix for EmptyView
selection.

* English.lproj/localizedStrings.js:
* inspector/front-end/EmptyView.js:
* inspector/front-end/ResourcesPanel.js:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (124066 => 124067)


--- trunk/Source/WebCore/ChangeLog	2012-07-30 18:46:58 UTC (rev 124066)
+++ trunk/Source/WebCore/ChangeLog	2012-07-30 18:49:43 UTC (rev 124067)
@@ -1,3 +1,17 @@
+2012-07-30  Paul Irish  <[email protected]>
+
+        Web Inspector: Rename Databases to Web SQL
+        https://bugs.webkit.org/show_bug.cgi?id=92646
+
+        Reviewed by Pavel Feldman.
+
+        Renamed Databases to Web SQL. Drive-by fix for EmptyView
+        selection.
+
+        * English.lproj/localizedStrings.js:
+        * inspector/front-end/EmptyView.js:
+        * inspector/front-end/ResourcesPanel.js:
+
 2012-07-30  Tony Chang  <[email protected]>
 
         new flexbox should ignore float set on flexitems

Modified: trunk/Source/WebCore/English.lproj/localizedStrings.js (124066 => 124067)


--- trunk/Source/WebCore/English.lproj/localizedStrings.js	2012-07-30 18:46:58 UTC (rev 124066)
+++ trunk/Source/WebCore/English.lproj/localizedStrings.js	2012-07-30 18:49:43 UTC (rev 124067)
@@ -143,7 +143,7 @@
 localizedStrings["Copy Response Headers"] = "Copy Response Headers";
 localizedStrings["Copy XPath"] = "Copy XPath";
 localizedStrings["Count"] = "Count";
-localizedStrings["Databases"] = "Databases";
+localizedStrings["Web SQL"] = "Web SQL";
 localizedStrings["DNS Lookup"] = "DNS Lookup";
 localizedStrings["DOMContent event fired"] = "DOMContent event fired";
 localizedStrings["DOMContent event"] = "DOMContent event";

Modified: trunk/Source/WebCore/inspector/front-end/EmptyView.js (124066 => 124067)


--- trunk/Source/WebCore/inspector/front-end/EmptyView.js	2012-07-30 18:46:58 UTC (rev 124066)
+++ trunk/Source/WebCore/inspector/front-end/EmptyView.js	2012-07-30 18:49:43 UTC (rev 124067)
@@ -48,7 +48,7 @@
     set text(text)
     {
         this._text = text;
-        if (this.visible)
+        if (this.isShowing())
             this.element.textContent = this._text;
     },
 }

Modified: trunk/Source/WebCore/inspector/front-end/ResourcesPanel.js (124066 => 124067)


--- trunk/Source/WebCore/inspector/front-end/ResourcesPanel.js	2012-07-30 18:46:58 UTC (rev 124066)
+++ trunk/Source/WebCore/inspector/front-end/ResourcesPanel.js	2012-07-30 18:49:43 UTC (rev 124067)
@@ -49,7 +49,7 @@
     this.resourcesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Frames"), "Frames", ["frame-storage-tree-item"]);
     this.sidebarTree.appendChild(this.resourcesListTreeElement);
 
-    this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Databases"), "Databases", ["database-storage-tree-item"]);
+    this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Web SQL"), "Databases", ["database-storage-tree-item"]);
     this.sidebarTree.appendChild(this.databasesListTreeElement);
 
     this.indexedDBListTreeElement = new WebInspector.IndexedDBTreeElement(this);
@@ -1619,7 +1619,7 @@
 
         if (this._view)
             this._view.update(database);
-        
+
         this._updateTooltip();
     },
 
@@ -1715,13 +1715,13 @@
 
         if (this._view)
             this._view.update(this._objectStore);
-        
+
         this._updateTooltip();
     },
 
     _updateTooltip: function()
     {
-        
+
         var keyPathString = this._objectStore.keyPathString;
         var tooltipString = keyPathString !== null ? (WebInspector.UIString("Key path: ") + keyPathString) : "";
         if (this._objectStore.autoIncrement)
@@ -1793,7 +1793,7 @@
 
         if (this._view)
             this._view.update(this._index);
-        
+
         this._updateTooltip();
     },
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to