You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/08/08 17:36:31 UTC

svn commit: r429749 - in /incubator/xap/trunk/src/xap: bridges/google/ macro/ mco/ session/ taghandling/ xml/ xml/dom/ xml/dom/events/ xml/sax/ xml/xmodify/

Author: mturyn
Date: Tue Aug  8 10:36:30 2006
New Revision: 429749

URL: http://svn.apache.org/viewvc?rev=429749&view=rev
Log:
Removed  (commented-out) probably superfluous require()s introduced recently---generally jsdoc comment block references to objects (e.g., return values or parameters) whose constructor isn't explicitly reference in the code.

TO_DO:  
 These elisions don't break anything (yet), but a couple of regexps and some sorting determined which ones were superfluous, so when a human edits one of these files, she should check to see if it's right that.

Real omissions in the explicit dependency structure may never show up---in particular, as long as Xap.loadXap() loads things in the right order, forgetting a requires() will do nothing
Error would most likely be exposed when we modularise.

Modified:
    incubator/xap/trunk/src/xap/bridges/google/GoogleIconBridge.js
    incubator/xap/trunk/src/xap/bridges/google/GoogleMarkerBridge.js
    incubator/xap/trunk/src/xap/macro/Macro.js
    incubator/xap/trunk/src/xap/macro/MacroNamespaceHandler.js
    incubator/xap/trunk/src/xap/mco/McoNamespaceHandler.js
    incubator/xap/trunk/src/xap/session/ClientSession.js
    incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js
    incubator/xap/trunk/src/xap/taghandling/PluginDocumentHandler.js
    incubator/xap/trunk/src/xap/taghandling/PluginRegistryImpl.js
    incubator/xap/trunk/src/xap/xml/DocumentContainer.js
    incubator/xap/trunk/src/xap/xml/InvalidXmlException.js
    incubator/xap/trunk/src/xap/xml/NamespaceHandler.js
    incubator/xap/trunk/src/xap/xml/NamespaceHandlerManager.js
    incubator/xap/trunk/src/xap/xml/dom/XapElement.js
    incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedException.js
    incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js
    incubator/xap/trunk/src/xap/xml/dom/events/DomChangeEvent.js
    incubator/xap/trunk/src/xap/xml/dom/events/StructureChangeListener.js
    incubator/xap/trunk/src/xap/xml/sax/EmptyDocumentExceptionRes.js
    incubator/xap/trunk/src/xap/xml/sax/ParserExceptionRes.js
    incubator/xap/trunk/src/xap/xml/xmodify/UpdateDirective.js
    incubator/xap/trunk/src/xap/xml/xmodify/Xmodify.js
    incubator/xap/trunk/src/xap/xml/xmodify/XmodifyNamespaceHandler.js

Modified: incubator/xap/trunk/src/xap/bridges/google/GoogleIconBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/bridges/google/GoogleIconBridge.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/google/GoogleIconBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/google/GoogleIconBridge.js Tue Aug  8 10:36:30 2006
@@ -27,7 +27,7 @@
 Xap.require("xap.session.ClientEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.bridges.google.GoogleInfoWindowBridge");
+// TO_DO--make sure this is superfluous: Xap.require("xap.bridges.google.GoogleInfoWindowBridge");
 
 Xap.require("xap.bridges.google.GoogleBridge"); 
 

Modified: incubator/xap/trunk/src/xap/bridges/google/GoogleMarkerBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/bridges/google/GoogleMarkerBridge.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/google/GoogleMarkerBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/google/GoogleMarkerBridge.js Tue Aug  8 10:36:30 2006
@@ -20,7 +20,7 @@
 Xap.require("xap.session.ClientEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.bridges.google.GoogleInfoWindowBridge");
+// TO_DO--make sure this is superfluous: Xap.require("xap.bridges.google.GoogleInfoWindowBridge");
 
 Xap.require("xap.bridges.google.GoogleBridge"); 
 

Modified: incubator/xap/trunk/src/xap/macro/Macro.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/macro/Macro.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/macro/Macro.js (original)
+++ incubator/xap/trunk/src/xap/macro/Macro.js Tue Aug  8 10:36:30 2006
@@ -19,7 +19,7 @@
 Xap.require("xap.xml.sax.SaxContentHandler");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientSession");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientSession");
 
 Xap.require("xap.util.MessageFormat");
 /**

Modified: incubator/xap/trunk/src/xap/macro/MacroNamespaceHandler.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/macro/MacroNamespaceHandler.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/macro/MacroNamespaceHandler.js (original)
+++ incubator/xap/trunk/src/xap/macro/MacroNamespaceHandler.js Tue Aug  8 10:36:30 2006
@@ -25,10 +25,10 @@
 Xap.require("xap.xml.InvalidXmlException");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.DocumentContainer");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.DocumentContainer");
 
 // Auto-added---o.k.?
-Xap.require("xap.macro.Macro");
+// TO_DO--make sure this is superfluous: Xap.require("xap.macro.Macro");
 
 
 

Modified: incubator/xap/trunk/src/xap/mco/McoNamespaceHandler.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/mco/McoNamespaceHandler.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/mco/McoNamespaceHandler.js (original)
+++ incubator/xap/trunk/src/xap/mco/McoNamespaceHandler.js Tue Aug  8 10:36:30 2006
@@ -26,7 +26,7 @@
 Xap.require("xap.xml.InvalidXmlException");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.DocumentContainer");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.DocumentContainer");
 
  
 /**

Modified: incubator/xap/trunk/src/xap/session/ClientSession.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/session/ClientSession.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/session/ClientSession.js (original)
+++ incubator/xap/trunk/src/xap/session/ClientSession.js Tue Aug  8 10:36:30 2006
@@ -21,7 +21,7 @@
 Xap.require("xap.xml.sax.SaxParser") ; 
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.Document");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.NamespaceHandlerManager");
@@ -60,7 +60,7 @@
 Xap.require("xap.session.Container");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientEvent");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientEvent");
 
 // Auto-added---o.k.?
 Xap.require("xap.requestservice.RequestService");

Modified: incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js (original)
+++ incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js Tue Aug  8 10:36:30 2006
@@ -39,7 +39,7 @@
 Xap.require("xap.util.Exception");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientEvent");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientEvent");
 
 
 

Modified: incubator/xap/trunk/src/xap/taghandling/PluginDocumentHandler.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/taghandling/PluginDocumentHandler.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/taghandling/PluginDocumentHandler.js (original)
+++ incubator/xap/trunk/src/xap/taghandling/PluginDocumentHandler.js Tue Aug  8 10:36:30 2006
@@ -22,7 +22,7 @@
 Xap.require("xap.xml.dom.events.StructureChangeEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.Document");
 
 // Auto-added---o.k.?
 Xap.require("xap.util.Hashtable");
@@ -31,7 +31,7 @@
 Xap.require("xap.taghandling.AbstractTagImpl");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientSession");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientSession");
 
 // Auto-added---o.k.?
 Xap.require("xap.bridges.zimbra.DwtButtonBridge");
@@ -213,7 +213,7 @@
 Xap.require("xap.xml.dom.events.StructureChangeEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.Document");
 
 // Auto-added---o.k.?
 Xap.require("xap.util.Hashtable");
@@ -222,7 +222,7 @@
 Xap.require("xap.taghandling.AbstractTagImpl");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientSession");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientSession");
 
 // Auto-added---o.k.?
 Xap.require("xap.bridges.zimbra.DwtButtonBridge");

Modified: incubator/xap/trunk/src/xap/taghandling/PluginRegistryImpl.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/taghandling/PluginRegistryImpl.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/taghandling/PluginRegistryImpl.js (original)
+++ incubator/xap/trunk/src/xap/taghandling/PluginRegistryImpl.js Tue Aug  8 10:36:30 2006
@@ -26,7 +26,7 @@
 Xap.require("xap.util.Hashtable");
 
 // Auto-added---o.k.?
-Xap.require("xap.taghandling.PluginRegistry");
+// TO_DO--make sure this is superfluous: Xap.require("xap.taghandling.PluginRegistry");
 
 Xap.require("google.xpath");
 Xap.require("xap.xml.sax.SaxContentHandler") ;

Modified: incubator/xap/trunk/src/xap/xml/DocumentContainer.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/DocumentContainer.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/DocumentContainer.js (original)
+++ incubator/xap/trunk/src/xap/xml/DocumentContainer.js Tue Aug  8 10:36:30 2006
@@ -25,7 +25,7 @@
 Xap.require("xap.session.Container");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientSession");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientSession");
 
 
 /**

Modified: incubator/xap/trunk/src/xap/xml/InvalidXmlException.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/InvalidXmlException.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/InvalidXmlException.js (original)
+++ incubator/xap/trunk/src/xap/xml/InvalidXmlException.js Tue Aug  8 10:36:30 2006
@@ -18,13 +18,13 @@
 //Let Dojo know what to expect from this file:
 Xap.provide('xap.xml.InvalidXmlException'); 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.StructureChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.StructureChangeListener");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.AttributeChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.AttributeChangeListener");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.Document");
 
 // Auto-added---o.k.?
 Xap.require("xap.util.XapException");

Modified: incubator/xap/trunk/src/xap/xml/NamespaceHandler.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/NamespaceHandler.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/NamespaceHandler.js (original)
+++ incubator/xap/trunk/src/xap/xml/NamespaceHandler.js Tue Aug  8 10:36:30 2006
@@ -20,10 +20,10 @@
 Xap.require("xap.xml.dom.XapElement");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientSession");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientSession");
 
 // Auto-added---o.k.?
-Xap.require("xap.requestservice.RequestService");
+// TO_DO--make sure this is superfluous: Xap.require("xap.requestservice.RequestService");
 
 
 /**

Modified: incubator/xap/trunk/src/xap/xml/NamespaceHandlerManager.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/NamespaceHandlerManager.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/NamespaceHandlerManager.js (original)
+++ incubator/xap/trunk/src/xap/xml/NamespaceHandlerManager.js Tue Aug  8 10:36:30 2006
@@ -25,7 +25,7 @@
 Xap.require("xap.xml.XalNamespaceHandler");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.NamespaceHandler");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.NamespaceHandler");
 
 // Auto-added---o.k.?
 Xap.require("xap.util.Hashtable");
@@ -34,7 +34,7 @@
 Xap.require("xap.util.Exception");
 
 // Auto-added---o.k.?
-Xap.require("xap.session.ClientSession");
+// TO_DO--make sure this is superfluous: Xap.require("xap.session.ClientSession");
 
 // Auto-added---o.k.?
 Xap.require("xap.mco.McoNamespaceHandler");

Modified: incubator/xap/trunk/src/xap/xml/dom/XapElement.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/XapElement.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/XapElement.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/XapElement.js Tue Aug  8 10:36:30 2006
@@ -17,16 +17,16 @@
 
 Xap.provide( "xap.xml.dom.XapElement" ) ;
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.StructureChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.StructureChangeListener");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.StructureChangeEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.ChangeRejectedException");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.ChangeRejectedException");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.AttributeChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.AttributeChangeListener");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.AttributeChangeEvent");
@@ -187,16 +187,16 @@
 /** 
  * Creates a unique i.d., using a provider class.
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.StructureChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.StructureChangeListener");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.StructureChangeEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.ChangeRejectedException");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.ChangeRejectedException");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.AttributeChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.AttributeChangeListener");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.AttributeChangeEvent");
@@ -1060,16 +1060,16 @@
     		// generating IDs between the client and the server.  So when
     		// Xupdate clones an element it will provide the parser that
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.StructureChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.StructureChangeListener");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.StructureChangeEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.ChangeRejectedException");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.ChangeRejectedException");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.AttributeChangeListener");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.AttributeChangeListener");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.AttributeChangeEvent");

Modified: incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedException.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedException.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedException.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedException.js Tue Aug  8 10:36:30 2006
@@ -18,16 +18,16 @@
 //Let Dojo know what to expect from this file:
 Xap.provide('xap.xml.dom.events.ChangeRejectedException'); 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.StructureChangeListener");
+// TODO--make sure this is superfluous:  Xap.require("xap.xml.dom.events.StructureChangeListener");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.DomChangeEvent");
+// TODO--make sure this is superfluous:  Xap.require("xap.xml.dom.events.DomChangeEvent");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.AttributeChangeListener");
+// TODO--make sure this is superfluous:  Xap.require("xap.xml.dom.events.AttributeChangeListener");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TODO--make sure this is superfluous:  Xap.require("xap.xml.dom.Document");
 
 // Auto-added---o.k.?
 Xap.require("xap.util.XapException");

Modified: incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js Tue Aug  8 10:36:30 2006
@@ -26,7 +26,7 @@
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.StructureChangeListeners");
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.ChangeRejectedException");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.ChangeRejectedException");
 
  
 xap.xml.dom.events.ChangeRejectedExceptionRes = function() {

Modified: incubator/xap/trunk/src/xap/xml/dom/events/DomChangeEvent.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/events/DomChangeEvent.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/DomChangeEvent.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/DomChangeEvent.js Tue Aug  8 10:36:30 2006
@@ -18,13 +18,13 @@
 //Let Dojo know what to expect from this file:
 Xap.provide('xap.xml.dom.events.DomChangeEvent'); 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.events.StructureChangeEvent");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.events.StructureChangeEvent");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.XapElement");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.Document");
 
  
  /* @fileoverview xap.xml.dom.events.DomChangeEvent is the base class for {@link xap.xml.dom.events.AttributeChangeEvent}

Modified: incubator/xap/trunk/src/xap/xml/dom/events/StructureChangeListener.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/events/StructureChangeListener.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/StructureChangeListener.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/StructureChangeListener.js Tue Aug  8 10:36:30 2006
@@ -27,7 +27,7 @@
 Xap.require("xap.xml.dom.XapElement");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.dom.Document");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.dom.Document");
 
  
  /**

Modified: incubator/xap/trunk/src/xap/xml/sax/EmptyDocumentExceptionRes.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/sax/EmptyDocumentExceptionRes.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/sax/EmptyDocumentExceptionRes.js (original)
+++ incubator/xap/trunk/src/xap/xml/sax/EmptyDocumentExceptionRes.js Tue Aug  8 10:36:30 2006
@@ -19,7 +19,7 @@
 //Let Dojo know what to expect from this file:
 Xap.provide('xap.xml.sax.EmptyDocumentExceptionRes'); 
 // Auto-added---o.k.?
-Xap.require("xap.xml.sax.EmptyDocumentException");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.sax.EmptyDocumentException");
 
 
  /**

Modified: incubator/xap/trunk/src/xap/xml/sax/ParserExceptionRes.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/sax/ParserExceptionRes.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/sax/ParserExceptionRes.js (original)
+++ incubator/xap/trunk/src/xap/xml/sax/ParserExceptionRes.js Tue Aug  8 10:36:30 2006
@@ -18,7 +18,7 @@
 //Let Dojo know what to expect from this file:
 Xap.provide('xap.xml.sax.ParserExceptionRes'); 
 // Auto-added---o.k.?
-Xap.require("xap.xml.sax.ParserException");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.sax.ParserException");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.dom.events.ChangeRejectedException");

Modified: incubator/xap/trunk/src/xap/xml/xmodify/UpdateDirective.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/xmodify/UpdateDirective.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/xmodify/UpdateDirective.js (original)
+++ incubator/xap/trunk/src/xap/xml/xmodify/UpdateDirective.js Tue Aug  8 10:36:30 2006
@@ -21,7 +21,7 @@
 Xap.require("xap.xml.xmodify.XmodifyException");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.xmodify.CommandDirective");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.xmodify.CommandDirective");
 
 
 

Modified: incubator/xap/trunk/src/xap/xml/xmodify/Xmodify.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/xmodify/Xmodify.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/xmodify/Xmodify.js (original)
+++ incubator/xap/trunk/src/xap/xml/xmodify/Xmodify.js Tue Aug  8 10:36:30 2006
@@ -16,13 +16,13 @@
  */
  Xap.provide( "xap.xml.xmodify.Xmodify" ) ;
 // Auto-added---o.k.?
-Xap.require("xap.xml.DocumentContainer");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.DocumentContainer");
 
  
  /**
  * XmlUpdate provides a mechanism for performing update operations on an
 // Auto-added---o.k.?
-Xap.require("xap.xml.DocumentContainer");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.DocumentContainer");
 
  * XML document. To execute a set of updates on an XML document: <br>
  * 

Modified: incubator/xap/trunk/src/xap/xml/xmodify/XmodifyNamespaceHandler.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/xmodify/XmodifyNamespaceHandler.js?rev=429749&r1=429748&r2=429749&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/xmodify/XmodifyNamespaceHandler.js (original)
+++ incubator/xap/trunk/src/xap/xml/xmodify/XmodifyNamespaceHandler.js Tue Aug  8 10:36:30 2006
@@ -20,7 +20,7 @@
 Xap.require("xap.xml.xmodify.Xmodify");
 
 // Auto-added---o.k.?
-Xap.require("xap.xml.NamespaceHandlerManager");
+// TO_DO--make sure this is superfluous: Xap.require("xap.xml.NamespaceHandlerManager");
 
 // Auto-added---o.k.?
 Xap.require("xap.xml.NamespaceHandler");