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 bb...@apache.org on 2006/11/28 00:11:34 UTC

svn commit: r479819 - /incubator/xap/trunk/WebContent/XapConfig.js

Author: bbuffone
Date: Mon Nov 27 16:11:32 2006
New Revision: 479819

URL: http://svn.apache.org/viewvc?view=rev&rev=479819
Log:
changed the way the configuration of paths work. I added a srcPath to the 
config file.  This tells the XAP engine where the src files are located relative to the
start page.

Modified:
    incubator/xap/trunk/WebContent/XapConfig.js

Modified: incubator/xap/trunk/WebContent/XapConfig.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/XapConfig.js?view=diff&rev=479819&r1=479818&r2=479819
==============================================================================
--- incubator/xap/trunk/WebContent/XapConfig.js (original)
+++ incubator/xap/trunk/WebContent/XapConfig.js Mon Nov 27 16:11:32 2006
@@ -40,6 +40,13 @@
 	 */
 	context: "../../",
 	/**
+	 * This is the default srcPath for the application. When resources are loaded either by
+	 * using the request service or as a event handler.
+     *
+     * Accepted Values: The location of the xap src as compared to the start web page.
+	 */
+	srcPath: "../../",
+	/**
 	 * This is the default toolkit type.
      *
      * Accepted Values: any defined toolkit.
@@ -83,5 +90,5 @@
      *
      * Accepted Values: can be null, undefined, or true / false.
 	 */
-	logging: true
-}
\ No newline at end of file
+	logging: false
+}