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 20:14:36 UTC

svn commit: r429185 - /incubator/xap/trunk/src/xap/requestservice/RequestService.js

Author: mturyn
Date: Sun Aug  6 13:14:36 2006
New Revision: 429185

URL: http://svn.apache.org/viewvc?rev=429185&view=rev
Log:
Missing Xap.require(<a constructor>) statements provided---we've been getting by so far because we've loaded enough things at start-up to not need these, but that could easily change (e.g., on modularisation), and omitting require()s obscure the dependencies.

Modified:
    incubator/xap/trunk/src/xap/requestservice/RequestService.js

Modified: incubator/xap/trunk/src/xap/requestservice/RequestService.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/requestservice/RequestService.js?rev=429185&r1=429184&r2=429185&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/requestservice/RequestService.js (original)
+++ incubator/xap/trunk/src/xap/requestservice/RequestService.js Sun Aug  6 13:14:36 2006
@@ -26,6 +26,9 @@
 Xap.require("xap.xml.sax.SaxContentHandler") ;
 Xap.require("xap.xml.sax.SaxParser") ;
 
+// Auto-added---o.k.?
+Xap.require("xap.util.HttpUtils");
+
 
 //-----------------------------------------------------------------------
 // Constructors.