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/06 05:56:57 UTC

svn commit: r429109 - in /incubator/xap/trunk/src/xap: taghandling/PluginRegistry.js xml/dom/XapElementRes.js xml/dom/events/ChangeRejectedExceptionRes.js xml/dom/events/DocumentOwnershipListener.js xml/xmodify/CommandDirective.js

Author: mturyn
Date: Sat Aug  5 22:56:57 2006
New Revision: 429109

URL: http://svn.apache.org/viewvc?rev=429109&view=rev
Log:
Put in .provide(<this class name>) calls.

Modified:
    incubator/xap/trunk/src/xap/taghandling/PluginRegistry.js
    incubator/xap/trunk/src/xap/xml/dom/XapElementRes.js
    incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js
    incubator/xap/trunk/src/xap/xml/dom/events/DocumentOwnershipListener.js
    incubator/xap/trunk/src/xap/xml/xmodify/CommandDirective.js

Modified: incubator/xap/trunk/src/xap/taghandling/PluginRegistry.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/taghandling/PluginRegistry.js?rev=429109&r1=429108&r2=429109&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/taghandling/PluginRegistry.js (original)
+++ incubator/xap/trunk/src/xap/taghandling/PluginRegistry.js Sat Aug  5 22:56:57 2006
@@ -34,6 +34,9 @@
  * the tag appears in. TODO
  *
  */
+ 
+Xap.provide("xap.taghandling.PluginRegistry") ; 
+ 
 xap.taghandling.PluginRegistry = function() {
 	
 	this._tagToBridgeClassName = new xap.util.Hashtable();

Modified: incubator/xap/trunk/src/xap/xml/dom/XapElementRes.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/XapElementRes.js?rev=429109&r1=429108&r2=429109&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/XapElementRes.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/XapElementRes.js Sat Aug  5 22:56:57 2006
@@ -19,6 +19,9 @@
  * @fileoverview A resource file for xap.xml.dom.XapElement.js.
  * @class A resource file for xap.xml.dom.XapElement.js.
  */
+ 
+Xap.provide("xap.xml.dom.XapElementRes") ;
+ 
 xap.xml.dom.XapElementRes = function() {
 	this.messages = new Object();
 	this.messages[xap.xml.dom.XapElement.CANNOT_SET_ID_ATTRIBUTE_WHEN_PART_OF_DOCUMENT] = "This element is part of a document.  The \"id\" attribute cannot be set on an element after it has been added to a document.";

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=429109&r1=429108&r2=429109&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js Sat Aug  5 22:56:57 2006
@@ -21,6 +21,9 @@
  * 
  * @author ikaplansky
  */
+ 
+Xap.provide("xap.xml.dom.events.ChangeRejectedExceptionRes") ;
+ 
 xap.xml.dom.events.ChangeRejectedExceptionRes = function() {
 	this.messages = new Object();
 	this.messages[xap.xml.dom.events.ChangeRejectedException.CHANGE_ATTRIBUTE_TO_NULL_MSGID] = "One of the xap.xml.dom.events.AttributeChangeListeners set the attribute value to null which is not allowed.";

Modified: incubator/xap/trunk/src/xap/xml/dom/events/DocumentOwnershipListener.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/events/DocumentOwnershipListener.js?rev=429109&r1=429108&r2=429109&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/DocumentOwnershipListener.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/DocumentOwnershipListener.js Sat Aug  5 22:56:57 2006
@@ -30,6 +30,9 @@
  * extend this object or implement that same method names.
  * 
  */
+ 
+Xap.provide("xap.xml.dom.DocumentOwnershipListener") ;
+ 
 xap.xml.dom.DocumentOwnershipListener = function() {}
 
 

Modified: incubator/xap/trunk/src/xap/xml/xmodify/CommandDirective.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/xmodify/CommandDirective.js?rev=429109&r1=429108&r2=429109&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/xmodify/CommandDirective.js (original)
+++ incubator/xap/trunk/src/xap/xml/xmodify/CommandDirective.js Sat Aug  5 22:56:57 2006
@@ -14,6 +14,8 @@
  *  limitations under the License.
  *
  */
+Xap.provide("xap.xml.xmodify.CommandDirective") ;
+ 
  
 Xap.require("google.dom");