diff -X patch-excludes -uprN -U8 inspector/jar.mn inspector.xforms/jar.mn
--- inspector/jar.mn	2005-09-15 10:09:09.000000000 +0200
+++ inspector.xforms/jar.mn	2006-03-12 20:04:21.000000000 +0100
@@ -84,16 +84,20 @@ inspector.jar:
   content/inspector/viewers/dom/keysetOverlay.xul                     (resources/content/viewers/dom/keysetOverlay.xul)
   content/inspector/viewers/dom/popupOverlay.xul                      (resources/content/viewers/dom/popupOverlay.xul)
   content/inspector/viewers/dom/dom.xul                               (resources/content/viewers/dom/dom.xul)
   content/inspector/viewers/dom/dom.js                                (resources/content/viewers/dom/dom.js)
   content/inspector/viewers/dom/pseudoClassDialog.js                  (resources/content/viewers/dom/pseudoClassDialog.js)
   content/inspector/viewers/dom/pseudoClassDialog.xul                 (resources/content/viewers/dom/pseudoClassDialog.xul)
   content/inspector/viewers/boxModel/boxModel.js                      (resources/content/viewers/boxModel/boxModel.js)
   content/inspector/viewers/boxModel/boxModel.xul                     (resources/content/viewers/boxModel/boxModel.xul)
+  content/inspector/viewers/xformsControl/xformsControl.js            (resources/content/viewers/xformsControl/xformsControl.js)
+  content/inspector/viewers/xformsControl/xformsControl.xul           (resources/content/viewers/xformsControl/xformsControl.xul)
+  content/inspector/viewers/xformsInstance/xformsInstance.js          (resources/content/viewers/xformsInstance/xformsInstance.js)
+  content/inspector/viewers/xformsInstance/xformsInstance.xul         (resources/content/viewers/xformsInstance/xformsInstance.xul)
   content/inspector/viewers/jsObject/jsObject.js                      (resources/content/viewers/jsObject/jsObject.js)
   content/inspector/viewers/jsObject/jsObject.xul                     (resources/content/viewers/jsObject/jsObject.xul)
   content/inspector/viewers/jsObject/evalExprDialog.js                (resources/content/viewers/jsObject/evalExprDialog.js)
   content/inspector/viewers/jsObject/evalExprDialog.xul               (resources/content/viewers/jsObject/evalExprDialog.xul)
   content/inspector/viewers/domNode/domNode.js                        (resources/content/viewers/domNode/domNode.js)
   content/inspector/viewers/domNode/domNode.xul                       (resources/content/viewers/domNode/domNode.xul)
   content/inspector/viewers/styleRules/commandOverlay.xul             (resources/content/viewers/styleRules/commandOverlay.xul)
   content/inspector/viewers/styleRules/keysetOverlay.xul              (resources/content/viewers/styleRules/keysetOverlay.xul)
diff -X patch-excludes -uprN -U8 inspector/resources/content/res/viewer-registry.rdf inspector.xforms/resources/content/res/viewer-registry.rdf
--- inspector/resources/content/res/viewer-registry.rdf	2003-10-18 00:45:46.000000000 +0200
+++ inspector.xforms/resources/content/res/viewer-registry.rdf	2006-03-12 19:58:24.000000000 +0100
@@ -79,11 +79,25 @@
 
     <rdf:li><rdf:Description 
       ins:uid="jsObject"
       ins:panels="bxDocPanel bxObjectPanel bxObjPanel"
       ins:description="Javascript Object"
       ins:filter="return true;"/>
     </rdf:li>
 
+    <rdf:li><rdf:Description 
+      ins:uid="xformsControl"
+      ins:panels="bxObjectPanel bxObjPanel"
+      ins:description="XForms Control"
+      ins:filter="return Components.interfaces.nsIXFormsDelegate &amp;&amp; object instanceof Components.interfaces.nsIXFormsDelegate;"/>
+    </rdf:li>
+
+    <rdf:li><rdf:Description 
+      ins:uid="xformsInstance"
+      ins:panels="bxObjectPanel bxObjPanel"
+      ins:description="XForms Instance"
+      ins:filter="return object instanceof Components.interfaces.nsIDOMElement &amp;&amp; object.localName == 'instance' &amp;&amp; object.namespaceURI == 'http://www.w3.org/2002/xforms';"/>
+    </rdf:li>
+
   </rdf:Seq>
 
 </rdf:RDF>
diff -X patch-excludes -uprN -U8 inspector/resources/content/viewers/xformsControl/xformsControl.js inspector.xforms/resources/content/viewers/xformsControl/xformsControl.js
--- inspector/resources/content/viewers/xformsControl/xformsControl.js	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/content/viewers/xformsControl/xformsControl.js	2006-03-12 18:35:12.000000000 +0100
@@ -0,0 +1,155 @@
+/* ***** BEGIN LICENSE BLOCK *****
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Original Code is mozilla.org code.
+ *
+ * The Initial Developer of the Original Code is
+ * Netscape Communications Corporation.
+ * Portions created by the Initial Developer are Copyright (C) 2001
+ * the Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *   Joe Hewitt <hewitt@netscape.com> (original author)
+ *   Allan Beaufour <allan@beaufour.dk>
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ *
+ * ***** END LICENSE BLOCK ***** */
+
+/***************************************************************
+* XFormsControlViewer -----------------------------------------
+*  The viewer for the xformsControl
+* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
+* REQUIRED IMPORTS:
+*   chrome://inspector/content/jsutil/xpcom/XPCU.js
+****************************************************************/
+
+//////////// global variables /////////////////////
+
+var viewer;
+
+//////////// global constants ////////////////////
+
+const kMozType = "http://www.mozilla.org/projects/xforms/2005/type";
+
+//////////////////////////////////////////////////
+
+window.addEventListener("load", XFormsControlViewer_initialize, false);
+
+function XFormsControlViewer_initialize()
+{
+  viewer = new XFormsControlViewer();
+  viewer.initialize(parent.FrameExchange.receiveData(window));
+}
+
+////////////////////////////////////////////////////////////////////////////
+//// class XFormsControlViewer
+
+function XFormsControlViewer()
+{
+  this.mURL = window.location;
+  this.mObsMan = new ObserverManager(this);
+}
+
+XFormsControlViewer.prototype = 
+{
+  ////////////////////////////////////////////////////////////////////////////
+  //// Initialization
+  
+  mSubject: null,
+  mPane: null,
+  
+  ////////////////////////////////////////////////////////////////////////////
+  //// interface inIViewer
+
+  get uid() { return "xformsControl" },
+  get pane() { return this.mPane },
+
+  get subject() { return this.mSubject },
+  set subject(aObject) 
+  {
+    this.mSubject = aObject;
+    this.updateDisplay();
+    this.mObsMan.dispatchEvent("subjectChange", { subject: aObject });
+  },
+
+  initialize: function(aPane)
+  {
+    this.mPane = aPane;
+    aPane.notifyViewerReady(this);
+  },
+
+  destroy: function()
+  {
+  },
+
+  isCommandEnabled: function(aCommand)
+  {
+    return false;
+  },
+  
+  getCommand: function(aCommand)
+  {
+    return null;
+  },
+
+  ////////////////////////////////////////////////////////////////////////////
+  //// event dispatching
+
+  addObserver: function(aEvent, aObserver) { this.mObsMan.addObserver(aEvent, aObserver); },
+  removeObserver: function(aEvent, aObserver) { this.mObsMan.removeObserver(aEvent, aObserver); },
+  
+  ////////////////////////////////////////////////////////////////////////////
+  //// show values
+  updateDisplay: function()
+  {
+      this.setTextValue("nodename", this.mSubject.nodeName);
+      var acc = this.mSubject.getXFormsAccessors();
+      var boundnode = " -- not bound -- ";
+      if (acc.hasBoundNode()) {
+	  boundnode = acc.getBoundNode().nodeName;
+      }
+      this.setTextValue("boundnode", boundnode);
+      var type = this.mSubject.getAttributeNS(kMozType, "type");
+      if (type && type.indexOf("#") != -1) {
+	  type = type.substr(type.indexOf("#") + 1);
+      } else {
+	  type = " -- none?! -- ";
+      }
+      this.setTextValue("type", type);
+      this.setTextValue("readonly", acc.isReadonly());
+      this.setTextValue("required", acc.isRequired());
+      this.setTextValue("relevant", acc.isRelevant());
+      this.setTextValue("valid",    acc.isValid());
+  },
+
+  ////////////////////////////////////////////////////////////////////////////
+  //// utility functions
+  setTextValue: function(aName, aText)
+  {
+    var field = document.getElementById("xf_" + aName);
+    if (field) {
+      field.value = aText;
+    }
+  }
+};
diff -X patch-excludes -uprN -U8 inspector/resources/content/viewers/xformsControl/xformsControl.xul inspector.xforms/resources/content/viewers/xformsControl/xformsControl.xul
--- inspector/resources/content/viewers/xformsControl/xformsControl.xul	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/content/viewers/xformsControl/xformsControl.xul	2006-03-12 18:42:58.000000000 +0100
@@ -0,0 +1,94 @@
+<?xml version="1.0"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Netscape Communications Corporation.
+   - Portions created by the Initial Developer are Copyright (C) 2003
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   - Allan Beaufour <allan@beaufour.dk>
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+   - ***** END LICENSE BLOCK ***** -->
+
+<!DOCTYPE page [
+  <!ENTITY % dtd1 SYSTEM "chrome://inspector/locale/inspector.dtd"> %dtd1;
+  <!ENTITY % dtd2 SYSTEM "chrome://inspector/content/util.dtd"> %dtd2;
+  <!ENTITY % dtd3 SYSTEM "chrome://inspector/locale/viewers/xformsControl.dtd"> %dtd3;
+]>
+
+<?xml-stylesheet href="chrome://inspector/skin/"?>
+
+<page id="winXFormsControl"
+      orient="vertical"
+      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+  <script type="application/x-javascript" src="chrome://inspector/content/viewers/xformsControl/xformsControl.js"/>
+  <script type="application/x-javascript" src="chrome://inspector/content/utils.js"/>
+  <script type="application/x-javascript" src="chrome://inspector/content/jsutil/xpcom/XPCU.js"/>
+  <script type="application/x-javascript" src="chrome://inspector/content/jsutil/events/ObserverManager.js"/>
+
+  <vbox>
+      <grid>
+        <columns>
+          <column/>
+          <column flex="1"/>
+        </columns>
+        <rows>
+          <row>
+            <label control="xf_nodename" value="&xfNodeName.label;" />
+            <textbox id="xf_nodename" readonly="true"/>
+          </row>
+          <row>
+            <label control="xf_boundnode" value="&xfBoundNode.label;" />
+            <textbox id="xf_boundnode" readonly="true"/>
+          </row>
+          <row>
+            <label control="xf_type" value="&xfType.label;" />
+            <textbox id="xf_type" readonly="true"/>
+          </row>
+          <row>
+            <label control="xf_readonly" value="&xfReadonly.label;" />
+            <textbox id="xf_readonly" readonly="true"/>
+          </row>
+          <row>
+            <label control="xf_required" value="&xfRequired.label;" />
+            <textbox id="xf_required" readonly="true"/>
+          </row>
+          <row>
+            <label control="xf_relevant" value="&xfRelevant.label;" />
+            <textbox id="xf_relevant" readonly="true"/>
+          </row>
+          <row>
+            <label control="xf_valid" value="&xfValid.label;" />
+            <textbox id="xf_valid" readonly="true"/>
+          </row>
+        </rows>
+      </grid>    
+  </vbox>
+</page>
diff -X patch-excludes -uprN -U8 inspector/resources/content/viewers/xformsInstance/xformsInstance.js inspector.xforms/resources/content/viewers/xformsInstance/xformsInstance.js
--- inspector/resources/content/viewers/xformsInstance/xformsInstance.js	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/content/viewers/xformsInstance/xformsInstance.js	2006-03-12 20:44:24.000000000 +0100
@@ -0,0 +1,177 @@
+/* ***** BEGIN LICENSE BLOCK *****
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Original Code is mozilla.org code.
+ *
+ * The Initial Developer of the Original Code is
+ * Netscape Communications Corporation.
+ * Portions created by the Initial Developer are Copyright (C) 2001
+ * the Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *   Joe Hewitt <hewitt@netscape.com> (original author)
+ *   Allan Beaufour <allan@beaufour.dk>
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ *
+ * ***** END LICENSE BLOCK ***** */
+
+/***************************************************************
+* XFormsInstanceViewer -----------------------------------------
+*  The viewer for the xformsInstance
+* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
+* REQUIRED IMPORTS:
+*   chrome://inspector/content/jsutil/xpcom/XPCU.js
+****************************************************************/
+
+// XXX: Create XUL error page that shows the current dump()s, localizable
+// naturally.
+
+//////////// global variables /////////////////////
+
+var viewer;
+
+//////////////////////////////////////////////////
+
+window.addEventListener("load", XFormsInstanceViewer_initialize, false);
+
+function XFormsInstanceViewer_initialize()
+{
+  viewer = new XFormsInstanceViewer();
+  viewer.initialize(parent.FrameExchange.receiveData(window));
+}
+
+////////////////////////////////////////////////////////////////////////////
+//// class XFormsInstanceViewer
+
+function XFormsInstanceViewer()
+{
+  this.mURL = window.location;
+  this.mObsMan = new ObserverManager(this);
+}
+
+XFormsInstanceViewer.prototype = 
+{
+  ////////////////////////////////////////////////////////////////////////////
+  //// Initialization
+  
+  mSubject: null,
+  mPane: null,
+  mSerializer: null,
+  
+  ////////////////////////////////////////////////////////////////////////////
+  //// interface inIViewer
+
+  get uid() { return "xformsInstance" },
+  get pane() { return this.mPane },
+
+  get subject() { return this.mSubject },
+  set subject(aObject) 
+  {
+    this.mSubject = aObject;
+    this.updateDisplay();
+    this.mObsMan.dispatchEvent("subjectChange", { subject: aObject });
+  },
+
+  initialize: function(aPane)
+  {
+    this.mPane = aPane;
+    aPane.notifyViewerReady(this);
+  },
+
+  destroy: function()
+  {
+  },
+
+  isCommandEnabled: function(aCommand)
+  {
+    return false;
+  },
+  
+  getCommand: function(aCommand)
+  {
+    return null;
+  },
+
+  ////////////////////////////////////////////////////////////////////////////
+  //// event dispatching
+
+  addObserver: function(aEvent, aObserver) { this.mObsMan.addObserver(aEvent, aObserver); },
+  removeObserver: function(aEvent, aObserver) { this.mObsMan.removeObserver(aEvent, aObserver); },
+  
+  ////////////////////////////////////////////////////////////////////////////
+  //// show the data
+  updateDisplay: function()
+  {
+      var b = document.getElementById("xfInstanceBrowser");
+
+      if (!this.mSerializer) {
+          this.mSerializer = new XMLSerializer();
+          if (!this.mSerializer) {
+              dump("XXX:Failed to create XMLSerializer");
+              return false;
+          }
+      }
+
+      // Clear any content
+      b.removeAttribute("src");
+
+      // Find instance data
+      // This is awkward... filed https://bugzilla.mozilla.org/show_bug.cgi?id=330252
+
+      var instanceID = this.mSubject.getAttribute("id");
+      if (!instanceID) {
+          // Need to check if this is the default instance (ie, the first)
+          var sibling = this.mSubject.previousSibling;
+          while (sibling) {
+              if (sibling instanceof Components.interfaces.nsIDOMElement &&
+                  sibling.nodeName == "instance" &&
+                  sibling.namespaceURI == 'http://www.w3.org/2002/xforms') {
+                  dump("XXX:Failed check 0\n");
+                  return false;
+              }
+              sibling = sibling.previousSibling;
+          }
+      }
+
+      // check parent -- should be model
+      var parent = this.mSubject.parentNode;
+      if ( !(parent && parent instanceof Components.interfaces.nsIXFormsModelElement) ) {
+          dump("XXX:Failed check 1\n");
+          dump("this.mSubject.parentNode: " + this.mSubject.parentNode + "\n");
+          return false;
+      }
+
+      var instanceDoc = parent.getInstanceDocument(instanceID);
+      if (!instanceDoc) {
+          dump("XXX:Failed check 2\n");
+          return false;
+      }
+
+      // Convert to data url, and show it
+      var data = this.mSerializer.serializeToString(instanceDoc).replace(/\n/g, '%0D');
+      b.setAttribute("src", "view-source:data:application/xml;charset=utf-8," + data);
+
+      return true;
+  }
+};
diff -X patch-excludes -uprN -U8 inspector/resources/content/viewers/xformsInstance/xformsInstance.xul inspector.xforms/resources/content/viewers/xformsInstance/xformsInstance.xul
--- inspector/resources/content/viewers/xformsInstance/xformsInstance.xul	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/content/viewers/xformsInstance/xformsInstance.xul	2006-03-12 20:37:00.000000000 +0100
@@ -0,0 +1,59 @@
+<?xml version="1.0"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Netscape Communications Corporation.
+   - Portions created by the Initial Developer are Copyright (C) 2003
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   - Allan Beaufour <allan@beaufour.dk>
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+   - ***** END LICENSE BLOCK ***** -->
+
+<!DOCTYPE page [
+  <!ENTITY % dtd1 SYSTEM "chrome://inspector/locale/inspector.dtd"> %dtd1;
+  <!ENTITY % dtd2 SYSTEM "chrome://inspector/content/util.dtd"> %dtd2;
+  <!ENTITY % dtd3 SYSTEM "chrome://inspector/locale/viewers/xformsInstance.dtd"> %dtd3;
+]>
+
+<?xml-stylesheet href="chrome://inspector/skin/"?>
+
+<page id="winXFormsInstance"
+      orient="vertical"
+      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+  <script type="application/x-javascript" src="chrome://inspector/content/viewers/xformsInstance/xformsInstance.js"/>
+  <script type="application/x-javascript" src="chrome://inspector/content/utils.js"/>
+  <script type="application/x-javascript" src="chrome://inspector/content/jsutil/xpcom/XPCU.js"/>
+  <script type="application/x-javascript" src="chrome://inspector/content/jsutil/events/ObserverManager.js"/>
+
+  <vbox flex="1">
+    <browser flex="1" id="xfInstanceBrowser"/>
+  </vbox>
+</page>
diff -X patch-excludes -uprN -U8 inspector/resources/locale/ca/viewers/xformsControl.dtd inspector.xforms/resources/locale/ca/viewers/xformsControl.dtd
--- inspector/resources/locale/ca/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/ca/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/cs-CZ/viewers/xformsControl.dtd inspector.xforms/resources/locale/cs-CZ/viewers/xformsControl.dtd
--- inspector/resources/locale/cs-CZ/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/cs-CZ/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/da/viewers/xformsControl.dtd inspector.xforms/resources/locale/da/viewers/xformsControl.dtd
--- inspector/resources/locale/da/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/da/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/de/viewers/xformsControl.dtd inspector.xforms/resources/locale/de/viewers/xformsControl.dtd
--- inspector/resources/locale/de/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/de/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/el/viewers/xformsControl.dtd inspector.xforms/resources/locale/el/viewers/xformsControl.dtd
--- inspector/resources/locale/el/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/el/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/en-US/viewers/xformsControl.dtd inspector.xforms/resources/locale/en-US/viewers/xformsControl.dtd
--- inspector/resources/locale/en-US/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/en-US/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/fr/viewers/xformsControl.dtd inspector.xforms/resources/locale/fr/viewers/xformsControl.dtd
--- inspector/resources/locale/fr/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/fr/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/ga-IE/viewers/xformsControl.dtd inspector.xforms/resources/locale/ga-IE/viewers/xformsControl.dtd
--- inspector/resources/locale/ga-IE/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/ga-IE/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/hu/viewers/xformsControl.dtd inspector.xforms/resources/locale/hu/viewers/xformsControl.dtd
--- inspector/resources/locale/hu/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/hu/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/jar.mn inspector.xforms/resources/locale/jar.mn
--- inspector/resources/locale/jar.mn	2005-07-25 08:14:32.000000000 +0200
+++ inspector.xforms/resources/locale/jar.mn	2006-03-12 18:49:52.000000000 +0100
@@ -10,11 +10,12 @@ inspector.jar:
   locale/@AB_CD@/inspector/search/findFiles.dtd       (@AB_CD@/search/findFiles.dtd)
   locale/@AB_CD@/inspector/search/junkImgs.dtd        (@AB_CD@/search/junkImgs.dtd)
 * locale/@AB_CD@/inspector/viewers/dom.dtd            (@AB_CD@/viewers/dom.dtd)
 * locale/@AB_CD@/inspector/viewers/domNode.dtd        (@AB_CD@/viewers/domNode.dtd)
 * locale/@AB_CD@/inspector/viewers/styleRules.dtd     (@AB_CD@/viewers/styleRules.dtd)
 * locale/@AB_CD@/inspector/viewers/stylesheets.dtd    (@AB_CD@/viewers/stylesheets.dtd)
 * locale/@AB_CD@/inspector/viewers/xblBindings.dtd    (@AB_CD@/viewers/xblBindings.dtd)
 * locale/@AB_CD@/inspector/viewers/boxModel.dtd       (@AB_CD@/viewers/boxModel.dtd)
+* locale/@AB_CD@/inspector/viewers/xformsControl.dtd  (@AB_CD@/viewers/xformsControl.dtd)
 * locale/@AB_CD@/inspector/viewers/computedStyle.dtd  (@AB_CD@/viewers/computedStyle.dtd)
 * locale/@AB_CD@/inspector/viewers/jsObject.dtd       (@AB_CD@/viewers/jsObject.dtd)
 * locale/@AB_CD@/inspector/inspector.properties       (@AB_CD@/inspector.properties)
diff -X patch-excludes -uprN -U8 inspector/resources/locale/nb-NO/viewers/xformsControl.dtd inspector.xforms/resources/locale/nb-NO/viewers/xformsControl.dtd
--- inspector/resources/locale/nb-NO/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/nb-NO/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/pl/viewers/xformsControl.dtd inspector.xforms/resources/locale/pl/viewers/xformsControl.dtd
--- inspector/resources/locale/pl/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/pl/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/pt-BR/viewers/xformsControl.dtd inspector.xforms/resources/locale/pt-BR/viewers/xformsControl.dtd
--- inspector/resources/locale/pt-BR/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/pt-BR/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/ru/viewers/xformsControl.dtd inspector.xforms/resources/locale/ru/viewers/xformsControl.dtd
--- inspector/resources/locale/ru/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/ru/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/sk/viewers/xformsControl.dtd inspector.xforms/resources/locale/sk/viewers/xformsControl.dtd
--- inspector/resources/locale/sk/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/sk/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/sv-SE/viewers/xformsControl.dtd inspector.xforms/resources/locale/sv-SE/viewers/xformsControl.dtd
--- inspector/resources/locale/sv-SE/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/sv-SE/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/zh-CN/viewers/xformsControl.dtd inspector.xforms/resources/locale/zh-CN/viewers/xformsControl.dtd
--- inspector/resources/locale/zh-CN/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/zh-CN/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">
diff -X patch-excludes -uprN -U8 inspector/resources/locale/zh-TW/viewers/xformsControl.dtd inspector.xforms/resources/locale/zh-TW/viewers/xformsControl.dtd
--- inspector/resources/locale/zh-TW/viewers/xformsControl.dtd	1970-01-01 01:00:00.000000000 +0100
+++ inspector.xforms/resources/locale/zh-TW/viewers/xformsControl.dtd	2006-03-12 18:53:57.000000000 +0100
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- ***** BEGIN LICENSE BLOCK *****
+#if 0
+   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
+   -
+   - The contents of this file are subject to the Mozilla Public License Version
+   - 1.1 (the "License"); you may not use this file except in compliance with
+   - the License. You may obtain a copy of the License at
+   - http://www.mozilla.org/MPL/
+   -
+   - Software distributed under the License is distributed on an "AS IS" basis,
+   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+   - for the specific language governing rights and limitations under the
+   - License.
+   -
+   - The Original Code is DOM Inspector.
+   -
+   - The Initial Developer of the Original Code is
+   - Allan Beaufour <allan@beaufour.dk>
+   - Portions created by the Initial Developer are Copyright (C) 2006
+   - the Initial Developer. All Rights Reserved.
+   -
+   - Contributor(s):
+   -
+   - Alternatively, the contents of this file may be used under the terms of
+   - either the GNU General Public License Version 2 or later (the "GPL"), or
+   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+   - in which case the provisions of the GPL or the LGPL are applicable instead
+   - of those above. If you wish to allow use of your version of this file only
+   - under the terms of either the GPL or the LGPL, and not to allow others to
+   - use your version of this file under the terms of the MPL, indicate your
+   - decision by deleting the provisions above and replace them with the notice
+   - and other provisions required by the LGPL or the GPL. If you do not delete
+   - the provisions above, a recipient may use your version of this file under
+   - the terms of any one of the MPL, the GPL or the LGPL.
+   -
+#endif
+   - ***** END LICENSE BLOCK ***** -->
+
+<!ENTITY xfNodeName.label "Node name:">
+<!ENTITY xfBoundNode.label "Bound node:">
+<!ENTITY xfType.label "Type:">
+<!ENTITY xfReadonly.label "Readonly:">
+<!ENTITY xfRequired.label "Required:">
+<!ENTITY xfRelevant.label "Relevant">
+<!ENTITY xfValid.label "Valid">

